1 /* IA-64 support for OpenVMS
2 Copyright (C) 1998-2018 Free Software Foundation, Inc.
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
25 #include "opcode/ia64.h"
29 #include "elfxx-ia64.h"
33 /* THE RULES for all the stuff the linker creates --
35 GOT Entries created in response to LTOFF or LTOFF_FPTR
36 relocations. Dynamic relocs created for dynamic
37 symbols in an application; REL relocs for locals
40 FPTR The canonical function descriptor. Created for local
41 symbols in applications. Descriptors for dynamic symbols
42 and local symbols in shared libraries are created by
43 ld.so. Thus there are no dynamic relocs against these
44 objects. The FPTR relocs for such _are_ passed through
45 to the dynamic relocation tables.
47 FULL_PLT Created for a PCREL21B relocation against a dynamic symbol.
48 Requires the creation of a PLTOFF entry. This does not
49 require any dynamic relocations.
51 PLTOFF Created by PLTOFF relocations. For local symbols, this
52 is an alternate function descriptor, and in shared libraries
53 requires two REL relocations. Note that this cannot be
54 transformed into an FPTR relocation, since it must be in
55 range of the GP. For dynamic symbols, this is a function
58 typedef struct bfd_hash_entry *(*new_hash_entry_func)
59 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
61 /* In dynamically (linker-) created sections, we generally need to keep track
62 of the place a symbol or expression got allocated to. This is done via hash
63 tables that store entries of the following type. */
65 struct elf64_ia64_dyn_sym_info
67 /* The addend for which this entry is relevant. */
72 bfd_vma pltoff_offset;
76 /* The symbol table entry, if any, that this was derived from. */
77 struct elf_link_hash_entry *h;
79 /* Used to count non-got, non-plt relocations for delayed sizing
80 of relocation sections. */
81 struct elf64_ia64_dyn_reloc_entry
83 struct elf64_ia64_dyn_reloc_entry *next;
89 /* TRUE when the section contents have been updated. */
90 unsigned got_done : 1;
91 unsigned fptr_done : 1;
92 unsigned pltoff_done : 1;
94 /* TRUE for the different kinds of linker data we want created. */
95 unsigned want_got : 1;
96 unsigned want_gotx : 1;
97 unsigned want_fptr : 1;
98 unsigned want_ltoff_fptr : 1;
99 unsigned want_plt : 1; /* A MIN_PLT entry. */
100 unsigned want_plt2 : 1; /* A FULL_PLT. */
101 unsigned want_pltoff : 1;
104 struct elf64_ia64_local_hash_entry
108 /* The number of elements in elf64_ia64_dyn_sym_info array. */
110 /* The number of sorted elements in elf64_ia64_dyn_sym_info array. */
111 unsigned int sorted_count;
112 /* The size of elf64_ia64_dyn_sym_info array. */
114 /* The array of elf64_ia64_dyn_sym_info. */
115 struct elf64_ia64_dyn_sym_info *info;
117 /* TRUE if this hash entry's addends was translated for
118 SHF_MERGE optimization. */
119 unsigned sec_merge_done : 1;
122 struct elf64_ia64_link_hash_entry
124 struct elf_link_hash_entry root;
126 /* Set if this symbol is defined in a shared library.
127 We can't use root.u.def.section->owner as the symbol is an absolute
131 /* The number of elements in elf64_ia64_dyn_sym_info array. */
133 /* The number of sorted elements in elf64_ia64_dyn_sym_info array. */
134 unsigned int sorted_count;
135 /* The size of elf64_ia64_dyn_sym_info array. */
137 /* The array of elf64_ia64_dyn_sym_info. */
138 struct elf64_ia64_dyn_sym_info *info;
141 struct elf64_ia64_link_hash_table
143 /* The main hash table. */
144 struct elf_link_hash_table root;
146 asection *fptr_sec; /* Function descriptor table (or NULL). */
147 asection *rel_fptr_sec; /* Dynamic relocation section for same. */
148 asection *pltoff_sec; /* Private descriptors for plt (or NULL). */
149 asection *fixups_sec; /* Fixups section. */
150 asection *transfer_sec; /* Transfer vector section. */
151 asection *note_sec; /* .note section. */
153 /* There are maybe R_IA64_GPREL22 relocations, including those
154 optimized from R_IA64_LTOFF22X, against non-SHF_IA_64_SHORT
155 sections. We need to record those sections so that we can choose
156 a proper GP to cover all R_IA64_GPREL22 relocations. */
157 asection *max_short_sec; /* Maximum short output section. */
158 bfd_vma max_short_offset; /* Maximum short offset. */
159 asection *min_short_sec; /* Minimum short output section. */
160 bfd_vma min_short_offset; /* Minimum short offset. */
162 htab_t loc_hash_table;
163 void *loc_hash_memory;
166 struct elf64_ia64_allocate_data
168 struct bfd_link_info *info;
172 #define elf64_ia64_hash_table(p) \
173 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
174 == IA64_ELF_DATA ? ((struct elf64_ia64_link_hash_table *) ((p)->hash)) : NULL)
176 struct elf64_ia64_vms_obj_tdata
178 struct elf_obj_tdata root;
180 /* Ident for shared library. */
183 /* Used only during link: offset in the .fixups section for this bfd. */
186 /* Max number of shared libraries. */
187 unsigned int needed_count;
190 #define elf_ia64_vms_tdata(abfd) \
191 ((struct elf64_ia64_vms_obj_tdata *)((abfd)->tdata.any))
192 #define elf_ia64_vms_ident(abfd) (elf_ia64_vms_tdata(abfd)->ident)
194 struct elf64_vms_transfer
196 unsigned char size[4];
197 unsigned char spare[4];
198 unsigned char tfradr1[8];
199 unsigned char tfradr2[8];
200 unsigned char tfradr3[8];
201 unsigned char tfradr4[8];
202 unsigned char tfradr5[8];
204 /* Local function descriptor for tfr3. */
205 unsigned char tfr3_func[8];
206 unsigned char tfr3_gp[8];
211 Elf64_External_Ehdr ehdr;
212 unsigned char vms_needed_count[8];
213 } Elf64_External_VMS_Ehdr;
215 static struct elf64_ia64_dyn_sym_info * get_dyn_sym_info
216 (struct elf64_ia64_link_hash_table *,
217 struct elf_link_hash_entry *,
218 bfd *, const Elf_Internal_Rela *, bfd_boolean);
219 static bfd_boolean elf64_ia64_dynamic_symbol_p
220 (struct elf_link_hash_entry *);
221 static bfd_boolean elf64_ia64_choose_gp
222 (bfd *, struct bfd_link_info *, bfd_boolean);
223 static void elf64_ia64_dyn_sym_traverse
224 (struct elf64_ia64_link_hash_table *,
225 bfd_boolean (*) (struct elf64_ia64_dyn_sym_info *, void *),
227 static bfd_boolean allocate_global_data_got
228 (struct elf64_ia64_dyn_sym_info *, void *);
229 static bfd_boolean allocate_global_fptr_got
230 (struct elf64_ia64_dyn_sym_info *, void *);
231 static bfd_boolean allocate_local_got
232 (struct elf64_ia64_dyn_sym_info *, void *);
233 static bfd_boolean allocate_dynrel_entries
234 (struct elf64_ia64_dyn_sym_info *, void *);
235 static asection *get_pltoff
236 (bfd *, struct elf64_ia64_link_hash_table *);
237 static asection *get_got
238 (bfd *, struct elf64_ia64_link_hash_table *);
241 /* Given a ELF reloc, return the matching HOWTO structure. */
244 elf64_ia64_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
246 Elf_Internal_Rela *elf_reloc)
248 unsigned int r_type = ELF32_R_TYPE (elf_reloc->r_info);
250 bfd_reloc->howto = ia64_elf_lookup_howto (r_type);
251 if (bfd_reloc->howto == NULL)
253 /* xgettext:c-format */
254 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
256 bfd_set_error (bfd_error_bad_value);
264 #define PLT_FULL_ENTRY_SIZE (2 * 16)
266 static const bfd_byte plt_full_entry[PLT_FULL_ENTRY_SIZE] =
268 0x0b, 0x78, 0x00, 0x02, 0x00, 0x24, /* [MMI] addl r15=0,r1;; */
269 0x00, 0x41, 0x3c, 0x70, 0x29, 0xc0, /* ld8.acq r16=[r15],8*/
270 0x01, 0x08, 0x00, 0x84, /* mov r14=r1;; */
271 0x11, 0x08, 0x00, 0x1e, 0x18, 0x10, /* [MIB] ld8 r1=[r15] */
272 0x60, 0x80, 0x04, 0x80, 0x03, 0x00, /* mov b6=r16 */
273 0x60, 0x00, 0x80, 0x00 /* br.few b6;; */
276 static const bfd_byte oor_brl[16] =
278 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MLX] nop.m 0 */
279 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* brl.sptk.few tgt;;*/
280 0x00, 0x00, 0x00, 0xc0
284 /* These functions do relaxation for IA-64 ELF. */
286 /* Rename some of the generic section flags to better document how they
288 #define skip_relax_pass_0 sec_flg0
289 #define skip_relax_pass_1 sec_flg1
292 elf64_ia64_update_short_info (asection *sec, bfd_vma offset,
293 struct elf64_ia64_link_hash_table *ia64_info)
295 /* Skip ABS and SHF_IA_64_SHORT sections. */
296 if (sec == bfd_abs_section_ptr
297 || (sec->flags & SEC_SMALL_DATA) != 0)
300 if (!ia64_info->min_short_sec)
302 ia64_info->max_short_sec = sec;
303 ia64_info->max_short_offset = offset;
304 ia64_info->min_short_sec = sec;
305 ia64_info->min_short_offset = offset;
307 else if (sec == ia64_info->max_short_sec
308 && offset > ia64_info->max_short_offset)
309 ia64_info->max_short_offset = offset;
310 else if (sec == ia64_info->min_short_sec
311 && offset < ia64_info->min_short_offset)
312 ia64_info->min_short_offset = offset;
313 else if (sec->output_section->vma
314 > ia64_info->max_short_sec->vma)
316 ia64_info->max_short_sec = sec;
317 ia64_info->max_short_offset = offset;
319 else if (sec->output_section->vma
320 < ia64_info->min_short_sec->vma)
322 ia64_info->min_short_sec = sec;
323 ia64_info->min_short_offset = offset;
327 /* Use a two passes algorithm. In the first pass, branches are relaxed
328 (which may increase the size of the section). In the second pass,
329 the other relaxations are done.
333 elf64_ia64_relax_section (bfd *abfd, asection *sec,
334 struct bfd_link_info *link_info,
339 struct one_fixup *next;
345 Elf_Internal_Shdr *symtab_hdr;
346 Elf_Internal_Rela *internal_relocs;
347 Elf_Internal_Rela *irel, *irelend;
349 Elf_Internal_Sym *isymbuf = NULL;
350 struct elf64_ia64_link_hash_table *ia64_info;
351 struct one_fixup *fixups = NULL;
352 bfd_boolean changed_contents = FALSE;
353 bfd_boolean changed_relocs = FALSE;
354 bfd_boolean skip_relax_pass_0 = TRUE;
355 bfd_boolean skip_relax_pass_1 = TRUE;
358 /* Assume we're not going to change any sizes, and we'll only need
362 if (bfd_link_relocatable (link_info))
363 (*link_info->callbacks->einfo)
364 (_("%P%F: --relax and -r may not be used together\n"));
366 /* Don't even try to relax for non-ELF outputs. */
367 if (!is_elf_hash_table (link_info->hash))
370 /* Nothing to do if there are no relocations or there is no need for
372 if ((sec->flags & SEC_RELOC) == 0
373 || sec->reloc_count == 0
374 || (link_info->relax_pass == 0 && sec->skip_relax_pass_0)
375 || (link_info->relax_pass == 1 && sec->skip_relax_pass_1))
378 ia64_info = elf64_ia64_hash_table (link_info);
379 if (ia64_info == NULL)
382 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
384 /* Load the relocations for this section. */
385 internal_relocs = (_bfd_elf_link_read_relocs
386 (abfd, sec, NULL, (Elf_Internal_Rela *) NULL,
387 link_info->keep_memory));
388 if (internal_relocs == NULL)
391 irelend = internal_relocs + sec->reloc_count;
393 /* Get the section contents. */
394 if (elf_section_data (sec)->this_hdr.contents != NULL)
395 contents = elf_section_data (sec)->this_hdr.contents;
398 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
402 for (irel = internal_relocs; irel < irelend; irel++)
404 unsigned long r_type = ELF64_R_TYPE (irel->r_info);
405 bfd_vma symaddr, reladdr, trampoff, toff, roff;
409 bfd_boolean is_branch;
410 struct elf64_ia64_dyn_sym_info *dyn_i;
414 case R_IA64_PCREL21B:
415 case R_IA64_PCREL21BI:
416 case R_IA64_PCREL21M:
417 case R_IA64_PCREL21F:
418 /* In pass 1, all br relaxations are done. We can skip it. */
419 if (link_info->relax_pass == 1)
421 skip_relax_pass_0 = FALSE;
425 case R_IA64_PCREL60B:
426 /* We can't optimize brl to br in pass 0 since br relaxations
427 will increase the code size. Defer it to pass 1. */
428 if (link_info->relax_pass == 0)
430 skip_relax_pass_1 = FALSE;
437 /* Update max_short_sec/min_short_sec. */
439 case R_IA64_LTOFF22X:
441 /* We can't relax ldx/mov in pass 0 since br relaxations will
442 increase the code size. Defer it to pass 1. */
443 if (link_info->relax_pass == 0)
445 skip_relax_pass_1 = FALSE;
455 /* Get the value of the symbol referred to by the reloc. */
456 if (ELF64_R_SYM (irel->r_info) < symtab_hdr->sh_info)
458 /* A local symbol. */
459 Elf_Internal_Sym *isym;
461 /* Read this BFD's local symbols. */
464 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
466 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
467 symtab_hdr->sh_info, 0,
473 isym = isymbuf + ELF64_R_SYM (irel->r_info);
474 if (isym->st_shndx == SHN_UNDEF)
475 continue; /* We can't do anything with undefined symbols. */
476 else if (isym->st_shndx == SHN_ABS)
477 tsec = bfd_abs_section_ptr;
478 else if (isym->st_shndx == SHN_COMMON)
479 tsec = bfd_com_section_ptr;
480 else if (isym->st_shndx == SHN_IA_64_ANSI_COMMON)
481 tsec = bfd_com_section_ptr;
483 tsec = bfd_section_from_elf_index (abfd, isym->st_shndx);
485 toff = isym->st_value;
486 dyn_i = get_dyn_sym_info (ia64_info, NULL, abfd, irel, FALSE);
491 struct elf_link_hash_entry *h;
493 indx = ELF64_R_SYM (irel->r_info) - symtab_hdr->sh_info;
494 h = elf_sym_hashes (abfd)[indx];
495 BFD_ASSERT (h != NULL);
497 while (h->root.type == bfd_link_hash_indirect
498 || h->root.type == bfd_link_hash_warning)
499 h = (struct elf_link_hash_entry *) h->root.u.i.link;
501 dyn_i = get_dyn_sym_info (ia64_info, h, abfd, irel, FALSE);
503 /* For branches to dynamic symbols, we're interested instead
504 in a branch to the PLT entry. */
505 if (is_branch && dyn_i && dyn_i->want_plt2)
507 /* Internal branches shouldn't be sent to the PLT.
508 Leave this for now and we'll give an error later. */
509 if (r_type != R_IA64_PCREL21B)
512 tsec = ia64_info->root.splt;
513 toff = dyn_i->plt2_offset;
514 BFD_ASSERT (irel->r_addend == 0);
517 /* Can't do anything else with dynamic symbols. */
518 else if (elf64_ia64_dynamic_symbol_p (h))
523 /* We can't do anything with undefined symbols. */
524 if (h->root.type == bfd_link_hash_undefined
525 || h->root.type == bfd_link_hash_undefweak)
528 tsec = h->root.u.def.section;
529 toff = h->root.u.def.value;
533 toff += irel->r_addend;
535 symaddr = tsec->output_section->vma + tsec->output_offset + toff;
537 roff = irel->r_offset;
541 bfd_signed_vma offset;
543 reladdr = (sec->output_section->vma
545 + roff) & (bfd_vma) -4;
547 /* The .plt section is aligned at 32byte and the .text section
548 is aligned at 64byte. The .text section is right after the
549 .plt section. After the first relaxation pass, linker may
550 increase the gap between the .plt and .text sections up
551 to 32byte. We assume linker will always insert 32byte
552 between the .plt and .text sections after the first
554 if (tsec == ia64_info->root.splt)
555 offset = -0x1000000 + 32;
559 /* If the branch is in range, no need to do anything. */
560 if ((bfd_signed_vma) (symaddr - reladdr) >= offset
561 && (bfd_signed_vma) (symaddr - reladdr) <= 0x0FFFFF0)
563 /* If the 60-bit branch is in 21-bit range, optimize it. */
564 if (r_type == R_IA64_PCREL60B)
566 ia64_elf_relax_brl (contents, roff);
568 irel->r_info = ELF64_R_INFO (ELF64_R_SYM (irel->r_info),
571 /* If the original relocation offset points to slot
572 1, change it to slot 2. */
573 if ((irel->r_offset & 3) == 1)
579 else if (r_type == R_IA64_PCREL60B)
581 else if (ia64_elf_relax_br (contents, roff))
583 irel->r_info = ELF64_R_INFO (ELF64_R_SYM (irel->r_info),
586 /* Make the relocation offset point to slot 1. */
587 irel->r_offset = (irel->r_offset & ~((bfd_vma) 0x3)) + 1;
591 /* We can't put a trampoline in a .init/.fini section. Issue
593 if (strcmp (sec->output_section->name, ".init") == 0
594 || strcmp (sec->output_section->name, ".fini") == 0)
597 /* xgettext:c-format */
598 (_("%pB: can't relax br at %#" PRIx64 " in section `%pA';"
599 " please use brl or indirect branch"),
600 sec->owner, (uint64_t) roff, sec);
601 bfd_set_error (bfd_error_bad_value);
605 /* If the branch and target are in the same section, you've
606 got one honking big section and we can't help you unless
607 you are branching backwards. You'll get an error message
609 if (tsec == sec && toff > roff)
612 /* Look for an existing fixup to this address. */
613 for (f = fixups; f ; f = f->next)
614 if (f->tsec == tsec && f->toff == toff)
619 /* Two alternatives: If it's a branch to a PLT entry, we can
620 make a copy of the FULL_PLT entry. Otherwise, we'll have
621 to use a `brl' insn to get where we're going. */
625 if (tsec == ia64_info->root.splt)
626 size = sizeof (plt_full_entry);
628 size = sizeof (oor_brl);
630 /* Resize the current section to make room for the new branch. */
631 trampoff = (sec->size + 15) & (bfd_vma) -16;
633 /* If trampoline is out of range, there is nothing we
635 offset = trampoff - (roff & (bfd_vma) -4);
636 if (offset < -0x1000000 || offset > 0x0FFFFF0)
639 amt = trampoff + size;
640 contents = (bfd_byte *) bfd_realloc (contents, amt);
641 if (contents == NULL)
645 if (tsec == ia64_info->root.splt)
647 memcpy (contents + trampoff, plt_full_entry, size);
649 /* Hijack the old relocation for use as the PLTOFF reloc. */
650 irel->r_info = ELF64_R_INFO (ELF64_R_SYM (irel->r_info),
652 irel->r_offset = trampoff;
656 memcpy (contents + trampoff, oor_brl, size);
657 irel->r_info = ELF64_R_INFO (ELF64_R_SYM (irel->r_info),
659 irel->r_offset = trampoff + 2;
662 /* Record the fixup so we don't do it again this section. */
663 f = (struct one_fixup *)
664 bfd_malloc ((bfd_size_type) sizeof (*f));
668 f->trampoff = trampoff;
673 /* If trampoline is out of range, there is nothing we
675 offset = f->trampoff - (roff & (bfd_vma) -4);
676 if (offset < -0x1000000 || offset > 0x0FFFFF0)
679 /* Nop out the reloc, since we're finalizing things here. */
680 irel->r_info = ELF64_R_INFO (0, R_IA64_NONE);
683 /* Fix up the existing branch to hit the trampoline. */
684 if (ia64_elf_install_value (contents + roff, offset, r_type)
688 changed_contents = TRUE;
689 changed_relocs = TRUE;
696 bfd *obfd = sec->output_section->owner;
697 gp = _bfd_get_gp_value (obfd);
700 if (!elf64_ia64_choose_gp (obfd, link_info, FALSE))
702 gp = _bfd_get_gp_value (obfd);
706 /* If the data is out of range, do nothing. */
707 if ((bfd_signed_vma) (symaddr - gp) >= 0x200000
708 ||(bfd_signed_vma) (symaddr - gp) < -0x200000)
711 if (r_type == R_IA64_GPREL22)
712 elf64_ia64_update_short_info (tsec->output_section,
713 tsec->output_offset + toff,
715 else if (r_type == R_IA64_LTOFF22X)
717 /* Can't deal yet correctly with ABS symbols. */
718 if (bfd_is_abs_section (tsec))
721 irel->r_info = ELF64_R_INFO (ELF64_R_SYM (irel->r_info),
723 changed_relocs = TRUE;
725 elf64_ia64_update_short_info (tsec->output_section,
726 tsec->output_offset + toff,
731 ia64_elf_relax_ldxmov (contents, roff);
732 irel->r_info = ELF64_R_INFO (0, R_IA64_NONE);
733 changed_contents = TRUE;
734 changed_relocs = TRUE;
739 /* ??? If we created fixups, this may push the code segment large
740 enough that the data segment moves, which will change the GP.
741 Reset the GP so that we re-calculate next round. We need to
742 do this at the _beginning_ of the next round; now will not do. */
744 /* Clean up and go home. */
747 struct one_fixup *f = fixups;
748 fixups = fixups->next;
753 && symtab_hdr->contents != (unsigned char *) isymbuf)
755 if (! link_info->keep_memory)
759 /* Cache the symbols for elf_link_input_bfd. */
760 symtab_hdr->contents = (unsigned char *) isymbuf;
765 && elf_section_data (sec)->this_hdr.contents != contents)
767 if (!changed_contents && !link_info->keep_memory)
771 /* Cache the section contents for elf_link_input_bfd. */
772 elf_section_data (sec)->this_hdr.contents = contents;
776 if (elf_section_data (sec)->relocs != internal_relocs)
779 free (internal_relocs);
781 elf_section_data (sec)->relocs = internal_relocs;
784 if (link_info->relax_pass == 0)
786 /* Pass 0 is only needed to relax br. */
787 sec->skip_relax_pass_0 = skip_relax_pass_0;
788 sec->skip_relax_pass_1 = skip_relax_pass_1;
791 *again = changed_contents || changed_relocs;
795 if (isymbuf != NULL && (unsigned char *) isymbuf != symtab_hdr->contents)
798 && elf_section_data (sec)->this_hdr.contents != contents)
800 if (internal_relocs != NULL
801 && elf_section_data (sec)->relocs != internal_relocs)
802 free (internal_relocs);
805 #undef skip_relax_pass_0
806 #undef skip_relax_pass_1
808 /* Return TRUE if NAME is an unwind table section name. */
810 static inline bfd_boolean
811 is_unwind_section_name (bfd *abfd ATTRIBUTE_UNUSED, const char *name)
813 return ((CONST_STRNEQ (name, ELF_STRING_ia64_unwind)
814 && ! CONST_STRNEQ (name, ELF_STRING_ia64_unwind_info))
815 || CONST_STRNEQ (name, ELF_STRING_ia64_unwind_once));
819 /* Convert IA-64 specific section flags to bfd internal section flags. */
821 /* ??? There is no bfd internal flag equivalent to the SHF_IA_64_NORECOV
825 elf64_ia64_section_flags (flagword *flags,
826 const Elf_Internal_Shdr *hdr)
828 if (hdr->sh_flags & SHF_IA_64_SHORT)
829 *flags |= SEC_SMALL_DATA;
834 /* Set the correct type for an IA-64 ELF section. We do this by the
835 section name, which is a hack, but ought to work. */
838 elf64_ia64_fake_sections (bfd *abfd, Elf_Internal_Shdr *hdr,
843 name = bfd_get_section_name (abfd, sec);
845 if (is_unwind_section_name (abfd, name))
847 /* We don't have the sections numbered at this point, so sh_info
848 is set later, in elf64_ia64_final_write_processing. */
849 hdr->sh_type = SHT_IA_64_UNWIND;
850 hdr->sh_flags |= SHF_LINK_ORDER;
852 else if (strcmp (name, ELF_STRING_ia64_archext) == 0)
853 hdr->sh_type = SHT_IA_64_EXT;
855 if (sec->flags & SEC_SMALL_DATA)
856 hdr->sh_flags |= SHF_IA_64_SHORT;
861 /* Hook called by the linker routine which adds symbols from an object
862 file. We use it to put .comm items in .sbss, and not .bss. */
865 elf64_ia64_add_symbol_hook (bfd *abfd,
866 struct bfd_link_info *info,
867 Elf_Internal_Sym *sym,
868 const char **namep ATTRIBUTE_UNUSED,
869 flagword *flagsp ATTRIBUTE_UNUSED,
873 if (sym->st_shndx == SHN_COMMON
874 && !bfd_link_relocatable (info)
875 && sym->st_size <= elf_gp_size (abfd))
877 /* Common symbols less than or equal to -G nn bytes are
878 automatically put into .sbss. */
880 asection *scomm = bfd_get_section_by_name (abfd, ".scommon");
884 scomm = bfd_make_section_with_flags (abfd, ".scommon",
887 | SEC_LINKER_CREATED));
893 *valp = sym->st_size;
899 /* According to the Tahoe assembler spec, all labels starting with a
903 elf64_ia64_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
906 return name[0] == '.';
909 /* Should we do dynamic things to this symbol? */
912 elf64_ia64_dynamic_symbol_p (struct elf_link_hash_entry *h)
914 return h != NULL && h->def_dynamic;
917 static struct bfd_hash_entry*
918 elf64_ia64_new_elf_hash_entry (struct bfd_hash_entry *entry,
919 struct bfd_hash_table *table,
922 struct elf64_ia64_link_hash_entry *ret;
923 ret = (struct elf64_ia64_link_hash_entry *) entry;
925 /* Allocate the structure if it has not already been allocated by a
928 ret = bfd_hash_allocate (table, sizeof (*ret));
933 /* Call the allocation method of the superclass. */
934 ret = ((struct elf64_ia64_link_hash_entry *)
935 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
940 ret->sorted_count = 0;
942 return (struct bfd_hash_entry *) ret;
946 elf64_ia64_hash_hide_symbol (struct bfd_link_info *info,
947 struct elf_link_hash_entry *xh,
948 bfd_boolean force_local)
950 struct elf64_ia64_link_hash_entry *h;
951 struct elf64_ia64_dyn_sym_info *dyn_i;
954 h = (struct elf64_ia64_link_hash_entry *)xh;
956 _bfd_elf_link_hash_hide_symbol (info, &h->root, force_local);
958 for (count = h->count, dyn_i = h->info;
962 dyn_i->want_plt2 = 0;
967 /* Compute a hash of a local hash entry. */
970 elf64_ia64_local_htab_hash (const void *ptr)
972 struct elf64_ia64_local_hash_entry *entry
973 = (struct elf64_ia64_local_hash_entry *) ptr;
975 return ELF_LOCAL_SYMBOL_HASH (entry->id, entry->r_sym);
978 /* Compare local hash entries. */
981 elf64_ia64_local_htab_eq (const void *ptr1, const void *ptr2)
983 struct elf64_ia64_local_hash_entry *entry1
984 = (struct elf64_ia64_local_hash_entry *) ptr1;
985 struct elf64_ia64_local_hash_entry *entry2
986 = (struct elf64_ia64_local_hash_entry *) ptr2;
988 return entry1->id == entry2->id && entry1->r_sym == entry2->r_sym;
991 /* Free the global elf64_ia64_dyn_sym_info array. */
994 elf64_ia64_global_dyn_info_free (void **xentry,
995 void * unused ATTRIBUTE_UNUSED)
997 struct elf64_ia64_link_hash_entry *entry
998 = (struct elf64_ia64_link_hash_entry *) xentry;
1000 if (entry->root.root.type == bfd_link_hash_warning)
1001 entry = (struct elf64_ia64_link_hash_entry *) entry->root.root.u.i.link;
1008 entry->sorted_count = 0;
1015 /* Free the local elf64_ia64_dyn_sym_info array. */
1018 elf64_ia64_local_dyn_info_free (void **slot,
1019 void * unused ATTRIBUTE_UNUSED)
1021 struct elf64_ia64_local_hash_entry *entry
1022 = (struct elf64_ia64_local_hash_entry *) *slot;
1029 entry->sorted_count = 0;
1036 /* Destroy IA-64 linker hash table. */
1039 elf64_ia64_link_hash_table_free (bfd *obfd)
1041 struct elf64_ia64_link_hash_table *ia64_info
1042 = (struct elf64_ia64_link_hash_table *) obfd->link.hash;
1043 if (ia64_info->loc_hash_table)
1045 htab_traverse (ia64_info->loc_hash_table,
1046 elf64_ia64_local_dyn_info_free, NULL);
1047 htab_delete (ia64_info->loc_hash_table);
1049 if (ia64_info->loc_hash_memory)
1050 objalloc_free ((struct objalloc *) ia64_info->loc_hash_memory);
1051 elf_link_hash_traverse (&ia64_info->root,
1052 elf64_ia64_global_dyn_info_free, NULL);
1053 _bfd_elf_link_hash_table_free (obfd);
1056 /* Create the derived linker hash table. The IA-64 ELF port uses this
1057 derived hash table to keep information specific to the IA-64 ElF
1058 linker (without using static variables). */
1060 static struct bfd_link_hash_table *
1061 elf64_ia64_hash_table_create (bfd *abfd)
1063 struct elf64_ia64_link_hash_table *ret;
1065 ret = bfd_zmalloc ((bfd_size_type) sizeof (*ret));
1069 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
1070 elf64_ia64_new_elf_hash_entry,
1071 sizeof (struct elf64_ia64_link_hash_entry),
1078 ret->loc_hash_table = htab_try_create (1024, elf64_ia64_local_htab_hash,
1079 elf64_ia64_local_htab_eq, NULL);
1080 ret->loc_hash_memory = objalloc_create ();
1081 if (!ret->loc_hash_table || !ret->loc_hash_memory)
1083 elf64_ia64_link_hash_table_free (abfd);
1086 ret->root.root.hash_table_free = elf64_ia64_link_hash_table_free;
1088 return &ret->root.root;
1091 /* Traverse both local and global hash tables. */
1093 struct elf64_ia64_dyn_sym_traverse_data
1095 bfd_boolean (*func) (struct elf64_ia64_dyn_sym_info *, void *);
1100 elf64_ia64_global_dyn_sym_thunk (struct bfd_hash_entry *xentry,
1103 struct elf64_ia64_link_hash_entry *entry
1104 = (struct elf64_ia64_link_hash_entry *) xentry;
1105 struct elf64_ia64_dyn_sym_traverse_data *data
1106 = (struct elf64_ia64_dyn_sym_traverse_data *) xdata;
1107 struct elf64_ia64_dyn_sym_info *dyn_i;
1110 if (entry->root.root.type == bfd_link_hash_warning)
1111 entry = (struct elf64_ia64_link_hash_entry *) entry->root.root.u.i.link;
1113 for (count = entry->count, dyn_i = entry->info;
1116 if (! (*data->func) (dyn_i, data->data))
1122 elf64_ia64_local_dyn_sym_thunk (void **slot, void * xdata)
1124 struct elf64_ia64_local_hash_entry *entry
1125 = (struct elf64_ia64_local_hash_entry *) *slot;
1126 struct elf64_ia64_dyn_sym_traverse_data *data
1127 = (struct elf64_ia64_dyn_sym_traverse_data *) xdata;
1128 struct elf64_ia64_dyn_sym_info *dyn_i;
1131 for (count = entry->count, dyn_i = entry->info;
1134 if (! (*data->func) (dyn_i, data->data))
1140 elf64_ia64_dyn_sym_traverse (struct elf64_ia64_link_hash_table *ia64_info,
1141 bfd_boolean (*func) (struct elf64_ia64_dyn_sym_info *, void *),
1144 struct elf64_ia64_dyn_sym_traverse_data xdata;
1149 elf_link_hash_traverse (&ia64_info->root,
1150 elf64_ia64_global_dyn_sym_thunk, &xdata);
1151 htab_traverse (ia64_info->loc_hash_table,
1152 elf64_ia64_local_dyn_sym_thunk, &xdata);
1155 #define NOTE_NAME "IPF/VMS"
1158 create_ia64_vms_notes (bfd *abfd, struct bfd_link_info *info,
1159 unsigned int time_hi, unsigned int time_lo)
1162 Elf_Internal_Note notes[NBR_NOTES];
1164 int module_name_len;
1165 unsigned char cur_time[8];
1166 Elf64_External_VMS_ORIG_DYN_Note *orig_dyn;
1167 unsigned int orig_dyn_size;
1168 unsigned int note_size;
1170 unsigned char *noteptr;
1171 unsigned char *note_contents;
1172 struct elf64_ia64_link_hash_table *ia64_info;
1174 ia64_info = elf64_ia64_hash_table (info);
1176 module_name = vms_get_module_name (bfd_get_filename (abfd), TRUE);
1177 module_name_len = strlen (module_name) + 1;
1179 bfd_putl32 (time_lo, cur_time + 0);
1180 bfd_putl32 (time_hi, cur_time + 4);
1182 /* Note 0: IMGNAM. */
1183 notes[0].type = NT_VMS_IMGNAM;
1184 notes[0].descdata = module_name;
1185 notes[0].descsz = module_name_len;
1187 /* Note 1: GSTNAM. */
1188 notes[1].type = NT_VMS_GSTNAM;
1189 notes[1].descdata = module_name;
1190 notes[1].descsz = module_name_len;
1192 /* Note 2: IMGID. */
1193 #define IMG_ID "V1.0"
1194 notes[2].type = NT_VMS_IMGID;
1195 notes[2].descdata = IMG_ID;
1196 notes[2].descsz = sizeof (IMG_ID);
1198 /* Note 3: Linktime. */
1199 notes[3].type = NT_VMS_LINKTIME;
1200 notes[3].descdata = (char *)cur_time;
1201 notes[3].descsz = sizeof (cur_time);
1203 /* Note 4: Linker id. */
1204 notes[4].type = NT_VMS_LINKID;
1205 notes[4].descdata = "GNU ld " BFD_VERSION_STRING;
1206 notes[4].descsz = strlen (notes[4].descdata) + 1;
1208 /* Note 5: Original dyn. */
1209 orig_dyn_size = (sizeof (*orig_dyn) + sizeof (IMG_ID) - 1 + 7) & ~7;
1210 orig_dyn = bfd_zalloc (abfd, orig_dyn_size);
1211 if (orig_dyn == NULL)
1213 bfd_putl32 (1, orig_dyn->major_id);
1214 bfd_putl32 (3, orig_dyn->minor_id);
1215 memcpy (orig_dyn->manipulation_date, cur_time, sizeof (cur_time));
1216 bfd_putl64 (VMS_LF_IMGSTA | VMS_LF_MAIN, orig_dyn->link_flags);
1217 bfd_putl32 (EF_IA_64_ABI64, orig_dyn->elf_flags);
1218 memcpy (orig_dyn->imgid, IMG_ID, sizeof (IMG_ID));
1219 notes[5].type = NT_VMS_ORIG_DYN;
1220 notes[5].descdata = (char *)orig_dyn;
1221 notes[5].descsz = orig_dyn_size;
1223 /* Note 3: Patchtime. */
1224 notes[6].type = NT_VMS_PATCHTIME;
1225 notes[6].descdata = (char *)cur_time;
1226 notes[6].descsz = sizeof (cur_time);
1228 /* Compute notes size. */
1230 for (i = 0; i < NBR_NOTES; i++)
1231 note_size += sizeof (Elf64_External_VMS_Note) - 1
1232 + ((sizeof (NOTE_NAME) - 1 + 7) & ~7)
1233 + ((notes[i].descsz + 7) & ~7);
1235 /* Malloc a temporary buffer large enough for most notes */
1236 note_contents = (unsigned char *) bfd_zalloc (abfd, note_size);
1237 if (note_contents == NULL)
1239 noteptr = note_contents;
1242 for (i = 0; i < NBR_NOTES; i++)
1244 Elf64_External_VMS_Note *enote = (Elf64_External_VMS_Note *) noteptr;
1246 bfd_putl64 (sizeof (NOTE_NAME) - 1, enote->namesz);
1247 bfd_putl64 (notes[i].descsz, enote->descsz);
1248 bfd_putl64 (notes[i].type, enote->type);
1250 noteptr = (unsigned char *)enote->name;
1251 memcpy (noteptr, NOTE_NAME, sizeof (NOTE_NAME) - 1);
1252 noteptr += (sizeof (NOTE_NAME) - 1 + 7) & ~7;
1253 memcpy (noteptr, notes[i].descdata, notes[i].descsz);
1254 noteptr += (notes[i].descsz + 7) & ~7;
1257 ia64_info->note_sec->contents = note_contents;
1258 ia64_info->note_sec->size = note_size;
1266 elf64_ia64_create_dynamic_sections (bfd *abfd,
1267 struct bfd_link_info *info)
1269 struct elf64_ia64_link_hash_table *ia64_info;
1272 const struct elf_backend_data *bed;
1274 ia64_info = elf64_ia64_hash_table (info);
1275 if (ia64_info == NULL)
1278 if (elf_hash_table (info)->dynamic_sections_created)
1281 abfd = elf_hash_table (info)->dynobj;
1282 bed = get_elf_backend_data (abfd);
1284 flags = bed->dynamic_sec_flags;
1286 s = bfd_make_section_anyway_with_flags (abfd, ".dynamic",
1287 flags | SEC_READONLY);
1289 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
1292 s = bfd_make_section_anyway_with_flags (abfd, ".plt", flags | SEC_READONLY);
1294 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
1296 ia64_info->root.splt = s;
1298 if (!get_got (abfd, ia64_info))
1301 if (!get_pltoff (abfd, ia64_info))
1304 s = bfd_make_section_anyway_with_flags (abfd, ".vmsdynstr",
1308 | SEC_LINKER_CREATED));
1310 || !bfd_set_section_alignment (abfd, s, 0))
1313 /* Create a fixup section. */
1314 s = bfd_make_section_anyway_with_flags (abfd, ".fixups",
1318 | SEC_LINKER_CREATED));
1320 || !bfd_set_section_alignment (abfd, s, 3))
1322 ia64_info->fixups_sec = s;
1324 /* Create the transfer fixup section. */
1325 s = bfd_make_section_anyway_with_flags (abfd, ".transfer",
1329 | SEC_LINKER_CREATED));
1331 || !bfd_set_section_alignment (abfd, s, 3))
1333 s->size = sizeof (struct elf64_vms_transfer);
1334 ia64_info->transfer_sec = s;
1336 /* Create note section. */
1337 s = bfd_make_section_anyway_with_flags (abfd, ".vms.note",
1343 || !bfd_set_section_alignment (abfd, s, 3))
1345 ia64_info->note_sec = s;
1347 elf_hash_table (info)->dynamic_sections_created = TRUE;
1351 /* Find and/or create a hash entry for local symbol. */
1352 static struct elf64_ia64_local_hash_entry *
1353 get_local_sym_hash (struct elf64_ia64_link_hash_table *ia64_info,
1354 bfd *abfd, const Elf_Internal_Rela *rel,
1357 struct elf64_ia64_local_hash_entry e, *ret;
1358 asection *sec = abfd->sections;
1359 hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id,
1360 ELF64_R_SYM (rel->r_info));
1364 e.r_sym = ELF64_R_SYM (rel->r_info);
1365 slot = htab_find_slot_with_hash (ia64_info->loc_hash_table, &e, h,
1366 create ? INSERT : NO_INSERT);
1372 return (struct elf64_ia64_local_hash_entry *) *slot;
1374 ret = (struct elf64_ia64_local_hash_entry *)
1375 objalloc_alloc ((struct objalloc *) ia64_info->loc_hash_memory,
1376 sizeof (struct elf64_ia64_local_hash_entry));
1379 memset (ret, 0, sizeof (*ret));
1381 ret->r_sym = ELF64_R_SYM (rel->r_info);
1387 /* Used to sort elf64_ia64_dyn_sym_info array. */
1390 addend_compare (const void *xp, const void *yp)
1392 const struct elf64_ia64_dyn_sym_info *x
1393 = (const struct elf64_ia64_dyn_sym_info *) xp;
1394 const struct elf64_ia64_dyn_sym_info *y
1395 = (const struct elf64_ia64_dyn_sym_info *) yp;
1397 return x->addend < y->addend ? -1 : x->addend > y->addend ? 1 : 0;
1400 /* Sort elf64_ia64_dyn_sym_info array and remove duplicates. */
1403 sort_dyn_sym_info (struct elf64_ia64_dyn_sym_info *info,
1406 bfd_vma curr, prev, got_offset;
1407 unsigned int i, kept, dupes, diff, dest, src, len;
1409 qsort (info, count, sizeof (*info), addend_compare);
1411 /* Find the first duplicate. */
1412 prev = info [0].addend;
1413 got_offset = info [0].got_offset;
1414 for (i = 1; i < count; i++)
1416 curr = info [i].addend;
1419 /* For duplicates, make sure that GOT_OFFSET is valid. */
1420 if (got_offset == (bfd_vma) -1)
1421 got_offset = info [i].got_offset;
1424 got_offset = info [i].got_offset;
1428 /* We may move a block of elements to here. */
1431 /* Remove duplicates. */
1436 /* For duplicates, make sure that the kept one has a valid
1439 if (got_offset != (bfd_vma) -1)
1440 info [kept].got_offset = got_offset;
1442 curr = info [i].addend;
1443 got_offset = info [i].got_offset;
1445 /* Move a block of elements whose first one is different from
1449 for (src = i + 1; src < count; src++)
1451 if (info [src].addend != curr)
1453 /* For duplicates, make sure that GOT_OFFSET is
1455 if (got_offset == (bfd_vma) -1)
1456 got_offset = info [src].got_offset;
1459 /* Make sure that the kept one has a valid got_offset. */
1460 if (got_offset != (bfd_vma) -1)
1461 info [kept].got_offset = got_offset;
1469 /* Find the next duplicate. SRC will be kept. */
1470 prev = info [src].addend;
1471 got_offset = info [src].got_offset;
1472 for (dupes = src + 1; dupes < count; dupes ++)
1474 curr = info [dupes].addend;
1477 /* Make sure that got_offset is valid. */
1478 if (got_offset == (bfd_vma) -1)
1479 got_offset = info [dupes].got_offset;
1481 /* For duplicates, make sure that the kept one has
1482 a valid got_offset. */
1483 if (got_offset != (bfd_vma) -1)
1484 info [dupes - 1].got_offset = got_offset;
1487 got_offset = info [dupes].got_offset;
1491 /* How much to move. */
1495 if (len == 1 && dupes < count)
1497 /* If we only move 1 element, we combine it with the next
1498 one. There must be at least a duplicate. Find the
1499 next different one. */
1500 for (diff = dupes + 1, src++; diff < count; diff++, src++)
1502 if (info [diff].addend != curr)
1504 /* Make sure that got_offset is valid. */
1505 if (got_offset == (bfd_vma) -1)
1506 got_offset = info [diff].got_offset;
1509 /* Makre sure that the last duplicated one has an valid
1511 BFD_ASSERT (curr == prev);
1512 if (got_offset != (bfd_vma) -1)
1513 info [diff - 1].got_offset = got_offset;
1517 /* Find the next duplicate. Track the current valid
1519 prev = info [diff].addend;
1520 got_offset = info [diff].got_offset;
1521 for (dupes = diff + 1; dupes < count; dupes ++)
1523 curr = info [dupes].addend;
1526 /* For duplicates, make sure that GOT_OFFSET
1528 if (got_offset == (bfd_vma) -1)
1529 got_offset = info [dupes].got_offset;
1532 got_offset = info [dupes].got_offset;
1537 len = diff - src + 1;
1542 memmove (&info [dest], &info [src], len * sizeof (*info));
1551 /* When we get here, either there is no duplicate at all or
1552 the only duplicate is the last element. */
1555 /* If the last element is a duplicate, make sure that the
1556 kept one has a valid got_offset. We also update count. */
1557 if (got_offset != (bfd_vma) -1)
1558 info [dest - 1].got_offset = got_offset;
1566 /* Find and/or create a descriptor for dynamic symbol info. This will
1567 vary based on global or local symbol, and the addend to the reloc.
1569 We don't sort when inserting. Also, we sort and eliminate
1570 duplicates if there is an unsorted section. Typically, this will
1571 only happen once, because we do all insertions before lookups. We
1572 then use bsearch to do a lookup. This also allows lookups to be
1573 fast. So we have fast insertion (O(log N) due to duplicate check),
1574 fast lookup (O(log N)) and one sort (O(N log N) expected time).
1575 Previously, all lookups were O(N) because of the use of the linked
1576 list and also all insertions were O(N) because of the check for
1577 duplicates. There are some complications here because the array
1578 size grows occasionally, which may add an O(N) factor, but this
1579 should be rare. Also, we free the excess array allocation, which
1580 requires a copy which is O(N), but this only happens once. */
1582 static struct elf64_ia64_dyn_sym_info *
1583 get_dyn_sym_info (struct elf64_ia64_link_hash_table *ia64_info,
1584 struct elf_link_hash_entry *h, bfd *abfd,
1585 const Elf_Internal_Rela *rel, bfd_boolean create)
1587 struct elf64_ia64_dyn_sym_info **info_p, *info, *dyn_i, key;
1588 unsigned int *count_p, *sorted_count_p, *size_p;
1589 unsigned int count, sorted_count, size;
1590 bfd_vma addend = rel ? rel->r_addend : 0;
1595 struct elf64_ia64_link_hash_entry *global_h;
1597 global_h = (struct elf64_ia64_link_hash_entry *) h;
1598 info_p = &global_h->info;
1599 count_p = &global_h->count;
1600 sorted_count_p = &global_h->sorted_count;
1601 size_p = &global_h->size;
1605 struct elf64_ia64_local_hash_entry *loc_h;
1607 loc_h = get_local_sym_hash (ia64_info, abfd, rel, create);
1610 BFD_ASSERT (!create);
1614 info_p = &loc_h->info;
1615 count_p = &loc_h->count;
1616 sorted_count_p = &loc_h->sorted_count;
1617 size_p = &loc_h->size;
1621 sorted_count = *sorted_count_p;
1626 /* When we create the array, we don't check for duplicates,
1627 except in the previously sorted section if one exists, and
1628 against the last inserted entry. This allows insertions to
1634 /* Try bsearch first on the sorted section. */
1635 key.addend = addend;
1636 dyn_i = bsearch (&key, info, sorted_count,
1637 sizeof (*info), addend_compare);
1645 /* Do a quick check for the last inserted entry. */
1646 dyn_i = info + count - 1;
1647 if (dyn_i->addend == addend)
1655 /* It is the very first element. We create the array of size
1658 amt = size * sizeof (*info);
1659 info = bfd_malloc (amt);
1661 else if (size <= count)
1663 /* We double the array size every time when we reach the
1666 amt = size * sizeof (*info);
1667 info = bfd_realloc (info, amt);
1678 /* Append the new one to the array. */
1679 dyn_i = info + count;
1680 memset (dyn_i, 0, sizeof (*dyn_i));
1681 dyn_i->got_offset = (bfd_vma) -1;
1682 dyn_i->addend = addend;
1684 /* We increment count only since the new ones are unsorted and
1685 may have duplicate. */
1690 /* It is a lookup without insertion. Sort array if part of the
1691 array isn't sorted. */
1692 if (count != sorted_count)
1694 count = sort_dyn_sym_info (info, count);
1696 *sorted_count_p = count;
1699 /* Free unused memory. */
1702 amt = count * sizeof (*info);
1703 info = bfd_malloc (amt);
1706 memcpy (info, *info_p, amt);
1713 key.addend = addend;
1714 dyn_i = bsearch (&key, info, count,
1715 sizeof (*info), addend_compare);
1722 get_got (bfd *abfd, struct elf64_ia64_link_hash_table *ia64_info)
1727 got = ia64_info->root.sgot;
1732 dynobj = ia64_info->root.dynobj;
1734 ia64_info->root.dynobj = dynobj = abfd;
1736 /* The .got section is always aligned at 8 bytes. */
1737 flags = get_elf_backend_data (dynobj)->dynamic_sec_flags;
1738 got = bfd_make_section_anyway_with_flags (dynobj, ".got",
1739 flags | SEC_SMALL_DATA);
1741 || !bfd_set_section_alignment (dynobj, got, 3))
1743 ia64_info->root.sgot = got;
1749 /* Create function descriptor section (.opd). This section is called .opd
1750 because it contains "official procedure descriptors". The "official"
1751 refers to the fact that these descriptors are used when taking the address
1752 of a procedure, thus ensuring a unique address for each procedure. */
1755 get_fptr (bfd *abfd, struct bfd_link_info *info,
1756 struct elf64_ia64_link_hash_table *ia64_info)
1761 fptr = ia64_info->fptr_sec;
1764 dynobj = ia64_info->root.dynobj;
1766 ia64_info->root.dynobj = dynobj = abfd;
1768 fptr = bfd_make_section_anyway_with_flags (dynobj, ".opd",
1773 | (bfd_link_pie (info) ? 0
1775 | SEC_LINKER_CREATED));
1777 || !bfd_set_section_alignment (dynobj, fptr, 4))
1783 ia64_info->fptr_sec = fptr;
1785 if (bfd_link_pie (info))
1788 fptr_rel = bfd_make_section_anyway_with_flags (dynobj, ".rela.opd",
1789 (SEC_ALLOC | SEC_LOAD
1792 | SEC_LINKER_CREATED
1794 if (fptr_rel == NULL
1795 || !bfd_set_section_alignment (dynobj, fptr_rel, 3))
1801 ia64_info->rel_fptr_sec = fptr_rel;
1809 get_pltoff (bfd *abfd, struct elf64_ia64_link_hash_table *ia64_info)
1814 pltoff = ia64_info->pltoff_sec;
1817 dynobj = ia64_info->root.dynobj;
1819 ia64_info->root.dynobj = dynobj = abfd;
1821 pltoff = bfd_make_section_anyway_with_flags (dynobj,
1822 ELF_STRING_ia64_pltoff,
1828 | SEC_LINKER_CREATED));
1830 || !bfd_set_section_alignment (dynobj, pltoff, 4))
1836 ia64_info->pltoff_sec = pltoff;
1843 get_reloc_section (bfd *abfd,
1844 struct elf64_ia64_link_hash_table *ia64_info,
1845 asection *sec, bfd_boolean create)
1847 const char *srel_name;
1851 srel_name = (bfd_elf_string_from_elf_section
1852 (abfd, elf_elfheader(abfd)->e_shstrndx,
1853 _bfd_elf_single_rel_hdr (sec)->sh_name));
1854 if (srel_name == NULL)
1857 BFD_ASSERT ((CONST_STRNEQ (srel_name, ".rela")
1858 && strcmp (bfd_get_section_name (abfd, sec),
1860 || (CONST_STRNEQ (srel_name, ".rel")
1861 && strcmp (bfd_get_section_name (abfd, sec),
1862 srel_name+4) == 0));
1864 dynobj = ia64_info->root.dynobj;
1866 ia64_info->root.dynobj = dynobj = abfd;
1868 srel = bfd_get_linker_section (dynobj, srel_name);
1869 if (srel == NULL && create)
1871 srel = bfd_make_section_anyway_with_flags (dynobj, srel_name,
1872 (SEC_ALLOC | SEC_LOAD
1875 | SEC_LINKER_CREATED
1878 || !bfd_set_section_alignment (dynobj, srel, 3))
1886 count_dyn_reloc (bfd *abfd, struct elf64_ia64_dyn_sym_info *dyn_i,
1887 asection *srel, int type)
1889 struct elf64_ia64_dyn_reloc_entry *rent;
1891 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
1892 if (rent->srel == srel && rent->type == type)
1897 rent = ((struct elf64_ia64_dyn_reloc_entry *)
1898 bfd_alloc (abfd, (bfd_size_type) sizeof (*rent)));
1902 rent->next = dyn_i->reloc_entries;
1906 dyn_i->reloc_entries = rent;
1914 elf64_ia64_check_relocs (bfd *abfd, struct bfd_link_info *info,
1916 const Elf_Internal_Rela *relocs)
1918 struct elf64_ia64_link_hash_table *ia64_info;
1919 const Elf_Internal_Rela *relend;
1920 Elf_Internal_Shdr *symtab_hdr;
1921 const Elf_Internal_Rela *rel;
1922 asection *got, *fptr, *srel, *pltoff;
1931 NEED_LTOFF_FPTR = 128
1934 struct elf_link_hash_entry *h;
1935 unsigned long r_symndx;
1936 bfd_boolean maybe_dynamic;
1938 if (bfd_link_relocatable (info))
1941 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1942 ia64_info = elf64_ia64_hash_table (info);
1943 if (ia64_info == NULL)
1946 got = fptr = srel = pltoff = NULL;
1948 relend = relocs + sec->reloc_count;
1950 /* We scan relocations first to create dynamic relocation arrays. We
1951 modified get_dyn_sym_info to allow fast insertion and support fast
1952 lookup in the next loop. */
1953 for (rel = relocs; rel < relend; ++rel)
1955 r_symndx = ELF64_R_SYM (rel->r_info);
1956 if (r_symndx >= symtab_hdr->sh_info)
1958 long indx = r_symndx - symtab_hdr->sh_info;
1959 h = elf_sym_hashes (abfd)[indx];
1960 while (h->root.type == bfd_link_hash_indirect
1961 || h->root.type == bfd_link_hash_warning)
1962 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1967 /* We can only get preliminary data on whether a symbol is
1968 locally or externally defined, as not all of the input files
1969 have yet been processed. Do something with what we know, as
1970 this may help reduce memory usage and processing time later. */
1971 maybe_dynamic = (h && ((!bfd_link_executable (info)
1972 && (!SYMBOLIC_BIND (info, h)
1973 || info->unresolved_syms_in_shared_libs == RM_IGNORE))
1975 || h->root.type == bfd_link_hash_defweak));
1978 switch (ELF64_R_TYPE (rel->r_info))
1980 case R_IA64_TPREL64MSB:
1981 case R_IA64_TPREL64LSB:
1982 case R_IA64_LTOFF_TPREL22:
1983 case R_IA64_DTPREL32MSB:
1984 case R_IA64_DTPREL32LSB:
1985 case R_IA64_DTPREL64MSB:
1986 case R_IA64_DTPREL64LSB:
1987 case R_IA64_LTOFF_DTPREL22:
1988 case R_IA64_DTPMOD64MSB:
1989 case R_IA64_DTPMOD64LSB:
1990 case R_IA64_LTOFF_DTPMOD22:
1994 case R_IA64_IPLTMSB:
1995 case R_IA64_IPLTLSB:
1998 case R_IA64_LTOFF_FPTR22:
1999 case R_IA64_LTOFF_FPTR64I:
2000 case R_IA64_LTOFF_FPTR32MSB:
2001 case R_IA64_LTOFF_FPTR32LSB:
2002 case R_IA64_LTOFF_FPTR64MSB:
2003 case R_IA64_LTOFF_FPTR64LSB:
2004 need_entry = NEED_FPTR | NEED_GOT | NEED_LTOFF_FPTR;
2007 case R_IA64_FPTR64I:
2008 case R_IA64_FPTR32MSB:
2009 case R_IA64_FPTR32LSB:
2010 case R_IA64_FPTR64MSB:
2011 case R_IA64_FPTR64LSB:
2012 if (bfd_link_pic (info) || h)
2013 need_entry = NEED_FPTR | NEED_DYNREL;
2015 need_entry = NEED_FPTR;
2018 case R_IA64_LTOFF22:
2019 case R_IA64_LTOFF64I:
2020 need_entry = NEED_GOT;
2023 case R_IA64_LTOFF22X:
2024 need_entry = NEED_GOTX;
2027 case R_IA64_PLTOFF22:
2028 case R_IA64_PLTOFF64I:
2029 case R_IA64_PLTOFF64MSB:
2030 case R_IA64_PLTOFF64LSB:
2031 need_entry = NEED_PLTOFF;
2035 need_entry |= NEED_MIN_PLT;
2039 (*info->callbacks->warning)
2040 (info, _("@pltoff reloc against local symbol"), 0,
2041 abfd, 0, (bfd_vma) 0);
2045 case R_IA64_PCREL21B:
2046 case R_IA64_PCREL60B:
2047 /* Depending on where this symbol is defined, we may or may not
2048 need a full plt entry. Only skip if we know we'll not need
2049 the entry -- static or symbolic, and the symbol definition
2050 has already been seen. */
2051 if (maybe_dynamic && rel->r_addend == 0)
2052 need_entry = NEED_FULL_PLT;
2058 case R_IA64_DIR32MSB:
2059 case R_IA64_DIR32LSB:
2060 case R_IA64_DIR64MSB:
2061 case R_IA64_DIR64LSB:
2062 /* Shared objects will always need at least a REL relocation. */
2063 if (bfd_link_pic (info) || maybe_dynamic)
2064 need_entry = NEED_DYNREL;
2067 case R_IA64_PCREL22:
2068 case R_IA64_PCREL64I:
2069 case R_IA64_PCREL32MSB:
2070 case R_IA64_PCREL32LSB:
2071 case R_IA64_PCREL64MSB:
2072 case R_IA64_PCREL64LSB:
2074 need_entry = NEED_DYNREL;
2081 if ((need_entry & NEED_FPTR) != 0
2084 (*info->callbacks->warning)
2085 (info, _("non-zero addend in @fptr reloc"), 0,
2086 abfd, 0, (bfd_vma) 0);
2089 if (get_dyn_sym_info (ia64_info, h, abfd, rel, TRUE) == NULL)
2093 /* Now, we only do lookup without insertion, which is very fast
2094 with the modified get_dyn_sym_info. */
2095 for (rel = relocs; rel < relend; ++rel)
2097 struct elf64_ia64_dyn_sym_info *dyn_i;
2098 int dynrel_type = R_IA64_NONE;
2100 r_symndx = ELF64_R_SYM (rel->r_info);
2101 if (r_symndx >= symtab_hdr->sh_info)
2103 /* We're dealing with a global symbol -- find its hash entry
2104 and mark it as being referenced. */
2105 long indx = r_symndx - symtab_hdr->sh_info;
2106 h = elf_sym_hashes (abfd)[indx];
2107 while (h->root.type == bfd_link_hash_indirect
2108 || h->root.type == bfd_link_hash_warning)
2109 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2111 /* PR15323, ref flags aren't set for references in the same
2118 /* We can only get preliminary data on whether a symbol is
2119 locally or externally defined, as not all of the input files
2120 have yet been processed. Do something with what we know, as
2121 this may help reduce memory usage and processing time later. */
2122 maybe_dynamic = (h && ((!bfd_link_executable (info)
2123 && (!SYMBOLIC_BIND (info, h)
2124 || info->unresolved_syms_in_shared_libs == RM_IGNORE))
2126 || h->root.type == bfd_link_hash_defweak));
2129 switch (ELF64_R_TYPE (rel->r_info))
2131 case R_IA64_TPREL64MSB:
2132 case R_IA64_TPREL64LSB:
2133 case R_IA64_LTOFF_TPREL22:
2134 case R_IA64_DTPREL32MSB:
2135 case R_IA64_DTPREL32LSB:
2136 case R_IA64_DTPREL64MSB:
2137 case R_IA64_DTPREL64LSB:
2138 case R_IA64_LTOFF_DTPREL22:
2139 case R_IA64_DTPMOD64MSB:
2140 case R_IA64_DTPMOD64LSB:
2141 case R_IA64_LTOFF_DTPMOD22:
2145 case R_IA64_LTOFF_FPTR22:
2146 case R_IA64_LTOFF_FPTR64I:
2147 case R_IA64_LTOFF_FPTR32MSB:
2148 case R_IA64_LTOFF_FPTR32LSB:
2149 case R_IA64_LTOFF_FPTR64MSB:
2150 case R_IA64_LTOFF_FPTR64LSB:
2151 need_entry = NEED_FPTR | NEED_GOT | NEED_LTOFF_FPTR;
2154 case R_IA64_FPTR64I:
2155 case R_IA64_FPTR32MSB:
2156 case R_IA64_FPTR32LSB:
2157 case R_IA64_FPTR64MSB:
2158 case R_IA64_FPTR64LSB:
2159 if (bfd_link_pic (info) || h)
2160 need_entry = NEED_FPTR | NEED_DYNREL;
2162 need_entry = NEED_FPTR;
2163 dynrel_type = R_IA64_FPTR64LSB;
2166 case R_IA64_LTOFF22:
2167 case R_IA64_LTOFF64I:
2168 need_entry = NEED_GOT;
2171 case R_IA64_LTOFF22X:
2172 need_entry = NEED_GOTX;
2175 case R_IA64_PLTOFF22:
2176 case R_IA64_PLTOFF64I:
2177 case R_IA64_PLTOFF64MSB:
2178 case R_IA64_PLTOFF64LSB:
2179 need_entry = NEED_PLTOFF;
2183 need_entry |= NEED_MIN_PLT;
2187 case R_IA64_PCREL21B:
2188 case R_IA64_PCREL60B:
2189 /* Depending on where this symbol is defined, we may or may not
2190 need a full plt entry. Only skip if we know we'll not need
2191 the entry -- static or symbolic, and the symbol definition
2192 has already been seen. */
2193 if (maybe_dynamic && rel->r_addend == 0)
2194 need_entry = NEED_FULL_PLT;
2200 case R_IA64_DIR32MSB:
2201 case R_IA64_DIR32LSB:
2202 case R_IA64_DIR64MSB:
2203 case R_IA64_DIR64LSB:
2204 /* Shared objects will always need at least a REL relocation. */
2205 if (bfd_link_pic (info) || maybe_dynamic)
2206 need_entry = NEED_DYNREL;
2207 dynrel_type = R_IA64_DIR64LSB;
2210 case R_IA64_IPLTMSB:
2211 case R_IA64_IPLTLSB:
2214 case R_IA64_PCREL22:
2215 case R_IA64_PCREL64I:
2216 case R_IA64_PCREL32MSB:
2217 case R_IA64_PCREL32LSB:
2218 case R_IA64_PCREL64MSB:
2219 case R_IA64_PCREL64LSB:
2221 need_entry = NEED_DYNREL;
2222 dynrel_type = R_IA64_PCREL64LSB;
2229 dyn_i = get_dyn_sym_info (ia64_info, h, abfd, rel, FALSE);
2231 /* Record whether or not this is a local symbol. */
2234 /* Create what's needed. */
2235 if (need_entry & (NEED_GOT | NEED_GOTX))
2239 got = get_got (abfd, ia64_info);
2243 if (need_entry & NEED_GOT)
2244 dyn_i->want_got = 1;
2245 if (need_entry & NEED_GOTX)
2246 dyn_i->want_gotx = 1;
2248 if (need_entry & NEED_FPTR)
2250 /* Create the .opd section. */
2253 fptr = get_fptr (abfd, info, ia64_info);
2257 dyn_i->want_fptr = 1;
2259 if (need_entry & NEED_LTOFF_FPTR)
2260 dyn_i->want_ltoff_fptr = 1;
2261 if (need_entry & (NEED_MIN_PLT | NEED_FULL_PLT))
2263 if (!ia64_info->root.dynobj)
2264 ia64_info->root.dynobj = abfd;
2266 dyn_i->want_plt = 1;
2268 if (need_entry & NEED_FULL_PLT)
2269 dyn_i->want_plt2 = 1;
2270 if (need_entry & NEED_PLTOFF)
2272 /* This is needed here, in case @pltoff is used in a non-shared
2276 pltoff = get_pltoff (abfd, ia64_info);
2281 dyn_i->want_pltoff = 1;
2283 if ((need_entry & NEED_DYNREL) && (sec->flags & SEC_ALLOC))
2287 srel = get_reloc_section (abfd, ia64_info, sec, TRUE);
2291 if (!count_dyn_reloc (abfd, dyn_i, srel, dynrel_type))
2299 /* For cleanliness, and potentially faster dynamic loading, allocate
2300 external GOT entries first. */
2303 allocate_global_data_got (struct elf64_ia64_dyn_sym_info *dyn_i,
2306 struct elf64_ia64_allocate_data *x = (struct elf64_ia64_allocate_data *)data;
2308 if ((dyn_i->want_got || dyn_i->want_gotx)
2309 && ! dyn_i->want_fptr
2310 && elf64_ia64_dynamic_symbol_p (dyn_i->h))
2312 /* GOT entry with FPTR is done by allocate_global_fptr_got. */
2313 dyn_i->got_offset = x->ofs;
2319 /* Next, allocate all the GOT entries used by LTOFF_FPTR relocs. */
2322 allocate_global_fptr_got (struct elf64_ia64_dyn_sym_info *dyn_i,
2325 struct elf64_ia64_allocate_data *x = (struct elf64_ia64_allocate_data *)data;
2329 && elf64_ia64_dynamic_symbol_p (dyn_i->h))
2331 dyn_i->got_offset = x->ofs;
2337 /* Lastly, allocate all the GOT entries for local data. */
2340 allocate_local_got (struct elf64_ia64_dyn_sym_info *dyn_i,
2343 struct elf64_ia64_allocate_data *x = (struct elf64_ia64_allocate_data *) data;
2345 if ((dyn_i->want_got || dyn_i->want_gotx)
2346 && !elf64_ia64_dynamic_symbol_p (dyn_i->h))
2348 dyn_i->got_offset = x->ofs;
2354 /* Allocate function descriptors. We can do these for every function
2355 in a main executable that is not exported. */
2358 allocate_fptr (struct elf64_ia64_dyn_sym_info *dyn_i, void * data)
2360 struct elf64_ia64_allocate_data *x = (struct elf64_ia64_allocate_data *) data;
2362 if (dyn_i->want_fptr)
2364 struct elf_link_hash_entry *h = dyn_i->h;
2367 while (h->root.type == bfd_link_hash_indirect
2368 || h->root.type == bfd_link_hash_warning)
2369 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2371 if (h == NULL || !h->def_dynamic)
2373 /* A non dynamic symbol. */
2374 dyn_i->fptr_offset = x->ofs;
2378 dyn_i->want_fptr = 0;
2383 /* Allocate all the minimal PLT entries. */
2386 allocate_plt_entries (struct elf64_ia64_dyn_sym_info *dyn_i,
2387 void * data ATTRIBUTE_UNUSED)
2389 if (dyn_i->want_plt)
2391 struct elf_link_hash_entry *h = dyn_i->h;
2394 while (h->root.type == bfd_link_hash_indirect
2395 || h->root.type == bfd_link_hash_warning)
2396 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2398 /* ??? Versioned symbols seem to lose NEEDS_PLT. */
2399 if (elf64_ia64_dynamic_symbol_p (h))
2401 dyn_i->want_pltoff = 1;
2405 dyn_i->want_plt = 0;
2406 dyn_i->want_plt2 = 0;
2412 /* Allocate all the full PLT entries. */
2415 allocate_plt2_entries (struct elf64_ia64_dyn_sym_info *dyn_i,
2418 struct elf64_ia64_allocate_data *x = (struct elf64_ia64_allocate_data *)data;
2420 if (dyn_i->want_plt2)
2422 struct elf_link_hash_entry *h = dyn_i->h;
2423 bfd_size_type ofs = x->ofs;
2425 dyn_i->plt2_offset = ofs;
2426 x->ofs = ofs + PLT_FULL_ENTRY_SIZE;
2428 while (h->root.type == bfd_link_hash_indirect
2429 || h->root.type == bfd_link_hash_warning)
2430 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2431 dyn_i->h->plt.offset = ofs;
2436 /* Allocate all the PLTOFF entries requested by relocations and
2437 plt entries. We can't share space with allocated FPTR entries,
2438 because the latter are not necessarily addressable by the GP.
2439 ??? Relaxation might be able to determine that they are. */
2442 allocate_pltoff_entries (struct elf64_ia64_dyn_sym_info *dyn_i,
2445 struct elf64_ia64_allocate_data *x = (struct elf64_ia64_allocate_data *)data;
2447 if (dyn_i->want_pltoff)
2449 dyn_i->pltoff_offset = x->ofs;
2455 /* Allocate dynamic relocations for those symbols that turned out
2459 allocate_dynrel_entries (struct elf64_ia64_dyn_sym_info *dyn_i,
2462 struct elf64_ia64_allocate_data *x = (struct elf64_ia64_allocate_data *)data;
2463 struct elf64_ia64_link_hash_table *ia64_info;
2464 struct elf64_ia64_dyn_reloc_entry *rent;
2465 bfd_boolean dynamic_symbol, shared, resolved_zero;
2466 struct elf64_ia64_link_hash_entry *h_ia64;
2468 ia64_info = elf64_ia64_hash_table (x->info);
2469 if (ia64_info == NULL)
2472 /* Note that this can't be used in relation to FPTR relocs below. */
2473 dynamic_symbol = elf64_ia64_dynamic_symbol_p (dyn_i->h);
2475 shared = bfd_link_pic (x->info);
2476 resolved_zero = (dyn_i->h
2477 && ELF_ST_VISIBILITY (dyn_i->h->other)
2478 && dyn_i->h->root.type == bfd_link_hash_undefweak);
2480 /* Take care of the GOT and PLT relocations. */
2483 && (dynamic_symbol || shared)
2484 && (dyn_i->want_got || dyn_i->want_gotx))
2485 || (dyn_i->want_ltoff_fptr
2487 && dyn_i->h->def_dynamic))
2490 if (dyn_i->h != NULL && dyn_i->h->def_dynamic)
2492 h_ia64 = (struct elf64_ia64_link_hash_entry *) dyn_i->h;
2493 elf_ia64_vms_tdata (h_ia64->shl)->fixups_off +=
2494 sizeof (Elf64_External_VMS_IMAGE_FIXUP);
2495 ia64_info->fixups_sec->size +=
2496 sizeof (Elf64_External_VMS_IMAGE_FIXUP);
2500 if (ia64_info->rel_fptr_sec && dyn_i->want_fptr)
2502 /* VMS: only image reloc. */
2503 if (dyn_i->h == NULL || dyn_i->h->root.type != bfd_link_hash_undefweak)
2504 ia64_info->rel_fptr_sec->size += sizeof (Elf64_External_Rela);
2507 if (!resolved_zero && dyn_i->want_pltoff)
2510 if (dyn_i->h != NULL && dyn_i->h->def_dynamic)
2512 h_ia64 = (struct elf64_ia64_link_hash_entry *) dyn_i->h;
2513 elf_ia64_vms_tdata (h_ia64->shl)->fixups_off +=
2514 sizeof (Elf64_External_VMS_IMAGE_FIXUP);
2515 ia64_info->fixups_sec->size +=
2516 sizeof (Elf64_External_VMS_IMAGE_FIXUP);
2520 /* Take care of the normal data relocations. */
2522 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
2524 int count = rent->count;
2528 case R_IA64_FPTR32LSB:
2529 case R_IA64_FPTR64LSB:
2530 /* Allocate one iff !want_fptr and not PIE, which by this point
2531 will be true only if we're actually allocating one statically
2532 in the main executable. Position independent executables
2533 need a relative reloc. */
2534 if (dyn_i->want_fptr && !bfd_link_pie (x->info))
2537 case R_IA64_PCREL32LSB:
2538 case R_IA64_PCREL64LSB:
2539 if (!dynamic_symbol)
2542 case R_IA64_DIR32LSB:
2543 case R_IA64_DIR64LSB:
2544 if (!dynamic_symbol && !shared)
2547 case R_IA64_IPLTLSB:
2548 if (!dynamic_symbol && !shared)
2550 /* Use two REL relocations for IPLT relocations
2551 against local symbols. */
2552 if (!dynamic_symbol)
2555 case R_IA64_DTPREL32LSB:
2556 case R_IA64_TPREL64LSB:
2557 case R_IA64_DTPREL64LSB:
2558 case R_IA64_DTPMOD64LSB:
2565 if (!dynamic_symbol)
2568 h_ia64 = (struct elf64_ia64_link_hash_entry *) dyn_i->h;
2569 elf_ia64_vms_tdata (h_ia64->shl)->fixups_off +=
2570 sizeof (Elf64_External_VMS_IMAGE_FIXUP);
2571 ia64_info->fixups_sec->size +=
2572 sizeof (Elf64_External_VMS_IMAGE_FIXUP);
2579 elf64_ia64_adjust_dynamic_symbol (struct bfd_link_info *info ATTRIBUTE_UNUSED,
2580 struct elf_link_hash_entry *h)
2582 /* ??? Undefined symbols with PLT entries should be re-defined
2583 to be the PLT entry. */
2585 /* If this is a weak symbol, and there is a real definition, the
2586 processor independent code will have arranged for us to see the
2587 real definition first, and we can just use the same value. */
2588 if (h->is_weakalias)
2590 struct elf_link_hash_entry *def = weakdef (h);
2591 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
2592 h->root.u.def.section = def->root.u.def.section;
2593 h->root.u.def.value = def->root.u.def.value;
2597 /* If this is a reference to a symbol defined by a dynamic object which
2598 is not a function, we might allocate the symbol in our .dynbss section
2599 and allocate a COPY dynamic relocation.
2601 But IA-64 code is canonically PIC, so as a rule we can avoid this sort
2608 elf64_ia64_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
2609 struct bfd_link_info *info)
2611 struct elf64_ia64_allocate_data data;
2612 struct elf64_ia64_link_hash_table *ia64_info;
2615 struct elf_link_hash_table *hash_table;
2617 hash_table = elf_hash_table (info);
2618 dynobj = hash_table->dynobj;
2619 ia64_info = elf64_ia64_hash_table (info);
2620 if (ia64_info == NULL)
2622 BFD_ASSERT(dynobj != NULL);
2625 /* Allocate the GOT entries. */
2627 if (ia64_info->root.sgot)
2630 elf64_ia64_dyn_sym_traverse (ia64_info, allocate_global_data_got, &data);
2631 elf64_ia64_dyn_sym_traverse (ia64_info, allocate_global_fptr_got, &data);
2632 elf64_ia64_dyn_sym_traverse (ia64_info, allocate_local_got, &data);
2633 ia64_info->root.sgot->size = data.ofs;
2636 /* Allocate the FPTR entries. */
2638 if (ia64_info->fptr_sec)
2641 elf64_ia64_dyn_sym_traverse (ia64_info, allocate_fptr, &data);
2642 ia64_info->fptr_sec->size = data.ofs;
2645 /* Now that we've seen all of the input files, we can decide which
2646 symbols need plt entries. Allocate the minimal PLT entries first.
2647 We do this even though dynamic_sections_created may be FALSE, because
2648 this has the side-effect of clearing want_plt and want_plt2. */
2651 elf64_ia64_dyn_sym_traverse (ia64_info, allocate_plt_entries, &data);
2653 /* Align the pointer for the plt2 entries. */
2654 data.ofs = (data.ofs + 31) & (bfd_vma) -32;
2656 elf64_ia64_dyn_sym_traverse (ia64_info, allocate_plt2_entries, &data);
2657 if (data.ofs != 0 || ia64_info->root.dynamic_sections_created)
2659 /* FIXME: we always reserve the memory for dynamic linker even if
2660 there are no PLT entries since dynamic linker may assume the
2661 reserved memory always exists. */
2663 BFD_ASSERT (ia64_info->root.dynamic_sections_created);
2665 ia64_info->root.splt->size = data.ofs;
2668 /* Allocate the PLTOFF entries. */
2670 if (ia64_info->pltoff_sec)
2673 elf64_ia64_dyn_sym_traverse (ia64_info, allocate_pltoff_entries, &data);
2674 ia64_info->pltoff_sec->size = data.ofs;
2677 if (ia64_info->root.dynamic_sections_created)
2679 /* Allocate space for the dynamic relocations that turned out to be
2681 elf64_ia64_dyn_sym_traverse (ia64_info, allocate_dynrel_entries, &data);
2684 /* We have now determined the sizes of the various dynamic sections.
2685 Allocate memory for them. */
2686 for (sec = dynobj->sections; sec != NULL; sec = sec->next)
2690 if (!(sec->flags & SEC_LINKER_CREATED))
2693 /* If we don't need this section, strip it from the output file.
2694 There were several sections primarily related to dynamic
2695 linking that must be create before the linker maps input
2696 sections to output sections. The linker does that before
2697 bfd_elf_size_dynamic_sections is called, and it is that
2698 function which decides whether anything needs to go into
2701 strip = (sec->size == 0);
2703 if (sec == ia64_info->root.sgot)
2705 else if (sec == ia64_info->root.srelgot)
2708 ia64_info->root.srelgot = NULL;
2710 /* We use the reloc_count field as a counter if we need to
2711 copy relocs into the output file. */
2712 sec->reloc_count = 0;
2714 else if (sec == ia64_info->fptr_sec)
2717 ia64_info->fptr_sec = NULL;
2719 else if (sec == ia64_info->rel_fptr_sec)
2722 ia64_info->rel_fptr_sec = NULL;
2724 /* We use the reloc_count field as a counter if we need to
2725 copy relocs into the output file. */
2726 sec->reloc_count = 0;
2728 else if (sec == ia64_info->root.splt)
2731 ia64_info->root.splt = NULL;
2733 else if (sec == ia64_info->pltoff_sec)
2736 ia64_info->pltoff_sec = NULL;
2738 else if (sec == ia64_info->fixups_sec)
2741 ia64_info->fixups_sec = NULL;
2743 else if (sec == ia64_info->transfer_sec)
2751 /* It's OK to base decisions on the section name, because none
2752 of the dynobj section names depend upon the input files. */
2753 name = bfd_get_section_name (dynobj, sec);
2755 if (strcmp (name, ".got.plt") == 0)
2757 else if (CONST_STRNEQ (name, ".rel"))
2761 /* We use the reloc_count field as a counter if we need to
2762 copy relocs into the output file. */
2763 sec->reloc_count = 0;
2771 sec->flags |= SEC_EXCLUDE;
2774 /* Allocate memory for the section contents. */
2775 sec->contents = (bfd_byte *) bfd_zalloc (dynobj, sec->size);
2776 if (sec->contents == NULL && sec->size != 0)
2781 if (elf_hash_table (info)->dynamic_sections_created)
2785 asection *dynstrsec;
2786 Elf_Internal_Dyn dyn;
2787 const struct elf_backend_data *bed;
2788 unsigned int shl_num = 0;
2789 bfd_vma fixups_off = 0;
2791 unsigned int time_hi, time_lo;
2793 /* The .dynamic section must exist and be empty. */
2794 dynsec = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
2795 BFD_ASSERT (dynsec != NULL);
2796 BFD_ASSERT (dynsec->size == 0);
2798 dynstrsec = bfd_get_linker_section (hash_table->dynobj, ".vmsdynstr");
2799 BFD_ASSERT (dynstrsec != NULL);
2800 BFD_ASSERT (dynstrsec->size == 0);
2801 dynstrsec->size = 1; /* Initial blank. */
2803 /* Ident + link time. */
2804 vms_get_time (&time_hi, &time_lo);
2806 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_IDENT, 0))
2808 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_LINKTIME,
2809 (((bfd_uint64_t)time_hi) << 32)
2814 strdyn_off = dynsec->size;
2815 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_STRTAB_OFFSET, 0))
2817 if (!_bfd_elf_add_dynamic_entry (info, DT_STRSZ, 0))
2821 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_PLTGOT_SEG, 0))
2823 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_PLTGOT_OFFSET, 0))
2827 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_FPMODE, 0x9800000))
2829 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_LNKFLAGS,
2830 VMS_LF_IMGSTA | VMS_LF_MAIN))
2833 /* Add entries for shared libraries. */
2834 for (abfd = info->input_bfds; abfd; abfd = abfd->link.next)
2838 bfd_size_type strindex;
2839 bfd_byte *newcontents;
2840 bfd_vma fixups_shl_off;
2842 if (!(abfd->flags & DYNAMIC))
2844 BFD_ASSERT (abfd->xvec == output_bfd->xvec);
2846 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_NEEDED_IDENT,
2847 elf_ia64_vms_ident (abfd)))
2850 soname = vms_get_module_name (abfd->filename, TRUE);
2853 strindex = dynstrsec->size;
2854 soname_len = strlen (soname) + 1;
2855 newcontents = (bfd_byte *) bfd_realloc (dynstrsec->contents,
2856 strindex + soname_len);
2857 if (newcontents == NULL)
2859 memcpy (newcontents + strindex, soname, soname_len);
2860 dynstrsec->size += soname_len;
2861 dynstrsec->contents = newcontents;
2863 if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
2866 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_FIXUP_NEEDED,
2871 /* The fixups_off was in fact containing the size of the fixup
2872 section. Remap into the offset. */
2873 fixups_shl_off = elf_ia64_vms_tdata (abfd)->fixups_off;
2874 elf_ia64_vms_tdata (abfd)->fixups_off = fixups_off;
2876 if (!_bfd_elf_add_dynamic_entry
2877 (info, DT_IA_64_VMS_FIXUP_RELA_CNT,
2878 fixups_shl_off / sizeof (Elf64_External_VMS_IMAGE_FIXUP)))
2880 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_FIXUP_RELA_OFF,
2883 fixups_off += fixups_shl_off;
2887 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_UNWINDSZ, 0))
2889 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_UNWIND_CODSEG, 0))
2891 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_UNWIND_INFOSEG, 0))
2893 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_UNWIND_OFFSET, 0))
2895 if (!_bfd_elf_add_dynamic_entry (info, DT_IA_64_VMS_UNWIND_SEG, 0))
2898 if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0xdead))
2901 /* Fix the strtab entries. */
2902 bed = get_elf_backend_data (hash_table->dynobj);
2904 if (dynstrsec->size > 1)
2905 dynstrsec->contents[0] = 0;
2907 dynstrsec->size = 0;
2909 /* Note: one 'spare' (ie DT_NULL) entry is added by
2910 bfd_elf_size_dynsym_hash_dynstr. */
2911 dyn.d_tag = DT_IA_64_VMS_STRTAB_OFFSET;
2912 dyn.d_un.d_val = dynsec->size /* + sizeof (Elf64_External_Dyn) */;
2913 bed->s->swap_dyn_out (hash_table->dynobj, &dyn,
2914 dynsec->contents + strdyn_off);
2916 dyn.d_tag = DT_STRSZ;
2917 dyn.d_un.d_val = dynstrsec->size;
2918 bed->s->swap_dyn_out (hash_table->dynobj, &dyn,
2919 dynsec->contents + strdyn_off + bed->s->sizeof_dyn);
2921 elf_ia64_vms_tdata (output_bfd)->needed_count = shl_num;
2924 if (!create_ia64_vms_notes (output_bfd, info, time_hi, time_lo))
2928 /* ??? Perhaps force __gp local. */
2934 elf64_ia64_install_fixup (bfd *output_bfd,
2935 struct elf64_ia64_link_hash_table *ia64_info,
2936 struct elf_link_hash_entry *h,
2937 unsigned int type, asection *sec, bfd_vma offset,
2941 Elf64_External_VMS_IMAGE_FIXUP *fixup;
2942 struct elf64_ia64_link_hash_entry *h_ia64;
2944 Elf_Internal_Phdr *phdr;
2946 if (h == NULL || !h->def_dynamic)
2949 h_ia64 = (struct elf64_ia64_link_hash_entry *) h;
2950 fixoff = elf_ia64_vms_tdata (h_ia64->shl)->fixups_off;
2951 elf_ia64_vms_tdata (h_ia64->shl)->fixups_off +=
2952 sizeof (Elf64_External_VMS_IMAGE_FIXUP);
2953 relsec = ia64_info->fixups_sec;
2955 fixup = (Elf64_External_VMS_IMAGE_FIXUP *)(relsec->contents + fixoff);
2956 offset += sec->output_section->vma + sec->output_offset;
2958 /* FIXME: this is slow. We should cache the last one used, or create a
2960 phdr = _bfd_elf_find_segment_containing_section
2961 (output_bfd, sec->output_section);
2962 BFD_ASSERT (phdr != NULL);
2964 bfd_putl64 (offset - phdr->p_vaddr, fixup->fixup_offset);
2965 bfd_putl32 (type, fixup->type);
2966 bfd_putl32 (phdr - elf_tdata (output_bfd)->phdr, fixup->fixup_seg);
2967 bfd_putl64 (addend, fixup->addend);
2968 bfd_putl32 (h->root.u.def.value, fixup->symvec_index);
2969 bfd_putl32 (2, fixup->data_type);
2972 /* Store an entry for target address TARGET_ADDR in the linkage table
2973 and return the gp-relative address of the linkage table entry. */
2976 set_got_entry (bfd *abfd, struct bfd_link_info *info,
2977 struct elf64_ia64_dyn_sym_info *dyn_i,
2978 bfd_vma addend, bfd_vma value, unsigned int dyn_r_type)
2980 struct elf64_ia64_link_hash_table *ia64_info;
2985 ia64_info = elf64_ia64_hash_table (info);
2986 if (ia64_info == NULL)
2989 got_sec = ia64_info->root.sgot;
2993 case R_IA64_TPREL64LSB:
2994 case R_IA64_DTPMOD64LSB:
2995 case R_IA64_DTPREL32LSB:
2996 case R_IA64_DTPREL64LSB:
3000 done = dyn_i->got_done;
3001 dyn_i->got_done = TRUE;
3002 got_offset = dyn_i->got_offset;
3006 BFD_ASSERT ((got_offset & 7) == 0);
3010 /* Store the target address in the linkage table entry. */
3011 bfd_put_64 (abfd, value, got_sec->contents + got_offset);
3013 /* Install a dynamic relocation if needed. */
3014 if (((bfd_link_pic (info)
3016 || ELF_ST_VISIBILITY (dyn_i->h->other) == STV_DEFAULT
3017 || dyn_i->h->root.type != bfd_link_hash_undefweak))
3018 || elf64_ia64_dynamic_symbol_p (dyn_i->h))
3019 && (!dyn_i->want_ltoff_fptr
3020 || !bfd_link_pie (info)
3022 || dyn_i->h->root.type != bfd_link_hash_undefweak))
3024 if (!dyn_i->h || !dyn_i->h->def_dynamic)
3026 dyn_r_type = R_IA64_REL64LSB;
3030 /* VMS: install a FIX32 or FIX64. */
3033 case R_IA64_DIR32LSB:
3034 case R_IA64_FPTR32LSB:
3035 dyn_r_type = R_IA64_VMS_FIX32;
3037 case R_IA64_DIR64LSB:
3038 case R_IA64_FPTR64LSB:
3039 dyn_r_type = R_IA64_VMS_FIX64;
3045 elf64_ia64_install_fixup
3046 (info->output_bfd, ia64_info, dyn_i->h,
3047 dyn_r_type, got_sec, got_offset, addend);
3051 /* Return the address of the linkage table entry. */
3052 value = (got_sec->output_section->vma
3053 + got_sec->output_offset
3059 /* Fill in a function descriptor consisting of the function's code
3060 address and its global pointer. Return the descriptor's address. */
3063 set_fptr_entry (bfd *abfd, struct bfd_link_info *info,
3064 struct elf64_ia64_dyn_sym_info *dyn_i,
3067 struct elf64_ia64_link_hash_table *ia64_info;
3070 ia64_info = elf64_ia64_hash_table (info);
3071 if (ia64_info == NULL)
3074 fptr_sec = ia64_info->fptr_sec;
3076 if (!dyn_i->fptr_done)
3078 dyn_i->fptr_done = 1;
3080 /* Fill in the function descriptor. */
3081 bfd_put_64 (abfd, value, fptr_sec->contents + dyn_i->fptr_offset);
3082 bfd_put_64 (abfd, _bfd_get_gp_value (abfd),
3083 fptr_sec->contents + dyn_i->fptr_offset + 8);
3086 /* Return the descriptor's address. */
3087 value = (fptr_sec->output_section->vma
3088 + fptr_sec->output_offset
3089 + dyn_i->fptr_offset);
3094 /* Fill in a PLTOFF entry consisting of the function's code address
3095 and its global pointer. Return the descriptor's address. */
3098 set_pltoff_entry (bfd *abfd, struct bfd_link_info *info,
3099 struct elf64_ia64_dyn_sym_info *dyn_i,
3100 bfd_vma value, bfd_boolean is_plt)
3102 struct elf64_ia64_link_hash_table *ia64_info;
3103 asection *pltoff_sec;
3105 ia64_info = elf64_ia64_hash_table (info);
3106 if (ia64_info == NULL)
3109 pltoff_sec = ia64_info->pltoff_sec;
3111 /* Don't do anything if this symbol uses a real PLT entry. In
3112 that case, we'll fill this in during finish_dynamic_symbol. */
3113 if ((! dyn_i->want_plt || is_plt)
3114 && !dyn_i->pltoff_done)
3116 bfd_vma gp = _bfd_get_gp_value (abfd);
3118 /* Fill in the function descriptor. */
3119 bfd_put_64 (abfd, value, pltoff_sec->contents + dyn_i->pltoff_offset);
3120 bfd_put_64 (abfd, gp, pltoff_sec->contents + dyn_i->pltoff_offset + 8);
3122 /* Install dynamic relocations if needed. */
3124 && bfd_link_pic (info)
3126 || ELF_ST_VISIBILITY (dyn_i->h->other) == STV_DEFAULT
3127 || dyn_i->h->root.type != bfd_link_hash_undefweak))
3133 dyn_i->pltoff_done = 1;
3136 /* Return the descriptor's address. */
3137 value = (pltoff_sec->output_section->vma
3138 + pltoff_sec->output_offset
3139 + dyn_i->pltoff_offset);
3144 /* Called through qsort to sort the .IA_64.unwind section during a
3145 non-relocatable link. Set elf64_ia64_unwind_entry_compare_bfd
3146 to the output bfd so we can do proper endianness frobbing. */
3148 static bfd *elf64_ia64_unwind_entry_compare_bfd;
3151 elf64_ia64_unwind_entry_compare (const void * a, const void * b)
3155 av = bfd_get_64 (elf64_ia64_unwind_entry_compare_bfd, a);
3156 bv = bfd_get_64 (elf64_ia64_unwind_entry_compare_bfd, b);
3158 return (av < bv ? -1 : av > bv ? 1 : 0);
3161 /* Make sure we've got ourselves a nice fat __gp value. */
3163 elf64_ia64_choose_gp (bfd *abfd, struct bfd_link_info *info, bfd_boolean final)
3165 bfd_vma min_vma = (bfd_vma) -1, max_vma = 0;
3166 bfd_vma min_short_vma = min_vma, max_short_vma = 0;
3167 struct elf_link_hash_entry *gp;
3170 struct elf64_ia64_link_hash_table *ia64_info;
3172 ia64_info = elf64_ia64_hash_table (info);
3173 if (ia64_info == NULL)
3176 /* Find the min and max vma of all sections marked short. Also collect
3177 min and max vma of any type, for use in selecting a nice gp. */
3178 for (os = abfd->sections; os ; os = os->next)
3182 if ((os->flags & SEC_ALLOC) == 0)
3186 /* When this function is called from elfNN_ia64_final_link
3187 the correct value to use is os->size. When called from
3188 elfNN_ia64_relax_section we are in the middle of section
3189 sizing; some sections will already have os->size set, others
3190 will have os->size zero and os->rawsize the previous size. */
3191 hi = os->vma + (!final && os->rawsize ? os->rawsize : os->size);
3199 if (os->flags & SEC_SMALL_DATA)
3201 if (min_short_vma > lo)
3203 if (max_short_vma < hi)
3208 if (ia64_info->min_short_sec)
3211 > (ia64_info->min_short_sec->vma
3212 + ia64_info->min_short_offset))
3213 min_short_vma = (ia64_info->min_short_sec->vma
3214 + ia64_info->min_short_offset);
3216 < (ia64_info->max_short_sec->vma
3217 + ia64_info->max_short_offset))
3218 max_short_vma = (ia64_info->max_short_sec->vma
3219 + ia64_info->max_short_offset);
3222 /* See if the user wants to force a value. */
3223 gp = elf_link_hash_lookup (elf_hash_table (info), "__gp", FALSE,
3227 && (gp->root.type == bfd_link_hash_defined
3228 || gp->root.type == bfd_link_hash_defweak))
3230 asection *gp_sec = gp->root.u.def.section;
3231 gp_val = (gp->root.u.def.value
3232 + gp_sec->output_section->vma
3233 + gp_sec->output_offset);
3237 /* Pick a sensible value. */
3239 if (ia64_info->min_short_sec)
3241 bfd_vma short_range = max_short_vma - min_short_vma;
3243 /* If min_short_sec is set, pick one in the middle bewteen
3244 min_short_vma and max_short_vma. */
3245 if (short_range >= 0x400000)
3247 gp_val = min_short_vma + short_range / 2;
3251 asection *got_sec = ia64_info->root.sgot;
3253 /* Start with just the address of the .got. */
3255 gp_val = got_sec->output_section->vma;
3256 else if (max_short_vma != 0)
3257 gp_val = min_short_vma;
3258 else if (max_vma - min_vma < 0x200000)
3261 gp_val = max_vma - 0x200000 + 8;
3264 /* If it is possible to address the entire image, but we
3265 don't with the choice above, adjust. */
3266 if (max_vma - min_vma < 0x400000
3267 && (max_vma - gp_val >= 0x200000
3268 || gp_val - min_vma > 0x200000))
3269 gp_val = min_vma + 0x200000;
3270 else if (max_short_vma != 0)
3272 /* If we don't cover all the short data, adjust. */
3273 if (max_short_vma - gp_val >= 0x200000)
3274 gp_val = min_short_vma + 0x200000;
3276 /* If we're addressing stuff past the end, adjust back. */
3277 if (gp_val > max_vma)
3278 gp_val = max_vma - 0x200000 + 8;
3282 /* Validate whether all SHF_IA_64_SHORT sections are within
3283 range of the chosen GP. */
3285 if (max_short_vma != 0)
3287 if (max_short_vma - min_short_vma >= 0x400000)
3291 /* xgettext:c-format */
3292 (_("%pB: short data segment overflowed (%#" PRIx64 " >= 0x400000)"),
3293 abfd, (uint64_t) (max_short_vma - min_short_vma));
3296 else if ((gp_val > min_short_vma
3297 && gp_val - min_short_vma > 0x200000)
3298 || (gp_val < max_short_vma
3299 && max_short_vma - gp_val >= 0x200000))
3302 (_("%pB: __gp does not cover short data segment"), abfd);
3307 _bfd_set_gp_value (abfd, gp_val);
3313 elf64_ia64_final_link (bfd *abfd, struct bfd_link_info *info)
3315 struct elf64_ia64_link_hash_table *ia64_info;
3316 asection *unwind_output_sec;
3318 ia64_info = elf64_ia64_hash_table (info);
3319 if (ia64_info == NULL)
3322 /* Make sure we've got ourselves a nice fat __gp value. */
3323 if (!bfd_link_relocatable (info))
3326 struct elf_link_hash_entry *gp;
3328 /* We assume after gp is set, section size will only decrease. We
3329 need to adjust gp for it. */
3330 _bfd_set_gp_value (abfd, 0);
3331 if (! elf64_ia64_choose_gp (abfd, info, TRUE))
3333 gp_val = _bfd_get_gp_value (abfd);
3335 gp = elf_link_hash_lookup (elf_hash_table (info), "__gp", FALSE,
3339 gp->root.type = bfd_link_hash_defined;
3340 gp->root.u.def.value = gp_val;
3341 gp->root.u.def.section = bfd_abs_section_ptr;
3345 /* If we're producing a final executable, we need to sort the contents
3346 of the .IA_64.unwind section. Force this section to be relocated
3347 into memory rather than written immediately to the output file. */
3348 unwind_output_sec = NULL;
3349 if (!bfd_link_relocatable (info))
3351 asection *s = bfd_get_section_by_name (abfd, ELF_STRING_ia64_unwind);
3354 unwind_output_sec = s->output_section;
3355 unwind_output_sec->contents
3356 = bfd_malloc (unwind_output_sec->size);
3357 if (unwind_output_sec->contents == NULL)
3362 /* Invoke the regular ELF backend linker to do all the work. */
3363 if (!bfd_elf_final_link (abfd, info))
3366 if (unwind_output_sec)
3368 elf64_ia64_unwind_entry_compare_bfd = abfd;
3369 qsort (unwind_output_sec->contents,
3370 (size_t) (unwind_output_sec->size / 24),
3372 elf64_ia64_unwind_entry_compare);
3374 if (! bfd_set_section_contents (abfd, unwind_output_sec,
3375 unwind_output_sec->contents, (bfd_vma) 0,
3376 unwind_output_sec->size))
3384 elf64_ia64_relocate_section (bfd *output_bfd,
3385 struct bfd_link_info *info,
3387 asection *input_section,
3389 Elf_Internal_Rela *relocs,
3390 Elf_Internal_Sym *local_syms,
3391 asection **local_sections)
3393 struct elf64_ia64_link_hash_table *ia64_info;
3394 Elf_Internal_Shdr *symtab_hdr;
3395 Elf_Internal_Rela *rel;
3396 Elf_Internal_Rela *relend;
3397 bfd_boolean ret_val = TRUE; /* for non-fatal errors */
3400 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
3401 ia64_info = elf64_ia64_hash_table (info);
3402 if (ia64_info == NULL)
3405 /* Infect various flags from the input section to the output section. */
3406 if (bfd_link_relocatable (info))
3410 flags = elf_section_data(input_section)->this_hdr.sh_flags;
3411 flags &= SHF_IA_64_NORECOV;
3413 elf_section_data(input_section->output_section)
3414 ->this_hdr.sh_flags |= flags;
3417 gp_val = _bfd_get_gp_value (output_bfd);
3420 relend = relocs + input_section->reloc_count;
3421 for (; rel < relend; ++rel)
3423 struct elf_link_hash_entry *h;
3424 struct elf64_ia64_dyn_sym_info *dyn_i;
3425 bfd_reloc_status_type r;
3426 reloc_howto_type *howto;
3427 unsigned long r_symndx;
3428 Elf_Internal_Sym *sym;
3429 unsigned int r_type;
3433 bfd_boolean dynamic_symbol_p;
3434 bfd_boolean undef_weak_ref;
3436 r_type = ELF64_R_TYPE (rel->r_info);
3437 if (r_type > R_IA64_MAX_RELOC_CODE)
3439 /* xgettext:c-format */
3440 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
3441 input_bfd, (int) r_type);
3442 bfd_set_error (bfd_error_bad_value);
3447 howto = ia64_elf_lookup_howto (r_type);
3453 r_symndx = ELF64_R_SYM (rel->r_info);
3457 undef_weak_ref = FALSE;
3459 if (r_symndx < symtab_hdr->sh_info)
3461 /* Reloc against local symbol. */
3463 sym = local_syms + r_symndx;
3464 sym_sec = local_sections[r_symndx];
3466 value = _bfd_elf_rela_local_sym (output_bfd, sym, &msec, rel);
3467 if (!bfd_link_relocatable (info)
3468 && (sym_sec->flags & SEC_MERGE) != 0
3469 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
3470 && sym_sec->sec_info_type == SEC_INFO_TYPE_MERGE)
3472 struct elf64_ia64_local_hash_entry *loc_h;
3474 loc_h = get_local_sym_hash (ia64_info, input_bfd, rel, FALSE);
3475 if (loc_h && ! loc_h->sec_merge_done)
3477 struct elf64_ia64_dyn_sym_info *dynent;
3480 for (count = loc_h->count, dynent = loc_h->info;
3486 _bfd_merged_section_offset (output_bfd, &msec,
3487 elf_section_data (msec)->
3491 dynent->addend -= sym->st_value;
3492 dynent->addend += msec->output_section->vma
3493 + msec->output_offset
3494 - sym_sec->output_section->vma
3495 - sym_sec->output_offset;
3498 /* We may have introduced duplicated entries. We need
3499 to remove them properly. */
3500 count = sort_dyn_sym_info (loc_h->info, loc_h->count);
3501 if (count != loc_h->count)
3503 loc_h->count = count;
3504 loc_h->sorted_count = count;
3507 loc_h->sec_merge_done = 1;
3513 bfd_boolean unresolved_reloc;
3514 bfd_boolean warned, ignored;
3515 struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (input_bfd);
3517 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
3518 r_symndx, symtab_hdr, sym_hashes,
3520 unresolved_reloc, warned, ignored);
3522 if (h->root.type == bfd_link_hash_undefweak)
3523 undef_weak_ref = TRUE;
3528 /* For relocs against symbols from removed linkonce sections,
3529 or sections discarded by a linker script, we just want the
3530 section contents zeroed. Avoid any special processing. */
3531 if (sym_sec != NULL && discarded_section (sym_sec))
3532 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
3533 rel, 1, relend, howto, 0, contents);
3535 if (bfd_link_relocatable (info))
3538 hit_addr = contents + rel->r_offset;
3539 value += rel->r_addend;
3540 dynamic_symbol_p = elf64_ia64_dynamic_symbol_p (h);
3551 case R_IA64_DIR32MSB:
3552 case R_IA64_DIR32LSB:
3553 case R_IA64_DIR64MSB:
3554 case R_IA64_DIR64LSB:
3555 /* Install a dynamic relocation for this reloc. */
3556 if ((dynamic_symbol_p || bfd_link_pic (info))
3558 && (input_section->flags & SEC_ALLOC) != 0)
3560 unsigned int dyn_r_type;
3568 /* ??? People shouldn't be doing non-pic code in
3569 shared libraries nor dynamic executables. */
3571 /* xgettext:c-format */
3572 (_("%pB: non-pic code with imm relocation against"
3573 " dynamic symbol `%s'"),
3575 h ? h->root.root.string
3576 : bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
3585 /* If we don't need dynamic symbol lookup, find a
3586 matching RELATIVE relocation. */
3587 dyn_r_type = r_type;
3588 if (dynamic_symbol_p)
3590 addend = rel->r_addend;
3598 /* VMS: install a FIX64. */
3601 case R_IA64_DIR32LSB:
3602 dyn_r_type = R_IA64_VMS_FIX32;
3604 case R_IA64_DIR64LSB:
3605 dyn_r_type = R_IA64_VMS_FIX64;
3611 elf64_ia64_install_fixup
3612 (output_bfd, ia64_info, h,
3613 dyn_r_type, input_section, rel->r_offset, addend);
3619 case R_IA64_LTV32MSB:
3620 case R_IA64_LTV32LSB:
3621 case R_IA64_LTV64MSB:
3622 case R_IA64_LTV64LSB:
3623 r = ia64_elf_install_value (hit_addr, value, r_type);
3626 case R_IA64_GPREL22:
3627 case R_IA64_GPREL64I:
3628 case R_IA64_GPREL32MSB:
3629 case R_IA64_GPREL32LSB:
3630 case R_IA64_GPREL64MSB:
3631 case R_IA64_GPREL64LSB:
3632 if (dynamic_symbol_p)
3635 /* xgettext:c-format */
3636 (_("%pB: @gprel relocation against dynamic symbol %s"),
3638 h ? h->root.root.string
3639 : bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
3645 r = ia64_elf_install_value (hit_addr, value, r_type);
3648 case R_IA64_LTOFF22:
3649 case R_IA64_LTOFF22X:
3650 case R_IA64_LTOFF64I:
3651 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, FALSE);
3652 value = set_got_entry (input_bfd, info, dyn_i,
3653 rel->r_addend, value, R_IA64_DIR64LSB);
3655 r = ia64_elf_install_value (hit_addr, value, r_type);
3658 case R_IA64_PLTOFF22:
3659 case R_IA64_PLTOFF64I:
3660 case R_IA64_PLTOFF64MSB:
3661 case R_IA64_PLTOFF64LSB:
3662 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, FALSE);
3663 value = set_pltoff_entry (output_bfd, info, dyn_i, value, FALSE);
3665 r = ia64_elf_install_value (hit_addr, value, r_type);
3668 case R_IA64_FPTR64I:
3669 case R_IA64_FPTR32MSB:
3670 case R_IA64_FPTR32LSB:
3671 case R_IA64_FPTR64MSB:
3672 case R_IA64_FPTR64LSB:
3673 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, FALSE);
3674 if (dyn_i->want_fptr)
3676 if (!undef_weak_ref)
3677 value = set_fptr_entry (output_bfd, info, dyn_i, value);
3679 if (!dyn_i->want_fptr || bfd_link_pie (info))
3681 /* Otherwise, we expect the dynamic linker to create
3684 if (dyn_i->want_fptr)
3686 if (r_type == R_IA64_FPTR64I)
3688 /* We can't represent this without a dynamic symbol.
3689 Adjust the relocation to be against an output
3690 section symbol, which are always present in the
3691 dynamic symbol table. */
3692 /* ??? People shouldn't be doing non-pic code in
3693 shared libraries. Hork. */
3695 (_("%pB: linking non-pic code in a position independent executable"),
3707 elf64_ia64_install_fixup
3708 (output_bfd, ia64_info, h, R_IA64_VMS_FIXFD,
3709 input_section, rel->r_offset, 0);
3714 r = ia64_elf_install_value (hit_addr, value, r_type);
3717 case R_IA64_LTOFF_FPTR22:
3718 case R_IA64_LTOFF_FPTR64I:
3719 case R_IA64_LTOFF_FPTR32MSB:
3720 case R_IA64_LTOFF_FPTR32LSB:
3721 case R_IA64_LTOFF_FPTR64MSB:
3722 case R_IA64_LTOFF_FPTR64LSB:
3723 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, FALSE);
3724 if (dyn_i->want_fptr)
3726 BFD_ASSERT (h == NULL || !h->def_dynamic);
3727 if (!undef_weak_ref)
3728 value = set_fptr_entry (output_bfd, info, dyn_i, value);
3733 value = set_got_entry (output_bfd, info, dyn_i,
3734 rel->r_addend, value, R_IA64_FPTR64LSB);
3736 r = ia64_elf_install_value (hit_addr, value, r_type);
3739 case R_IA64_PCREL32MSB:
3740 case R_IA64_PCREL32LSB:
3741 case R_IA64_PCREL64MSB:
3742 case R_IA64_PCREL64LSB:
3743 /* Install a dynamic relocation for this reloc. */
3744 if (dynamic_symbol_p && r_symndx != 0)
3746 /* VMS: doesn't exist ??? */
3751 case R_IA64_PCREL21B:
3752 case R_IA64_PCREL60B:
3753 /* We should have created a PLT entry for any dynamic symbol. */
3756 dyn_i = get_dyn_sym_info (ia64_info, h, NULL, NULL, FALSE);
3758 if (dyn_i && dyn_i->want_plt2)
3760 /* Should have caught this earlier. */
3761 BFD_ASSERT (rel->r_addend == 0);
3763 value = (ia64_info->root.splt->output_section->vma
3764 + ia64_info->root.splt->output_offset
3765 + dyn_i->plt2_offset);
3769 /* Since there's no PLT entry, Validate that this is
3771 BFD_ASSERT (undef_weak_ref || sym_sec->output_section != NULL);
3773 /* If the symbol is undef_weak, we shouldn't be trying
3774 to call it. There's every chance that we'd wind up
3775 with an out-of-range fixup here. Don't bother setting
3776 any value at all. */
3782 case R_IA64_PCREL21BI:
3783 case R_IA64_PCREL21F:
3784 case R_IA64_PCREL21M:
3785 case R_IA64_PCREL22:
3786 case R_IA64_PCREL64I:
3787 /* The PCREL21BI reloc is specifically not intended for use with
3788 dynamic relocs. PCREL21F and PCREL21M are used for speculation
3789 fixup code, and thus probably ought not be dynamic. The
3790 PCREL22 and PCREL64I relocs aren't emitted as dynamic relocs. */
3791 if (dynamic_symbol_p)
3795 if (r_type == R_IA64_PCREL21BI)
3796 /* xgettext:c-format */
3797 msg = _("%pB: @internal branch to dynamic symbol %s");
3798 else if (r_type == R_IA64_PCREL21F || r_type == R_IA64_PCREL21M)
3799 /* xgettext:c-format */
3800 msg = _("%pB: speculation fixup to dynamic symbol %s");
3802 /* xgettext:c-format */
3803 msg = _("%pB: @pcrel relocation against dynamic symbol %s");
3804 _bfd_error_handler (msg, input_bfd,
3805 h ? h->root.root.string
3806 : bfd_elf_sym_name (input_bfd,
3816 /* Make pc-relative. */
3817 value -= (input_section->output_section->vma
3818 + input_section->output_offset
3819 + rel->r_offset) & ~ (bfd_vma) 0x3;
3820 r = ia64_elf_install_value (hit_addr, value, r_type);
3823 case R_IA64_SEGREL32MSB:
3824 case R_IA64_SEGREL32LSB:
3825 case R_IA64_SEGREL64MSB:
3826 case R_IA64_SEGREL64LSB:
3828 /* Find the segment that contains the output_section. */
3829 Elf_Internal_Phdr *p = _bfd_elf_find_segment_containing_section
3830 (output_bfd, sym_sec->output_section);
3834 r = bfd_reloc_notsupported;
3838 /* The VMA of the segment is the vaddr of the associated
3840 if (value > p->p_vaddr)
3841 value -= p->p_vaddr;
3844 r = ia64_elf_install_value (hit_addr, value, r_type);
3849 case R_IA64_SECREL32MSB:
3850 case R_IA64_SECREL32LSB:
3851 case R_IA64_SECREL64MSB:
3852 case R_IA64_SECREL64LSB:
3853 /* Make output-section relative to section where the symbol
3854 is defined. PR 475 */
3856 value -= sym_sec->output_section->vma;
3857 r = ia64_elf_install_value (hit_addr, value, r_type);
3860 case R_IA64_IPLTMSB:
3861 case R_IA64_IPLTLSB:
3862 /* Install a dynamic relocation for this reloc. */
3863 if ((dynamic_symbol_p || bfd_link_pic (info))
3864 && (input_section->flags & SEC_ALLOC) != 0)
3870 if (r_type == R_IA64_IPLTMSB)
3871 r_type = R_IA64_DIR64MSB;
3873 r_type = R_IA64_DIR64LSB;
3874 ia64_elf_install_value (hit_addr, value, r_type);
3875 r = ia64_elf_install_value (hit_addr + 8, gp_val, r_type);
3878 case R_IA64_TPREL14:
3879 case R_IA64_TPREL22:
3880 case R_IA64_TPREL64I:
3881 r = bfd_reloc_notsupported;
3884 case R_IA64_DTPREL14:
3885 case R_IA64_DTPREL22:
3886 case R_IA64_DTPREL64I:
3887 case R_IA64_DTPREL32LSB:
3888 case R_IA64_DTPREL32MSB:
3889 case R_IA64_DTPREL64LSB:
3890 case R_IA64_DTPREL64MSB:
3891 r = bfd_reloc_notsupported;
3894 case R_IA64_LTOFF_TPREL22:
3895 case R_IA64_LTOFF_DTPMOD22:
3896 case R_IA64_LTOFF_DTPREL22:
3897 r = bfd_reloc_notsupported;
3901 r = bfd_reloc_notsupported;
3910 case bfd_reloc_undefined:
3911 /* This can happen for global table relative relocs if
3912 __gp is undefined. This is a panic situation so we
3913 don't try to continue. */
3914 (*info->callbacks->undefined_symbol)
3915 (info, "__gp", input_bfd, input_section, rel->r_offset, 1);
3918 case bfd_reloc_notsupported:
3923 name = h->root.root.string;
3925 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
3927 (*info->callbacks->warning) (info, _("unsupported reloc"),
3929 input_section, rel->r_offset);
3934 case bfd_reloc_dangerous:
3935 case bfd_reloc_outofrange:
3936 case bfd_reloc_overflow:
3942 name = h->root.root.string;
3944 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
3949 case R_IA64_TPREL14:
3950 case R_IA64_TPREL22:
3951 case R_IA64_TPREL64I:
3952 case R_IA64_DTPREL14:
3953 case R_IA64_DTPREL22:
3954 case R_IA64_DTPREL64I:
3955 case R_IA64_DTPREL32LSB:
3956 case R_IA64_DTPREL32MSB:
3957 case R_IA64_DTPREL64LSB:
3958 case R_IA64_DTPREL64MSB:
3959 case R_IA64_LTOFF_TPREL22:
3960 case R_IA64_LTOFF_DTPMOD22:
3961 case R_IA64_LTOFF_DTPREL22:
3963 /* xgettext:c-format */
3964 (_("%pB: missing TLS section for relocation %s against `%s'"
3965 " at %#" PRIx64 " in section `%pA'."),
3966 input_bfd, howto->name, name,
3967 (uint64_t) rel->r_offset, input_section);
3970 case R_IA64_PCREL21B:
3971 case R_IA64_PCREL21BI:
3972 case R_IA64_PCREL21M:
3973 case R_IA64_PCREL21F:
3974 if (is_elf_hash_table (info->hash))
3976 /* Relaxtion is always performed for ELF output.
3977 Overflow failures for those relocations mean
3978 that the section is too big to relax. */
3980 /* xgettext:c-format */
3981 (_("%pB: Can't relax br (%s) to `%s' "
3982 "at %#" PRIx64 " in section `%pA' "
3983 "with size %#" PRIx64 " (> 0x1000000)."),
3984 input_bfd, howto->name, name, (uint64_t) rel->r_offset,
3985 input_section, (uint64_t) input_section->size);
3990 (*info->callbacks->reloc_overflow) (info,
4011 elf64_ia64_finish_dynamic_symbol (bfd *output_bfd,
4012 struct bfd_link_info *info,
4013 struct elf_link_hash_entry *h,
4014 Elf_Internal_Sym *sym)
4016 struct elf64_ia64_link_hash_table *ia64_info;
4017 struct elf64_ia64_dyn_sym_info *dyn_i;
4019 ia64_info = elf64_ia64_hash_table (info);
4020 if (ia64_info == NULL)
4023 dyn_i = get_dyn_sym_info (ia64_info, h, NULL, NULL, FALSE);
4025 /* Fill in the PLT data, if required. */
4026 if (dyn_i && dyn_i->want_plt)
4030 bfd_vma plt_addr, pltoff_addr, gp_val;
4032 gp_val = _bfd_get_gp_value (output_bfd);
4034 plt_sec = ia64_info->root.splt;
4035 plt_addr = 0; /* Not used as overriden by FIXUPs. */
4036 pltoff_addr = set_pltoff_entry (output_bfd, info, dyn_i, plt_addr, TRUE);
4038 /* Initialize the FULL PLT entry, if needed. */
4039 if (dyn_i->want_plt2)
4041 loc = plt_sec->contents + dyn_i->plt2_offset;
4043 memcpy (loc, plt_full_entry, PLT_FULL_ENTRY_SIZE);
4044 ia64_elf_install_value (loc, pltoff_addr - gp_val, R_IA64_IMM22);
4046 /* Mark the symbol as undefined, rather than as defined in the
4047 plt section. Leave the value alone. */
4048 /* ??? We didn't redefine it in adjust_dynamic_symbol in the
4049 first place. But perhaps elflink.c did some for us. */
4050 if (!h->def_regular)
4051 sym->st_shndx = SHN_UNDEF;
4055 elf64_ia64_install_fixup
4056 (output_bfd, ia64_info, h, R_IA64_VMS_FIXFD, ia64_info->pltoff_sec,
4057 pltoff_addr - (ia64_info->pltoff_sec->output_section->vma
4058 + ia64_info->pltoff_sec->output_offset), 0);
4061 /* Mark some specially defined symbols as absolute. */
4062 if (h == ia64_info->root.hdynamic
4063 || h == ia64_info->root.hgot
4064 || h == ia64_info->root.hplt)
4065 sym->st_shndx = SHN_ABS;
4071 elf64_ia64_finish_dynamic_sections (bfd *abfd,
4072 struct bfd_link_info *info)
4074 struct elf64_ia64_link_hash_table *ia64_info;
4077 ia64_info = elf64_ia64_hash_table (info);
4078 if (ia64_info == NULL)
4081 dynobj = ia64_info->root.dynobj;
4083 if (elf_hash_table (info)->dynamic_sections_created)
4085 Elf64_External_Dyn *dyncon, *dynconend;
4087 asection *unwind_sec;
4089 unsigned int gp_seg;
4091 Elf_Internal_Phdr *phdr;
4092 Elf_Internal_Phdr *base_phdr;
4093 unsigned int unwind_seg = 0;
4094 unsigned int code_seg = 0;
4096 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
4097 BFD_ASSERT (sdyn != NULL);
4098 dyncon = (Elf64_External_Dyn *) sdyn->contents;
4099 dynconend = (Elf64_External_Dyn *) (sdyn->contents + sdyn->size);
4101 gp_val = _bfd_get_gp_value (abfd);
4102 phdr = _bfd_elf_find_segment_containing_section
4103 (info->output_bfd, ia64_info->pltoff_sec->output_section);
4104 BFD_ASSERT (phdr != NULL);
4105 base_phdr = elf_tdata (info->output_bfd)->phdr;
4106 gp_seg = phdr - base_phdr;
4107 gp_off = gp_val - phdr->p_vaddr;
4109 unwind_sec = bfd_get_section_by_name (abfd, ELF_STRING_ia64_unwind);
4110 if (unwind_sec != NULL)
4114 phdr = _bfd_elf_find_segment_containing_section (abfd, unwind_sec);
4115 BFD_ASSERT (phdr != NULL);
4116 unwind_seg = phdr - base_phdr;
4118 code_sec = bfd_get_section_by_name (abfd, "$CODE$");
4119 phdr = _bfd_elf_find_segment_containing_section (abfd, code_sec);
4120 BFD_ASSERT (phdr != NULL);
4121 code_seg = phdr - base_phdr;
4124 for (; dyncon < dynconend; dyncon++)
4126 Elf_Internal_Dyn dyn;
4128 bfd_elf64_swap_dyn_in (dynobj, dyncon, &dyn);
4132 case DT_IA_64_VMS_FIXUP_RELA_OFF:
4134 (ia64_info->fixups_sec->output_section->vma
4135 + ia64_info->fixups_sec->output_offset)
4136 - (sdyn->output_section->vma + sdyn->output_offset);
4139 case DT_IA_64_VMS_PLTGOT_OFFSET:
4140 dyn.d_un.d_val = gp_off;
4143 case DT_IA_64_VMS_PLTGOT_SEG:
4144 dyn.d_un.d_val = gp_seg;
4147 case DT_IA_64_VMS_UNWINDSZ:
4148 if (unwind_sec == NULL)
4150 dyn.d_tag = DT_NULL;
4151 dyn.d_un.d_val = 0xdead;
4154 dyn.d_un.d_val = unwind_sec->size;
4157 case DT_IA_64_VMS_UNWIND_CODSEG:
4158 dyn.d_un.d_val = code_seg;
4161 case DT_IA_64_VMS_UNWIND_INFOSEG:
4162 case DT_IA_64_VMS_UNWIND_SEG:
4163 dyn.d_un.d_val = unwind_seg;
4166 case DT_IA_64_VMS_UNWIND_OFFSET:
4170 /* No need to rewrite the entry. */
4174 bfd_elf64_swap_dyn_out (abfd, &dyn, dyncon);
4178 /* Handle transfer addresses. */
4180 asection *tfr_sec = ia64_info->transfer_sec;
4181 struct elf64_vms_transfer *tfr;
4182 struct elf_link_hash_entry *tfr3;
4184 tfr = (struct elf64_vms_transfer *)tfr_sec->contents;
4185 bfd_putl32 (6 * 8, tfr->size);
4186 bfd_putl64 (tfr_sec->output_section->vma
4187 + tfr_sec->output_offset
4188 + 6 * 8, tfr->tfradr3);
4190 tfr3 = elf_link_hash_lookup (elf_hash_table (info), "ELF$TFRADR", FALSE,
4194 && (tfr3->root.type == bfd_link_hash_defined
4195 || tfr3->root.type == bfd_link_hash_defweak))
4197 asection *tfr3_sec = tfr3->root.u.def.section;
4200 tfr3_val = (tfr3->root.u.def.value
4201 + tfr3_sec->output_section->vma
4202 + tfr3_sec->output_offset);
4204 bfd_putl64 (tfr3_val, tfr->tfr3_func);
4205 bfd_putl64 (_bfd_get_gp_value (info->output_bfd), tfr->tfr3_gp);
4208 /* FIXME: set linker flags,
4209 handle lib$initialize. */
4215 /* ELF file flag handling: */
4217 /* Function to keep IA-64 specific file flags. */
4219 elf64_ia64_set_private_flags (bfd *abfd, flagword flags)
4221 BFD_ASSERT (!elf_flags_init (abfd)
4222 || elf_elfheader (abfd)->e_flags == flags);
4224 elf_elfheader (abfd)->e_flags = flags;
4225 elf_flags_init (abfd) = TRUE;
4229 /* Merge backend specific data from an object file to the output
4230 object file when linking. */
4232 elf64_ia64_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
4234 bfd *obfd = info->output_bfd;
4237 bfd_boolean ok = TRUE;
4239 /* Don't even pretend to support mixed-format linking. */
4240 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
4241 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
4244 in_flags = elf_elfheader (ibfd)->e_flags;
4245 out_flags = elf_elfheader (obfd)->e_flags;
4247 if (! elf_flags_init (obfd))
4249 elf_flags_init (obfd) = TRUE;
4250 elf_elfheader (obfd)->e_flags = in_flags;
4252 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
4253 && bfd_get_arch_info (obfd)->the_default)
4255 return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
4256 bfd_get_mach (ibfd));
4262 /* Check flag compatibility. */
4263 if (in_flags == out_flags)
4266 /* Output has EF_IA_64_REDUCEDFP set only if all inputs have it set. */
4267 if (!(in_flags & EF_IA_64_REDUCEDFP) && (out_flags & EF_IA_64_REDUCEDFP))
4268 elf_elfheader (obfd)->e_flags &= ~EF_IA_64_REDUCEDFP;
4270 if ((in_flags & EF_IA_64_TRAPNIL) != (out_flags & EF_IA_64_TRAPNIL))
4273 (_("%pB: linking trap-on-NULL-dereference with non-trapping files"),
4276 bfd_set_error (bfd_error_bad_value);
4279 if ((in_flags & EF_IA_64_BE) != (out_flags & EF_IA_64_BE))
4282 (_("%pB: linking big-endian files with little-endian files"),
4285 bfd_set_error (bfd_error_bad_value);
4288 if ((in_flags & EF_IA_64_ABI64) != (out_flags & EF_IA_64_ABI64))
4291 (_("%pB: linking 64-bit files with 32-bit files"),
4294 bfd_set_error (bfd_error_bad_value);
4297 if ((in_flags & EF_IA_64_CONS_GP) != (out_flags & EF_IA_64_CONS_GP))
4300 (_("%pB: linking constant-gp files with non-constant-gp files"),
4303 bfd_set_error (bfd_error_bad_value);
4306 if ((in_flags & EF_IA_64_NOFUNCDESC_CONS_GP)
4307 != (out_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
4310 (_("%pB: linking auto-pic files with non-auto-pic files"),
4313 bfd_set_error (bfd_error_bad_value);
4321 elf64_ia64_print_private_bfd_data (bfd *abfd, void * ptr)
4323 FILE *file = (FILE *) ptr;
4324 flagword flags = elf_elfheader (abfd)->e_flags;
4326 BFD_ASSERT (abfd != NULL && ptr != NULL);
4328 fprintf (file, "private flags = %s%s%s%s%s%s%s%s\n",
4329 (flags & EF_IA_64_TRAPNIL) ? "TRAPNIL, " : "",
4330 (flags & EF_IA_64_EXT) ? "EXT, " : "",
4331 (flags & EF_IA_64_BE) ? "BE, " : "LE, ",
4332 (flags & EF_IA_64_REDUCEDFP) ? "REDUCEDFP, " : "",
4333 (flags & EF_IA_64_CONS_GP) ? "CONS_GP, " : "",
4334 (flags & EF_IA_64_NOFUNCDESC_CONS_GP) ? "NOFUNCDESC_CONS_GP, " : "",
4335 (flags & EF_IA_64_ABSOLUTE) ? "ABSOLUTE, " : "",
4336 (flags & EF_IA_64_ABI64) ? "ABI64" : "ABI32");
4338 _bfd_elf_print_private_bfd_data (abfd, ptr);
4342 static enum elf_reloc_type_class
4343 elf64_ia64_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
4344 const asection *rel_sec ATTRIBUTE_UNUSED,
4345 const Elf_Internal_Rela *rela)
4347 switch ((int) ELF64_R_TYPE (rela->r_info))
4349 case R_IA64_REL32MSB:
4350 case R_IA64_REL32LSB:
4351 case R_IA64_REL64MSB:
4352 case R_IA64_REL64LSB:
4353 return reloc_class_relative;
4354 case R_IA64_IPLTMSB:
4355 case R_IA64_IPLTLSB:
4356 return reloc_class_plt;
4358 return reloc_class_copy;
4360 return reloc_class_normal;
4364 static const struct bfd_elf_special_section elf64_ia64_special_sections[] =
4366 { STRING_COMMA_LEN (".sbss"), -1, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_IA_64_SHORT },
4367 { STRING_COMMA_LEN (".sdata"), -1, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_IA_64_SHORT },
4368 { NULL, 0, 0, 0, 0 }
4372 elf64_ia64_object_p (bfd *abfd)
4375 asection *group, *unwi, *unw;
4378 char *unwi_name, *unw_name;
4381 if (abfd->flags & DYNAMIC)
4384 /* Flags for fake group section. */
4385 flags = (SEC_LINKER_CREATED | SEC_GROUP | SEC_LINK_ONCE
4388 /* We add a fake section group for each .gnu.linkonce.t.* section,
4389 which isn't in a section group, and its unwind sections. */
4390 for (sec = abfd->sections; sec != NULL; sec = sec->next)
4392 if (elf_sec_group (sec) == NULL
4393 && ((sec->flags & (SEC_LINK_ONCE | SEC_CODE | SEC_GROUP))
4394 == (SEC_LINK_ONCE | SEC_CODE))
4395 && CONST_STRNEQ (sec->name, ".gnu.linkonce.t."))
4397 name = sec->name + 16;
4399 amt = strlen (name) + sizeof (".gnu.linkonce.ia64unwi.");
4400 unwi_name = bfd_alloc (abfd, amt);
4404 strcpy (stpcpy (unwi_name, ".gnu.linkonce.ia64unwi."), name);
4405 unwi = bfd_get_section_by_name (abfd, unwi_name);
4407 amt = strlen (name) + sizeof (".gnu.linkonce.ia64unw.");
4408 unw_name = bfd_alloc (abfd, amt);
4412 strcpy (stpcpy (unw_name, ".gnu.linkonce.ia64unw."), name);
4413 unw = bfd_get_section_by_name (abfd, unw_name);
4415 /* We need to create a fake group section for it and its
4417 group = bfd_make_section_anyway_with_flags (abfd, name,
4422 /* Move the fake group section to the beginning. */
4423 bfd_section_list_remove (abfd, group);
4424 bfd_section_list_prepend (abfd, group);
4426 elf_next_in_group (group) = sec;
4428 elf_group_name (sec) = name;
4429 elf_next_in_group (sec) = sec;
4430 elf_sec_group (sec) = group;
4434 elf_group_name (unwi) = name;
4435 elf_next_in_group (unwi) = sec;
4436 elf_next_in_group (sec) = unwi;
4437 elf_sec_group (unwi) = group;
4442 elf_group_name (unw) = name;
4445 elf_next_in_group (unw) = elf_next_in_group (unwi);
4446 elf_next_in_group (unwi) = unw;
4450 elf_next_in_group (unw) = sec;
4451 elf_next_in_group (sec) = unw;
4453 elf_sec_group (unw) = group;
4456 /* Fake SHT_GROUP section header. */
4457 elf_section_data (group)->this_hdr.bfd_section = group;
4458 elf_section_data (group)->this_hdr.sh_type = SHT_GROUP;
4464 /* Handle an IA-64 specific section when reading an object file. This
4465 is called when bfd_section_from_shdr finds a section with an unknown
4469 elf64_vms_section_from_shdr (bfd *abfd,
4470 Elf_Internal_Shdr *hdr,
4474 flagword secflags = 0;
4476 switch (hdr->sh_type)
4478 case SHT_IA_64_VMS_TRACE:
4479 case SHT_IA_64_VMS_DEBUG:
4480 case SHT_IA_64_VMS_DEBUG_STR:
4481 secflags = SEC_DEBUGGING;
4484 case SHT_IA_64_UNWIND:
4485 case SHT_IA_64_HP_OPT_ANOT:
4489 if (strcmp (name, ELF_STRING_ia64_archext) != 0)
4497 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
4502 asection *newsect = hdr->bfd_section;
4504 if (! bfd_set_section_flags
4505 (abfd, newsect, bfd_get_section_flags (abfd, newsect) | secflags))
4513 elf64_vms_object_p (bfd *abfd)
4515 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
4516 Elf_Internal_Phdr *i_phdr = elf_tdata (abfd)->phdr;
4518 unsigned int num_text = 0;
4519 unsigned int num_data = 0;
4520 unsigned int num_rodata = 0;
4523 if (!elf64_ia64_object_p (abfd))
4526 /* Many VMS compilers do not generate sections for the corresponding
4527 segment. This is boring as binutils tools won't be able to disassemble
4528 the code. So we simply create all the missing sections. */
4529 for (i = 0; i < i_ehdrp->e_phnum; i++, i_phdr++)
4531 /* Is there a section for this segment? */
4532 bfd_vma base_vma = i_phdr->p_vaddr;
4533 bfd_vma limit_vma = base_vma + i_phdr->p_filesz;
4535 if (i_phdr->p_type != PT_LOAD)
4538 /* We need to cover from base_vms to limit_vma. */
4540 while (base_vma < limit_vma)
4542 bfd_vma next_vma = limit_vma;
4548 /* Find a section covering [base_vma;limit_vma) */
4549 for (sec = abfd->sections; sec != NULL; sec = sec->next)
4551 /* Skip uninteresting sections (either not in memory or
4553 if ((sec->flags & (SEC_ALLOC | SEC_LOAD)) == 0
4554 || sec->vma + sec->size <= base_vma)
4556 if (sec->vma <= base_vma)
4558 /* This section covers (maybe partially) the beginning
4560 base_vma = sec->vma + sec->size;
4563 if (sec->vma < next_vma)
4565 /* This section partially covers the end of the range.
4566 Used to compute the size of the hole. */
4567 next_vma = sec->vma;
4571 /* No section covering [base_vma; next_vma). Create a fake one. */
4572 flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS;
4573 if (i_phdr->p_flags & PF_X)
4576 if (num_text++ == 0)
4579 sprintf (name, ".text$%u", num_text);
4581 else if ((i_phdr->p_flags & (PF_R | PF_W)) == PF_R)
4583 flags |= SEC_READONLY;
4584 sprintf (name, ".rodata$%u", num_rodata++);
4589 sprintf (name, ".data$%u", num_data++);
4592 /* Allocate name. */
4595 size_t name_len = strlen (name) + 1;
4596 nname = bfd_alloc (abfd, name_len);
4599 memcpy (nname, name, name_len);
4602 /* Create and fill new section. */
4603 nsec = bfd_make_section_anyway_with_flags (abfd, nname, flags);
4606 nsec->vma = base_vma;
4607 nsec->size = next_vma - base_vma;
4608 nsec->filepos = i_phdr->p_offset + (base_vma - i_phdr->p_vaddr);
4610 base_vma = next_vma;
4617 elf64_vms_post_process_headers (bfd *abfd,
4618 struct bfd_link_info *info ATTRIBUTE_UNUSED)
4620 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
4622 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_OPENVMS;
4623 i_ehdrp->e_ident[EI_ABIVERSION] = 2;
4627 elf64_vms_section_processing (bfd *abfd ATTRIBUTE_UNUSED,
4628 Elf_Internal_Shdr *hdr)
4630 if (hdr->bfd_section != NULL)
4632 const char *name = bfd_get_section_name (abfd, hdr->bfd_section);
4634 if (strcmp (name, ".text") == 0)
4635 hdr->sh_flags |= SHF_IA_64_VMS_SHARED;
4636 else if ((strcmp (name, ".debug") == 0)
4637 || (strcmp (name, ".debug_abbrev") == 0)
4638 || (strcmp (name, ".debug_aranges") == 0)
4639 || (strcmp (name, ".debug_frame") == 0)
4640 || (strcmp (name, ".debug_info") == 0)
4641 || (strcmp (name, ".debug_loc") == 0)
4642 || (strcmp (name, ".debug_macinfo") == 0)
4643 || (strcmp (name, ".debug_pubnames") == 0)
4644 || (strcmp (name, ".debug_pubtypes") == 0))
4645 hdr->sh_type = SHT_IA_64_VMS_DEBUG;
4646 else if ((strcmp (name, ".debug_line") == 0)
4647 || (strcmp (name, ".debug_ranges") == 0)
4648 || (strcmp (name, ".trace_info") == 0)
4649 || (strcmp (name, ".trace_abbrev") == 0)
4650 || (strcmp (name, ".trace_aranges") == 0))
4651 hdr->sh_type = SHT_IA_64_VMS_TRACE;
4652 else if (strcmp (name, ".debug_str") == 0)
4653 hdr->sh_type = SHT_IA_64_VMS_DEBUG_STR;
4659 /* The final processing done just before writing out a VMS IA-64 ELF
4663 elf64_vms_final_write_processing (bfd *abfd,
4664 bfd_boolean linker ATTRIBUTE_UNUSED)
4666 Elf_Internal_Shdr *hdr;
4668 int unwind_info_sect_idx = 0;
4670 for (s = abfd->sections; s; s = s->next)
4672 hdr = &elf_section_data (s)->this_hdr;
4674 if (strcmp (bfd_get_section_name (abfd, hdr->bfd_section),
4675 ".IA_64.unwind_info") == 0)
4676 unwind_info_sect_idx = elf_section_data (s)->this_idx;
4678 switch (hdr->sh_type)
4680 case SHT_IA_64_UNWIND:
4681 /* VMS requires sh_info to point to the unwind info section. */
4682 hdr->sh_info = unwind_info_sect_idx;
4687 if (! elf_flags_init (abfd))
4689 unsigned long flags = 0;
4691 if (abfd->xvec->byteorder == BFD_ENDIAN_BIG)
4692 flags |= EF_IA_64_BE;
4693 if (bfd_get_mach (abfd) == bfd_mach_ia64_elf64)
4694 flags |= EF_IA_64_ABI64;
4696 elf_elfheader (abfd)->e_flags = flags;
4697 elf_flags_init (abfd) = TRUE;
4702 elf64_vms_write_shdrs_and_ehdr (bfd *abfd)
4704 unsigned char needed_count[8];
4706 if (!bfd_elf64_write_shdrs_and_ehdr (abfd))
4709 bfd_putl64 (elf_ia64_vms_tdata (abfd)->needed_count, needed_count);
4711 if (bfd_seek (abfd, sizeof (Elf64_External_Ehdr), SEEK_SET) != 0
4712 || bfd_bwrite (needed_count, 8, abfd) != 8)
4719 elf64_vms_close_and_cleanup (bfd *abfd)
4721 if (bfd_get_format (abfd) == bfd_object)
4725 /* Pad to 8 byte boundary for IPF/VMS. */
4726 isize = bfd_get_size (abfd);
4727 if ((isize & 7) != 0)
4729 int ishort = 8 - (isize & 7);
4730 bfd_uint64_t pad = 0;
4732 bfd_seek (abfd, isize, SEEK_SET);
4733 bfd_bwrite (&pad, ishort, abfd);
4737 return _bfd_elf_close_and_cleanup (abfd);
4740 /* Add symbols from an ELF object file to the linker hash table. */
4743 elf64_vms_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
4745 Elf_Internal_Shdr *hdr;
4746 bfd_size_type symcount;
4747 bfd_size_type extsymcount;
4748 bfd_size_type extsymoff;
4749 struct elf_link_hash_entry **sym_hash;
4750 bfd_boolean dynamic;
4751 Elf_Internal_Sym *isymbuf = NULL;
4752 Elf_Internal_Sym *isym;
4753 Elf_Internal_Sym *isymend;
4754 const struct elf_backend_data *bed;
4755 struct elf_link_hash_table *htab;
4758 htab = elf_hash_table (info);
4759 bed = get_elf_backend_data (abfd);
4761 if ((abfd->flags & DYNAMIC) == 0)
4767 /* You can't use -r against a dynamic object. Also, there's no
4768 hope of using a dynamic object which does not exactly match
4769 the format of the output file. */
4770 if (bfd_link_relocatable (info)
4771 || !is_elf_hash_table (htab)
4772 || info->output_bfd->xvec != abfd->xvec)
4774 if (bfd_link_relocatable (info))
4775 bfd_set_error (bfd_error_invalid_operation);
4777 bfd_set_error (bfd_error_wrong_format);
4784 /* If we are creating a shared library, create all the dynamic
4785 sections immediately. We need to attach them to something,
4786 so we attach them to this BFD, provided it is the right
4787 format. FIXME: If there are no input BFD's of the same
4788 format as the output, we can't make a shared library. */
4789 if (bfd_link_pic (info)
4790 && is_elf_hash_table (htab)
4791 && info->output_bfd->xvec == abfd->xvec
4792 && !htab->dynamic_sections_created)
4794 if (! elf64_ia64_create_dynamic_sections (abfd, info))
4798 else if (!is_elf_hash_table (htab))
4806 /* ld --just-symbols and dynamic objects don't mix very well.
4807 ld shouldn't allow it. */
4808 if ((s = abfd->sections) != NULL
4809 && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
4812 /* Be sure there are dynamic sections. */
4813 if (! elf64_ia64_create_dynamic_sections (htab->dynobj, info))
4816 s = bfd_get_section_by_name (abfd, ".dynamic");
4819 /* VMS libraries do not have dynamic sections. Create one from
4821 Elf_Internal_Phdr *phdr;
4822 unsigned int i, phnum;
4824 phdr = elf_tdata (abfd)->phdr;
4827 phnum = elf_elfheader (abfd)->e_phnum;
4828 for (i = 0; i < phnum; phdr++)
4829 if (phdr->p_type == PT_DYNAMIC)
4831 s = bfd_make_section (abfd, ".dynamic");
4834 s->vma = phdr->p_vaddr;
4835 s->lma = phdr->p_paddr;
4836 s->size = phdr->p_filesz;
4837 s->filepos = phdr->p_offset;
4838 s->flags |= SEC_HAS_CONTENTS;
4839 s->alignment_power = bfd_log2 (phdr->p_align);
4846 /* Extract IDENT. */
4847 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
4854 for (extdyn = dynbuf;
4855 extdyn < dynbuf + s->size;
4856 extdyn += bed->s->sizeof_dyn)
4858 Elf_Internal_Dyn dyn;
4860 bed->s->swap_dyn_in (abfd, extdyn, &dyn);
4861 if (dyn.d_tag == DT_IA_64_VMS_IDENT)
4863 bfd_uint64_t tagv = dyn.d_un.d_val;
4864 elf_ia64_vms_ident (abfd) = tagv;
4868 if (extdyn >= dynbuf + s->size)
4870 /* Ident not found. */
4871 goto error_free_dyn;
4875 /* We do not want to include any of the sections in a dynamic
4876 object in the output file. We hack by simply clobbering the
4877 list of sections in the BFD. This could be handled more
4878 cleanly by, say, a new section flag; the existing
4879 SEC_NEVER_LOAD flag is not the one we want, because that one
4880 still implies that the section takes up space in the output
4882 bfd_section_list_clear (abfd);
4884 /* FIXME: should we detect if this library is already included ?
4885 This should be harmless and shouldn't happen in practice. */
4888 hdr = &elf_tdata (abfd)->symtab_hdr;
4889 symcount = hdr->sh_size / bed->s->sizeof_sym;
4891 /* The sh_info field of the symtab header tells us where the
4892 external symbols start. We don't care about the local symbols at
4894 extsymcount = symcount - hdr->sh_info;
4895 extsymoff = hdr->sh_info;
4898 if (extsymcount != 0)
4900 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
4902 if (isymbuf == NULL)
4905 /* We store a pointer to the hash table entry for each external
4907 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
4908 sym_hash = (struct elf_link_hash_entry **) bfd_alloc (abfd, amt);
4909 if (sym_hash == NULL)
4910 goto error_free_sym;
4911 elf_sym_hashes (abfd) = sym_hash;
4914 for (isym = isymbuf, isymend = isymbuf + extsymcount;
4920 asection *sec, *new_sec;
4923 struct elf_link_hash_entry *h;
4924 bfd_boolean definition;
4925 bfd_boolean size_change_ok;
4926 bfd_boolean type_change_ok;
4928 unsigned int old_alignment;
4931 flags = BSF_NO_FLAGS;
4933 value = isym->st_value;
4935 common = bed->common_definition (isym);
4937 bind = ELF_ST_BIND (isym->st_info);
4941 /* This should be impossible, since ELF requires that all
4942 global symbols follow all local symbols, and that sh_info
4943 point to the first global symbol. Unfortunately, Irix 5
4948 if (isym->st_shndx != SHN_UNDEF && !common)
4956 case STB_GNU_UNIQUE:
4957 flags = BSF_GNU_UNIQUE;
4961 /* Leave it up to the processor backend. */
4965 if (isym->st_shndx == SHN_UNDEF)
4966 sec = bfd_und_section_ptr;
4967 else if (isym->st_shndx == SHN_ABS)
4968 sec = bfd_abs_section_ptr;
4969 else if (isym->st_shndx == SHN_COMMON)
4971 sec = bfd_com_section_ptr;
4972 /* What ELF calls the size we call the value. What ELF
4973 calls the value we call the alignment. */
4974 value = isym->st_size;
4978 sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
4980 sec = bfd_abs_section_ptr;
4981 else if (sec->kept_section)
4983 /* Symbols from discarded section are undefined. We keep
4985 sec = bfd_und_section_ptr;
4986 isym->st_shndx = SHN_UNDEF;
4988 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
4992 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
4995 goto error_free_vers;
4997 if (bed->elf_add_symbol_hook)
4999 if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
5001 goto error_free_vers;
5003 /* The hook function sets the name to NULL if this symbol
5004 should be skipped for some reason. */
5009 /* Sanity check that all possibilities were handled. */
5012 bfd_set_error (bfd_error_bad_value);
5013 goto error_free_vers;
5016 if (bfd_is_und_section (sec)
5017 || bfd_is_com_section (sec))
5022 size_change_ok = FALSE;
5023 type_change_ok = bed->type_change_ok;
5028 if (! bfd_is_und_section (sec))
5029 h = elf_link_hash_lookup (htab, name, TRUE, FALSE, FALSE);
5031 h = ((struct elf_link_hash_entry *) bfd_wrapped_link_hash_lookup
5032 (abfd, info, name, TRUE, FALSE, FALSE));
5034 goto error_free_sym;
5038 if (is_elf_hash_table (htab))
5040 while (h->root.type == bfd_link_hash_indirect
5041 || h->root.type == bfd_link_hash_warning)
5042 h = (struct elf_link_hash_entry *) h->root.u.i.link;
5044 /* Remember the old alignment if this is a common symbol, so
5045 that we don't reduce the alignment later on. We can't
5046 check later, because _bfd_generic_link_add_one_symbol
5047 will set a default for the alignment which we want to
5048 override. We also remember the old bfd where the existing
5049 definition comes from. */
5050 switch (h->root.type)
5055 case bfd_link_hash_defined:
5056 if (abfd->selective_search)
5059 case bfd_link_hash_defweak:
5060 old_bfd = h->root.u.def.section->owner;
5063 case bfd_link_hash_common:
5064 old_bfd = h->root.u.c.p->section->owner;
5065 old_alignment = h->root.u.c.p->alignment_power;
5070 if (! (_bfd_generic_link_add_one_symbol
5071 (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
5072 (struct bfd_link_hash_entry **) sym_hash)))
5073 goto error_free_vers;
5076 while (h->root.type == bfd_link_hash_indirect
5077 || h->root.type == bfd_link_hash_warning)
5078 h = (struct elf_link_hash_entry *) h->root.u.i.link;
5082 h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
5084 /* Set the alignment of a common symbol. */
5085 if ((common || bfd_is_com_section (sec))
5086 && h->root.type == bfd_link_hash_common)
5091 align = bfd_log2 (isym->st_value);
5094 /* The new symbol is a common symbol in a shared object.
5095 We need to get the alignment from the section. */
5096 align = new_sec->alignment_power;
5098 if (align > old_alignment
5099 /* Permit an alignment power of zero if an alignment of one
5100 is specified and no other alignments have been specified. */
5101 || (isym->st_value == 1 && old_alignment == 0))
5102 h->root.u.c.p->alignment_power = align;
5104 h->root.u.c.p->alignment_power = old_alignment;
5107 if (is_elf_hash_table (htab))
5109 /* Check the alignment when a common symbol is involved. This
5110 can change when a common symbol is overridden by a normal
5111 definition or a common symbol is ignored due to the old
5112 normal definition. We need to make sure the maximum
5113 alignment is maintained. */
5114 if ((old_alignment || common)
5115 && h->root.type != bfd_link_hash_common)
5117 unsigned int common_align;
5118 unsigned int normal_align;
5119 unsigned int symbol_align;
5123 symbol_align = ffs (h->root.u.def.value) - 1;
5124 if (h->root.u.def.section->owner != NULL
5125 && (h->root.u.def.section->owner->flags & DYNAMIC) == 0)
5127 normal_align = h->root.u.def.section->alignment_power;
5128 if (normal_align > symbol_align)
5129 normal_align = symbol_align;
5132 normal_align = symbol_align;
5136 common_align = old_alignment;
5137 common_bfd = old_bfd;
5142 common_align = bfd_log2 (isym->st_value);
5144 normal_bfd = old_bfd;
5147 if (normal_align < common_align)
5149 /* PR binutils/2735 */
5150 if (normal_bfd == NULL)
5152 /* xgettext:c-format */
5153 (_("warning: alignment %u of common symbol `%s' in %pB"
5154 " is greater than the alignment (%u) of its section %pA"),
5155 1 << common_align, name, common_bfd,
5156 1 << normal_align, h->root.u.def.section);
5159 /* xgettext:c-format */
5160 (_("warning: alignment %u of symbol `%s' in %pB"
5161 " is smaller than %u in %pB"),
5162 1 << normal_align, name, normal_bfd,
5163 1 << common_align, common_bfd);
5167 /* Remember the symbol size if it isn't undefined. */
5168 if ((isym->st_size != 0 && isym->st_shndx != SHN_UNDEF)
5169 && (definition || h->size == 0))
5172 && h->size != isym->st_size
5173 && ! size_change_ok)
5175 /* xgettext:c-format */
5176 (_("warning: size of symbol `%s' changed"
5177 " from %" PRIu64 " in %pB to %" PRIu64 " in %pB"),
5178 name, (uint64_t) h->size, old_bfd,
5179 (uint64_t) isym->st_size, abfd);
5181 h->size = isym->st_size;
5184 /* If this is a common symbol, then we always want H->SIZE
5185 to be the size of the common symbol. The code just above
5186 won't fix the size if a common symbol becomes larger. We
5187 don't warn about a size change here, because that is
5188 covered by --warn-common. Allow changed between different
5190 if (h->root.type == bfd_link_hash_common)
5191 h->size = h->root.u.c.size;
5193 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
5194 && (definition || h->type == STT_NOTYPE))
5196 unsigned int type = ELF_ST_TYPE (isym->st_info);
5198 if (h->type != type)
5200 if (h->type != STT_NOTYPE && ! type_change_ok)
5202 /* xgettext:c-format */
5203 (_("warning: type of symbol `%s' changed"
5204 " from %d to %d in %pB"),
5205 name, h->type, type, abfd);
5211 /* Set a flag in the hash table entry indicating the type of
5212 reference or definition we just found. Keep a count of
5213 the number of dynamic symbols we find. A dynamic symbol
5214 is one which is referenced or defined by both a regular
5215 object and a shared object. */
5221 if (bind != STB_WEAK)
5222 h->ref_regular_nonweak = 1;
5226 BFD_ASSERT (!h->def_dynamic);
5232 BFD_ASSERT (definition);
5235 ((struct elf64_ia64_link_hash_entry *)h)->shl = abfd;
5240 if (isymbuf != NULL)
5246 /* If this object is the same format as the output object, and it is
5247 not a shared library, then let the backend look through the
5250 This is required to build global offset table entries and to
5251 arrange for dynamic relocs. It is not required for the
5252 particular common case of linking non PIC code, even when linking
5253 against shared libraries, but unfortunately there is no way of
5254 knowing whether an object file has been compiled PIC or not.
5255 Looking through the relocs is not particularly time consuming.
5256 The problem is that we must either (1) keep the relocs in memory,
5257 which causes the linker to require additional runtime memory or
5258 (2) read the relocs twice from the input file, which wastes time.
5259 This would be a good case for using mmap.
5261 I have no idea how to handle linking PIC code into a file of a
5262 different format. It probably can't be done. */
5264 && is_elf_hash_table (htab)
5265 && bed->check_relocs != NULL
5266 && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
5270 for (o = abfd->sections; o != NULL; o = o->next)
5272 Elf_Internal_Rela *internal_relocs;
5275 if ((o->flags & SEC_RELOC) == 0
5276 || o->reloc_count == 0
5277 || ((info->strip == strip_all || info->strip == strip_debugger)
5278 && (o->flags & SEC_DEBUGGING) != 0)
5279 || bfd_is_abs_section (o->output_section))
5282 internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
5284 if (internal_relocs == NULL)
5287 ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
5289 if (elf_section_data (o)->relocs != internal_relocs)
5290 free (internal_relocs);
5301 if (isymbuf != NULL)
5308 elf64_vms_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
5311 struct bfd_link_hash_entry **pundef;
5312 struct bfd_link_hash_entry **next_pundef;
5314 /* We only accept VMS libraries. */
5315 if (info->output_bfd->xvec != abfd->xvec)
5317 bfd_set_error (bfd_error_wrong_format);
5321 /* The archive_pass field in the archive itself is used to
5322 initialize PASS, since we may search the same archive multiple
5324 pass = ++abfd->archive_pass;
5326 /* Look through the list of undefined symbols. */
5327 for (pundef = &info->hash->undefs; *pundef != NULL; pundef = next_pundef)
5329 struct bfd_link_hash_entry *h;
5335 next_pundef = &(*pundef)->u.undef.next;
5337 /* When a symbol is defined, it is not necessarily removed from
5339 if (h->type != bfd_link_hash_undefined
5340 && h->type != bfd_link_hash_common)
5342 /* Remove this entry from the list, for general cleanliness
5343 and because we are going to look through the list again
5344 if we search any more libraries. We can't remove the
5345 entry if it is the tail, because that would lose any
5346 entries we add to the list later on. */
5347 if (*pundef != info->hash->undefs_tail)
5349 *pundef = *next_pundef;
5350 next_pundef = pundef;
5355 /* Look for this symbol in the archive hash table. */
5356 symidx = _bfd_vms_lib_find_symbol (abfd, h->root.string);
5357 if (symidx == BFD_NO_MORE_SYMBOLS)
5359 /* Nothing in this slot. */
5363 element = bfd_get_elt_at_index (abfd, symidx);
5364 if (element == NULL)
5367 if (element->archive_pass == -1 || element->archive_pass == pass)
5369 /* Next symbol if this archive is wrong or already handled. */
5373 orig_element = element;
5374 if (bfd_is_thin_archive (abfd))
5376 element = _bfd_vms_lib_get_imagelib_file (element);
5377 if (element == NULL || !bfd_check_format (element, bfd_object))
5379 orig_element->archive_pass = -1;
5383 else if (! bfd_check_format (element, bfd_object))
5385 element->archive_pass = -1;
5389 /* Unlike the generic linker, we know that this element provides
5390 a definition for an undefined symbol and we know that we want
5391 to include it. We don't need to check anything. */
5392 if (! (*info->callbacks->add_archive_element) (info, element,
5393 h->root.string, &element))
5395 if (! elf64_vms_link_add_object_symbols (element, info))
5398 orig_element->archive_pass = pass;
5405 elf64_vms_bfd_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5407 switch (bfd_get_format (abfd))
5410 return elf64_vms_link_add_object_symbols (abfd, info);
5413 return elf64_vms_link_add_archive_symbols (abfd, info);
5416 bfd_set_error (bfd_error_wrong_format);
5422 elf64_ia64_vms_mkobject (bfd *abfd)
5424 return bfd_elf_allocate_object
5425 (abfd, sizeof (struct elf64_ia64_vms_obj_tdata), IA64_ELF_DATA);
5429 /* Size-dependent data and functions. */
5430 static const struct elf_size_info elf64_ia64_vms_size_info = {
5431 sizeof (Elf64_External_VMS_Ehdr),
5432 sizeof (Elf64_External_Phdr),
5433 sizeof (Elf64_External_Shdr),
5434 sizeof (Elf64_External_Rel),
5435 sizeof (Elf64_External_Rela),
5436 sizeof (Elf64_External_Sym),
5437 sizeof (Elf64_External_Dyn),
5438 sizeof (Elf_External_Note),
5441 64, 3, /* ARCH_SIZE, LOG_FILE_ALIGN */
5442 ELFCLASS64, EV_CURRENT,
5443 bfd_elf64_write_out_phdrs,
5444 elf64_vms_write_shdrs_and_ehdr,
5445 bfd_elf64_checksum_contents,
5446 bfd_elf64_write_relocs,
5447 bfd_elf64_swap_symbol_in,
5448 bfd_elf64_swap_symbol_out,
5449 bfd_elf64_slurp_reloc_table,
5450 bfd_elf64_slurp_symbol_table,
5451 bfd_elf64_swap_dyn_in,
5452 bfd_elf64_swap_dyn_out,
5453 bfd_elf64_swap_reloc_in,
5454 bfd_elf64_swap_reloc_out,
5455 bfd_elf64_swap_reloca_in,
5456 bfd_elf64_swap_reloca_out
5459 #define ELF_ARCH bfd_arch_ia64
5460 #define ELF_MACHINE_CODE EM_IA_64
5461 #define ELF_MAXPAGESIZE 0x10000 /* 64KB */
5462 #define ELF_COMMONPAGESIZE 0x200 /* 16KB */
5464 #define elf_backend_section_from_shdr \
5465 elf64_ia64_section_from_shdr
5466 #define elf_backend_section_flags \
5467 elf64_ia64_section_flags
5468 #define elf_backend_fake_sections \
5469 elf64_ia64_fake_sections
5470 #define elf_backend_final_write_processing \
5471 elf64_ia64_final_write_processing
5472 #define elf_backend_add_symbol_hook \
5473 elf64_ia64_add_symbol_hook
5474 #define elf_info_to_howto \
5475 elf64_ia64_info_to_howto
5477 #define bfd_elf64_bfd_reloc_type_lookup \
5478 ia64_elf_reloc_type_lookup
5479 #define bfd_elf64_bfd_reloc_name_lookup \
5480 ia64_elf_reloc_name_lookup
5481 #define bfd_elf64_bfd_is_local_label_name \
5482 elf64_ia64_is_local_label_name
5483 #define bfd_elf64_bfd_relax_section \
5484 elf64_ia64_relax_section
5486 #define elf_backend_object_p \
5489 /* Stuff for the BFD linker: */
5490 #define bfd_elf64_bfd_link_hash_table_create \
5491 elf64_ia64_hash_table_create
5492 #define elf_backend_create_dynamic_sections \
5493 elf64_ia64_create_dynamic_sections
5494 #define elf_backend_check_relocs \
5495 elf64_ia64_check_relocs
5496 #define elf_backend_adjust_dynamic_symbol \
5497 elf64_ia64_adjust_dynamic_symbol
5498 #define elf_backend_size_dynamic_sections \
5499 elf64_ia64_size_dynamic_sections
5500 #define elf_backend_omit_section_dynsym \
5501 _bfd_elf_omit_section_dynsym_all
5502 #define elf_backend_relocate_section \
5503 elf64_ia64_relocate_section
5504 #define elf_backend_finish_dynamic_symbol \
5505 elf64_ia64_finish_dynamic_symbol
5506 #define elf_backend_finish_dynamic_sections \
5507 elf64_ia64_finish_dynamic_sections
5508 #define bfd_elf64_bfd_final_link \
5509 elf64_ia64_final_link
5511 #define bfd_elf64_bfd_merge_private_bfd_data \
5512 elf64_ia64_merge_private_bfd_data
5513 #define bfd_elf64_bfd_set_private_flags \
5514 elf64_ia64_set_private_flags
5515 #define bfd_elf64_bfd_print_private_bfd_data \
5516 elf64_ia64_print_private_bfd_data
5518 #define elf_backend_plt_readonly 1
5519 #define elf_backend_want_plt_sym 0
5520 #define elf_backend_plt_alignment 5
5521 #define elf_backend_got_header_size 0
5522 #define elf_backend_want_got_plt 1
5523 #define elf_backend_may_use_rel_p 1
5524 #define elf_backend_may_use_rela_p 1
5525 #define elf_backend_default_use_rela_p 1
5526 #define elf_backend_want_dynbss 0
5527 #define elf_backend_hide_symbol elf64_ia64_hash_hide_symbol
5528 #define elf_backend_fixup_symbol _bfd_elf_link_hash_fixup_symbol
5529 #define elf_backend_reloc_type_class elf64_ia64_reloc_type_class
5530 #define elf_backend_rela_normal 1
5531 #define elf_backend_special_sections elf64_ia64_special_sections
5532 #define elf_backend_default_execstack 0
5534 /* FIXME: PR 290: The Intel C compiler generates SHT_IA_64_UNWIND with
5535 SHF_LINK_ORDER. But it doesn't set the sh_link or sh_info fields.
5536 We don't want to flood users with so many error messages. We turn
5537 off the warning for now. It will be turned on later when the Intel
5538 compiler is fixed. */
5539 #define elf_backend_link_order_error_handler NULL
5541 /* VMS-specific vectors. */
5543 #undef TARGET_LITTLE_SYM
5544 #define TARGET_LITTLE_SYM ia64_elf64_vms_vec
5545 #undef TARGET_LITTLE_NAME
5546 #define TARGET_LITTLE_NAME "elf64-ia64-vms"
5547 #undef TARGET_BIG_SYM
5548 #undef TARGET_BIG_NAME
5550 /* These are VMS specific functions. */
5552 #undef elf_backend_object_p
5553 #define elf_backend_object_p elf64_vms_object_p
5555 #undef elf_backend_section_from_shdr
5556 #define elf_backend_section_from_shdr elf64_vms_section_from_shdr
5558 #undef elf_backend_post_process_headers
5559 #define elf_backend_post_process_headers elf64_vms_post_process_headers
5561 #undef elf_backend_section_processing
5562 #define elf_backend_section_processing elf64_vms_section_processing
5564 #undef elf_backend_final_write_processing
5565 #define elf_backend_final_write_processing elf64_vms_final_write_processing
5567 #undef bfd_elf64_close_and_cleanup
5568 #define bfd_elf64_close_and_cleanup elf64_vms_close_and_cleanup
5570 #undef elf_backend_section_from_bfd_section
5572 #undef elf_backend_symbol_processing
5574 #undef elf_backend_want_p_paddr_set_to_zero
5577 #define ELF_OSABI ELFOSABI_OPENVMS
5579 #undef ELF_MAXPAGESIZE
5580 #define ELF_MAXPAGESIZE 0x10000 /* 64KB */
5583 #define elf64_bed elf64_ia64_vms_bed
5585 #define elf_backend_size_info elf64_ia64_vms_size_info
5587 /* Use VMS-style archives (in particular, don't use the standard coff
5589 #define bfd_elf64_archive_functions
5591 #undef bfd_elf64_archive_p
5592 #define bfd_elf64_archive_p _bfd_vms_lib_ia64_archive_p
5593 #undef bfd_elf64_write_archive_contents
5594 #define bfd_elf64_write_archive_contents _bfd_vms_lib_write_archive_contents
5595 #undef bfd_elf64_mkarchive
5596 #define bfd_elf64_mkarchive _bfd_vms_lib_ia64_mkarchive
5598 #define bfd_elf64_archive_slurp_armap \
5599 _bfd_vms_lib_slurp_armap
5600 #define bfd_elf64_archive_slurp_extended_name_table \
5601 _bfd_vms_lib_slurp_extended_name_table
5602 #define bfd_elf64_archive_construct_extended_name_table \
5603 _bfd_vms_lib_construct_extended_name_table
5604 #define bfd_elf64_archive_truncate_arname \
5605 _bfd_vms_lib_truncate_arname
5606 #define bfd_elf64_archive_write_armap \
5607 _bfd_vms_lib_write_armap
5608 #define bfd_elf64_archive_read_ar_hdr \
5609 _bfd_vms_lib_read_ar_hdr
5610 #define bfd_elf64_archive_write_ar_hdr \
5611 _bfd_vms_lib_write_ar_hdr
5612 #define bfd_elf64_archive_openr_next_archived_file \
5613 _bfd_vms_lib_openr_next_archived_file
5614 #define bfd_elf64_archive_get_elt_at_index \
5615 _bfd_vms_lib_get_elt_at_index
5616 #define bfd_elf64_archive_generic_stat_arch_elt \
5617 _bfd_vms_lib_generic_stat_arch_elt
5618 #define bfd_elf64_archive_update_armap_timestamp \
5619 _bfd_vms_lib_update_armap_timestamp
5621 /* VMS link methods. */
5622 #undef bfd_elf64_bfd_link_add_symbols
5623 #define bfd_elf64_bfd_link_add_symbols elf64_vms_bfd_link_add_symbols
5625 #undef elf_backend_want_got_sym
5626 #define elf_backend_want_got_sym 0
5628 #undef bfd_elf64_mkobject
5629 #define bfd_elf64_mkobject elf64_ia64_vms_mkobject
5631 /* Redefine to align segments on block size. */
5632 #undef ELF_MAXPAGESIZE
5633 #define ELF_MAXPAGESIZE 0x200 /* 512B */
5635 #undef elf_backend_want_got_plt
5636 #define elf_backend_want_got_plt 0
5638 #include "elf64-target.h"