Add translations for various sub-directories
[binutils-gdb.git] / bfd / elfnn-ia64.c
blob36ccfef02914edefaabb7d44bf08187b8a421488
1 /* IA-64 support for 64-bit ELF
2 Copyright (C) 1998-2025 Free Software Foundation, Inc.
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
22 #include "sysdep.h"
23 #include "bfd.h"
24 #include "libbfd.h"
25 #include "elf-bfd.h"
26 #include "opcode/ia64.h"
27 #include "elf/ia64.h"
28 #include "objalloc.h"
29 #include "hashtab.h"
30 #include "elfxx-ia64.h"
32 #define ARCH_SIZE NN
34 #if ARCH_SIZE == 64
35 #define LOG_SECTION_ALIGN 3
36 #endif
38 #if ARCH_SIZE == 32
39 #define LOG_SECTION_ALIGN 2
40 #endif
42 #define is_ia64_elf(bfd) \
43 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
44 && elf_object_id (bfd) == IA64_ELF_DATA)
46 typedef struct bfd_hash_entry *(*new_hash_entry_func)
47 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
49 /* In dynamically (linker-) created sections, we generally need to keep track
50 of the place a symbol or expression got allocated to. This is done via hash
51 tables that store entries of the following type. */
53 struct elfNN_ia64_dyn_sym_info
55 /* The addend for which this entry is relevant. */
56 bfd_vma addend;
58 bfd_vma got_offset;
59 bfd_vma fptr_offset;
60 bfd_vma pltoff_offset;
61 bfd_vma plt_offset;
62 bfd_vma plt2_offset;
63 bfd_vma tprel_offset;
64 bfd_vma dtpmod_offset;
65 bfd_vma dtprel_offset;
67 /* The symbol table entry, if any, that this was derived from. */
68 struct elf_link_hash_entry *h;
70 /* Used to count non-got, non-plt relocations for delayed sizing
71 of relocation sections. */
72 struct elfNN_ia64_dyn_reloc_entry
74 struct elfNN_ia64_dyn_reloc_entry *next;
75 asection *srel;
76 int type;
77 int count;
79 /* Is this reloc against readonly section? */
80 bool reltext;
81 } *reloc_entries;
83 /* TRUE when the section contents have been updated. */
84 unsigned got_done : 1;
85 unsigned fptr_done : 1;
86 unsigned pltoff_done : 1;
87 unsigned tprel_done : 1;
88 unsigned dtpmod_done : 1;
89 unsigned dtprel_done : 1;
91 /* TRUE for the different kinds of linker data we want created. */
92 unsigned want_got : 1;
93 unsigned want_gotx : 1;
94 unsigned want_fptr : 1;
95 unsigned want_ltoff_fptr : 1;
96 unsigned want_plt : 1;
97 unsigned want_plt2 : 1;
98 unsigned want_pltoff : 1;
99 unsigned want_tprel : 1;
100 unsigned want_dtpmod : 1;
101 unsigned want_dtprel : 1;
104 struct elfNN_ia64_local_hash_entry
106 int id;
107 unsigned int r_sym;
108 /* The number of elements in elfNN_ia64_dyn_sym_info array. */
109 unsigned int count;
110 /* The number of sorted elements in elfNN_ia64_dyn_sym_info array. */
111 unsigned int sorted_count;
112 /* The size of elfNN_ia64_dyn_sym_info array. */
113 unsigned int size;
114 /* The array of elfNN_ia64_dyn_sym_info. */
115 struct elfNN_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 elfNN_ia64_link_hash_entry
124 struct elf_link_hash_entry root;
125 /* The number of elements in elfNN_ia64_dyn_sym_info array. */
126 unsigned int count;
127 /* The number of sorted elements in elfNN_ia64_dyn_sym_info array. */
128 unsigned int sorted_count;
129 /* The size of elfNN_ia64_dyn_sym_info array. */
130 unsigned int size;
131 /* The array of elfNN_ia64_dyn_sym_info. */
132 struct elfNN_ia64_dyn_sym_info *info;
135 struct elfNN_ia64_link_hash_table
137 /* The main hash table. */
138 struct elf_link_hash_table root;
140 asection *fptr_sec; /* Function descriptor table (or NULL). */
141 asection *rel_fptr_sec; /* Dynamic relocation section for same. */
142 asection *pltoff_sec; /* Private descriptors for plt (or NULL). */
143 asection *rel_pltoff_sec; /* Dynamic relocation section for same. */
145 bfd_size_type minplt_entries; /* Number of minplt entries. */
146 unsigned self_dtpmod_done : 1;/* Has self DTPMOD entry been finished? */
147 bfd_vma self_dtpmod_offset; /* .got offset to self DTPMOD entry. */
148 /* There are maybe R_IA64_GPREL22 relocations, including those
149 optimized from R_IA64_LTOFF22X, against non-SHF_IA_64_SHORT
150 sections. We need to record those sections so that we can choose
151 a proper GP to cover all R_IA64_GPREL22 relocations. */
152 asection *max_short_sec; /* Maximum short output section. */
153 bfd_vma max_short_offset; /* Maximum short offset. */
154 asection *min_short_sec; /* Minimum short output section. */
155 bfd_vma min_short_offset; /* Minimum short offset. */
157 htab_t loc_hash_table;
158 void *loc_hash_memory;
161 struct elfNN_ia64_allocate_data
163 struct bfd_link_info *info;
164 bfd_size_type ofs;
165 bool only_got;
168 #define elfNN_ia64_hash_table(p) \
169 ((is_elf_hash_table ((p)->hash) \
170 && elf_hash_table_id (elf_hash_table (p)) == IA64_ELF_DATA) \
171 ? (struct elfNN_ia64_link_hash_table *) (p)->hash : NULL)
173 static struct elfNN_ia64_dyn_sym_info * get_dyn_sym_info
174 (struct elfNN_ia64_link_hash_table *ia64_info,
175 struct elf_link_hash_entry *h,
176 bfd *abfd, const Elf_Internal_Rela *rel, bool create);
177 static bool elfNN_ia64_dynamic_symbol_p
178 (struct elf_link_hash_entry *h, struct bfd_link_info *info, int);
179 static bool elfNN_ia64_choose_gp
180 (bfd *abfd, struct bfd_link_info *info, bool final);
181 static void elfNN_ia64_dyn_sym_traverse
182 (struct elfNN_ia64_link_hash_table *ia64_info,
183 bool (*func) (struct elfNN_ia64_dyn_sym_info *, void *),
184 void * info);
185 static bool allocate_global_data_got
186 (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data);
187 static bool allocate_global_fptr_got
188 (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data);
189 static bool allocate_local_got
190 (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data);
191 static bool elfNN_ia64_hpux_vec
192 (const bfd_target *vec);
193 static bool allocate_dynrel_entries
194 (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data);
195 static asection *get_pltoff
196 (bfd *abfd, struct bfd_link_info *info,
197 struct elfNN_ia64_link_hash_table *ia64_info);
199 /* ia64-specific relocation. */
201 /* Given a ELF reloc, return the matching HOWTO structure. */
203 static bool
204 elfNN_ia64_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
205 arelent *bfd_reloc,
206 Elf_Internal_Rela *elf_reloc)
208 unsigned int r_type = ELF32_R_TYPE (elf_reloc->r_info);
210 bfd_reloc->howto = ia64_elf_lookup_howto (r_type);
211 if (bfd_reloc->howto == NULL)
213 /* xgettext:c-format */
214 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
215 abfd, r_type);
216 bfd_set_error (bfd_error_bad_value);
217 return false;
220 return true;
223 #define PLT_HEADER_SIZE (3 * 16)
224 #define PLT_MIN_ENTRY_SIZE (1 * 16)
225 #define PLT_FULL_ENTRY_SIZE (2 * 16)
226 #define PLT_RESERVED_WORDS 3
228 static const bfd_byte plt_header[PLT_HEADER_SIZE] =
230 0x0b, 0x10, 0x00, 0x1c, 0x00, 0x21, /* [MMI] mov r2=r14;; */
231 0xe0, 0x00, 0x08, 0x00, 0x48, 0x00, /* addl r14=0,r2 */
232 0x00, 0x00, 0x04, 0x00, /* nop.i 0x0;; */
233 0x0b, 0x80, 0x20, 0x1c, 0x18, 0x14, /* [MMI] ld8 r16=[r14],8;; */
234 0x10, 0x41, 0x38, 0x30, 0x28, 0x00, /* ld8 r17=[r14],8 */
235 0x00, 0x00, 0x04, 0x00, /* nop.i 0x0;; */
236 0x11, 0x08, 0x00, 0x1c, 0x18, 0x10, /* [MIB] ld8 r1=[r14] */
237 0x60, 0x88, 0x04, 0x80, 0x03, 0x00, /* mov b6=r17 */
238 0x60, 0x00, 0x80, 0x00 /* br.few b6;; */
241 static const bfd_byte plt_min_entry[PLT_MIN_ENTRY_SIZE] =
243 0x11, 0x78, 0x00, 0x00, 0x00, 0x24, /* [MIB] mov r15=0 */
244 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, /* nop.i 0x0 */
245 0x00, 0x00, 0x00, 0x40 /* br.few 0 <PLT0>;; */
248 static const bfd_byte plt_full_entry[PLT_FULL_ENTRY_SIZE] =
250 0x0b, 0x78, 0x00, 0x02, 0x00, 0x24, /* [MMI] addl r15=0,r1;; */
251 0x00, 0x41, 0x3c, 0x70, 0x29, 0xc0, /* ld8.acq r16=[r15],8*/
252 0x01, 0x08, 0x00, 0x84, /* mov r14=r1;; */
253 0x11, 0x08, 0x00, 0x1e, 0x18, 0x10, /* [MIB] ld8 r1=[r15] */
254 0x60, 0x80, 0x04, 0x80, 0x03, 0x00, /* mov b6=r16 */
255 0x60, 0x00, 0x80, 0x00 /* br.few b6;; */
258 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
260 static const bfd_byte oor_brl[16] =
262 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MLX] nop.m 0 */
263 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* brl.sptk.few tgt;; */
264 0x00, 0x00, 0x00, 0xc0
267 static const bfd_byte oor_ip[48] =
269 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MLX] nop.m 0 */
270 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, /* movl r15=0 */
271 0x01, 0x00, 0x00, 0x60,
272 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MII] nop.m 0 */
273 0x00, 0x01, 0x00, 0x60, 0x00, 0x00, /* mov r16=ip;; */
274 0xf2, 0x80, 0x00, 0x80, /* add r16=r15,r16;; */
275 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MIB] nop.m 0 */
276 0x60, 0x80, 0x04, 0x80, 0x03, 0x00, /* mov b6=r16 */
277 0x60, 0x00, 0x80, 0x00 /* br b6;; */
280 static size_t oor_branch_size = sizeof (oor_brl);
282 void
283 bfd_elfNN_ia64_after_parse (int itanium)
285 oor_branch_size = itanium ? sizeof (oor_ip) : sizeof (oor_brl);
289 /* Rename some of the generic section flags to better document how they
290 are used here. */
291 #define skip_relax_pass_0 sec_flg0
292 #define skip_relax_pass_1 sec_flg1
294 /* These functions do relaxation for IA-64 ELF. */
296 static void
297 elfNN_ia64_update_short_info (asection *sec, bfd_vma offset,
298 struct elfNN_ia64_link_hash_table *ia64_info)
300 /* Skip ABS and SHF_IA_64_SHORT sections. */
301 if (sec == bfd_abs_section_ptr
302 || (sec->flags & SEC_SMALL_DATA) != 0)
303 return;
305 if (!ia64_info->min_short_sec)
307 ia64_info->max_short_sec = sec;
308 ia64_info->max_short_offset = offset;
309 ia64_info->min_short_sec = sec;
310 ia64_info->min_short_offset = offset;
312 else if (sec == ia64_info->max_short_sec
313 && offset > ia64_info->max_short_offset)
314 ia64_info->max_short_offset = offset;
315 else if (sec == ia64_info->min_short_sec
316 && offset < ia64_info->min_short_offset)
317 ia64_info->min_short_offset = offset;
318 else if (sec->output_section->vma
319 > ia64_info->max_short_sec->vma)
321 ia64_info->max_short_sec = sec;
322 ia64_info->max_short_offset = offset;
324 else if (sec->output_section->vma
325 < ia64_info->min_short_sec->vma)
327 ia64_info->min_short_sec = sec;
328 ia64_info->min_short_offset = offset;
332 static bool
333 elfNN_ia64_relax_section (bfd *abfd, asection *sec,
334 struct bfd_link_info *link_info,
335 bool *again)
337 struct one_fixup
339 struct one_fixup *next;
340 asection *tsec;
341 bfd_vma toff;
342 bfd_vma trampoff;
345 Elf_Internal_Shdr *symtab_hdr;
346 Elf_Internal_Rela *internal_relocs;
347 Elf_Internal_Rela *irel, *irelend;
348 bfd_byte *contents;
349 Elf_Internal_Sym *isymbuf = NULL;
350 struct elfNN_ia64_link_hash_table *ia64_info;
351 struct one_fixup *fixups = NULL;
352 bool changed_contents = false;
353 bool changed_relocs = false;
354 bool changed_got = false;
355 bool skip_relax_pass_0 = true;
356 bool skip_relax_pass_1 = true;
357 bfd_vma gp = 0;
359 /* Assume we're not going to change any sizes, and we'll only need
360 one pass. */
361 *again = false;
363 if (bfd_link_relocatable (link_info))
364 (*link_info->callbacks->einfo)
365 (_("%P%F: --relax and -r may not be used together\n"));
367 /* Don't even try to relax for non-ELF outputs. */
368 if (!is_elf_hash_table (link_info->hash))
369 return false;
371 /* Nothing to do if there are no relocations or there is no need for
372 the current pass. */
373 if (sec->reloc_count == 0
374 || (sec->flags & SEC_RELOC) == 0
375 || (sec->flags & SEC_HAS_CONTENTS) == 0
376 || (link_info->relax_pass == 0 && sec->skip_relax_pass_0)
377 || (link_info->relax_pass == 1 && sec->skip_relax_pass_1))
378 return true;
380 ia64_info = elfNN_ia64_hash_table (link_info);
381 if (ia64_info == NULL)
382 return false;
384 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
386 /* Load the relocations for this section. */
387 internal_relocs = (_bfd_elf_link_read_relocs
388 (abfd, sec, NULL, (Elf_Internal_Rela *) NULL,
389 link_info->keep_memory));
390 if (internal_relocs == NULL)
391 return false;
393 irelend = internal_relocs + sec->reloc_count;
395 /* Get the section contents. */
396 if (elf_section_data (sec)->this_hdr.contents != NULL)
397 contents = elf_section_data (sec)->this_hdr.contents;
398 else
400 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
401 goto error_return;
404 for (irel = internal_relocs; irel < irelend; irel++)
406 unsigned long r_type = ELFNN_R_TYPE (irel->r_info);
407 bfd_vma symaddr, reladdr, trampoff, toff, roff;
408 asection *tsec;
409 struct one_fixup *f;
410 bfd_size_type amt;
411 bool is_branch;
412 struct elfNN_ia64_dyn_sym_info *dyn_i;
413 char symtype;
415 switch (r_type)
417 case R_IA64_PCREL21B:
418 case R_IA64_PCREL21BI:
419 case R_IA64_PCREL21M:
420 case R_IA64_PCREL21F:
421 /* In pass 1, all br relaxations are done. We can skip it. */
422 if (link_info->relax_pass == 1)
423 continue;
424 skip_relax_pass_0 = false;
425 is_branch = true;
426 break;
428 case R_IA64_PCREL60B:
429 /* We can't optimize brl to br in pass 0 since br relaxations
430 will increase the code size. Defer it to pass 1. */
431 if (link_info->relax_pass == 0)
433 skip_relax_pass_1 = false;
434 continue;
436 is_branch = true;
437 break;
439 case R_IA64_GPREL22:
440 /* Update max_short_sec/min_short_sec. */
442 case R_IA64_LTOFF22X:
443 case R_IA64_LDXMOV:
444 /* We can't relax ldx/mov in pass 0 since br relaxations will
445 increase the code size. Defer it to pass 1. */
446 if (link_info->relax_pass == 0)
448 skip_relax_pass_1 = false;
449 continue;
451 is_branch = false;
452 break;
454 default:
455 continue;
458 /* Get the value of the symbol referred to by the reloc. */
459 if (ELFNN_R_SYM (irel->r_info) < symtab_hdr->sh_info)
461 /* A local symbol. */
462 Elf_Internal_Sym *isym;
464 /* Read this BFD's local symbols. */
465 if (isymbuf == NULL)
467 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
468 if (isymbuf == NULL)
469 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
470 symtab_hdr->sh_info, 0,
471 NULL, NULL, NULL);
472 if (isymbuf == 0)
473 goto error_return;
476 isym = isymbuf + ELFNN_R_SYM (irel->r_info);
477 if (isym->st_shndx == SHN_UNDEF)
478 continue; /* We can't do anything with undefined symbols. */
479 else if (isym->st_shndx == SHN_ABS)
480 tsec = bfd_abs_section_ptr;
481 else if (isym->st_shndx == SHN_COMMON)
482 tsec = bfd_com_section_ptr;
483 else if (isym->st_shndx == SHN_IA_64_ANSI_COMMON)
484 tsec = bfd_com_section_ptr;
485 else
486 tsec = bfd_section_from_elf_index (abfd, isym->st_shndx);
488 toff = isym->st_value;
489 dyn_i = get_dyn_sym_info (ia64_info, NULL, abfd, irel, false);
490 symtype = ELF_ST_TYPE (isym->st_info);
492 else
494 unsigned long indx;
495 struct elf_link_hash_entry *h;
497 indx = ELFNN_R_SYM (irel->r_info) - symtab_hdr->sh_info;
498 h = elf_sym_hashes (abfd)[indx];
499 BFD_ASSERT (h != NULL);
501 while (h->root.type == bfd_link_hash_indirect
502 || h->root.type == bfd_link_hash_warning)
503 h = (struct elf_link_hash_entry *) h->root.u.i.link;
505 dyn_i = get_dyn_sym_info (ia64_info, h, abfd, irel, false);
507 /* For branches to dynamic symbols, we're interested instead
508 in a branch to the PLT entry. */
509 if (is_branch && dyn_i && dyn_i->want_plt2)
511 /* Internal branches shouldn't be sent to the PLT.
512 Leave this for now and we'll give an error later. */
513 if (r_type != R_IA64_PCREL21B)
514 continue;
516 tsec = ia64_info->root.splt;
517 toff = dyn_i->plt2_offset;
518 BFD_ASSERT (irel->r_addend == 0);
521 /* Can't do anything else with dynamic symbols. */
522 else if (elfNN_ia64_dynamic_symbol_p (h, link_info, r_type))
523 continue;
525 else
527 /* We can't do anything with undefined symbols. */
528 if (h->root.type == bfd_link_hash_undefined
529 || h->root.type == bfd_link_hash_undefweak)
530 continue;
532 tsec = h->root.u.def.section;
533 toff = h->root.u.def.value;
536 symtype = h->type;
539 if (tsec->sec_info_type == SEC_INFO_TYPE_MERGE)
541 /* At this stage in linking, no SEC_MERGE symbol has been
542 adjusted, so all references to such symbols need to be
543 passed through _bfd_merged_section_offset. (Later, in
544 relocate_section, all SEC_MERGE symbols *except* for
545 section symbols have been adjusted.)
547 gas may reduce relocations against symbols in SEC_MERGE
548 sections to a relocation against the section symbol when
549 the original addend was zero. When the reloc is against
550 a section symbol we should include the addend in the
551 offset passed to _bfd_merged_section_offset, since the
552 location of interest is the original symbol. On the
553 other hand, an access to "sym+addend" where "sym" is not
554 a section symbol should not include the addend; Such an
555 access is presumed to be an offset from "sym"; The
556 location of interest is just "sym". */
557 if (symtype == STT_SECTION)
558 toff += irel->r_addend;
560 toff = _bfd_merged_section_offset (abfd, &tsec,
561 elf_section_data (tsec)->sec_info,
562 toff);
564 if (symtype != STT_SECTION)
565 toff += irel->r_addend;
567 else
568 toff += irel->r_addend;
570 symaddr = tsec->output_section->vma + tsec->output_offset + toff;
572 roff = irel->r_offset;
574 if (is_branch)
576 bfd_signed_vma offset;
578 reladdr = (sec->output_section->vma
579 + sec->output_offset
580 + roff) & (bfd_vma) -4;
582 /* The .plt section is aligned at 32byte and the .text section
583 is aligned at 64byte. The .text section is right after the
584 .plt section. After the first relaxation pass, linker may
585 increase the gap between the .plt and .text sections up
586 to 32byte. We assume linker will always insert 32byte
587 between the .plt and .text sections after the first
588 relaxation pass. */
589 if (tsec == ia64_info->root.splt)
590 offset = -0x1000000 + 32;
591 else
592 offset = -0x1000000;
594 /* If the branch is in range, no need to do anything. */
595 if ((bfd_signed_vma) (symaddr - reladdr) >= offset
596 && (bfd_signed_vma) (symaddr - reladdr) <= 0x0FFFFF0)
598 /* If the 60-bit branch is in 21-bit range, optimize it. */
599 if (r_type == R_IA64_PCREL60B)
601 ia64_elf_relax_brl (contents, roff);
603 irel->r_info
604 = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
605 R_IA64_PCREL21B);
607 /* If the original relocation offset points to slot
608 1, change it to slot 2. */
609 if ((irel->r_offset & 3) == 1)
610 irel->r_offset += 1;
612 changed_contents = true;
613 changed_relocs = true;
616 continue;
618 else if (r_type == R_IA64_PCREL60B)
619 continue;
620 else if (ia64_elf_relax_br (contents, roff))
622 irel->r_info
623 = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
624 R_IA64_PCREL60B);
626 /* Make the relocation offset point to slot 1. */
627 irel->r_offset = (irel->r_offset & ~((bfd_vma) 0x3)) + 1;
629 changed_contents = true;
630 changed_relocs = true;
631 continue;
634 /* We can't put a trampoline in a .init/.fini section. Issue
635 an error. */
636 if (strcmp (sec->output_section->name, ".init") == 0
637 || strcmp (sec->output_section->name, ".fini") == 0)
639 _bfd_error_handler
640 /* xgettext:c-format */
641 (_("%pB: can't relax br at %#" PRIx64 " in section `%pA';"
642 " please use brl or indirect branch"),
643 sec->owner, (uint64_t) roff, sec);
644 bfd_set_error (bfd_error_bad_value);
645 goto error_return;
648 /* If the branch and target are in the same section, you've
649 got one honking big section and we can't help you unless
650 you are branching backwards. You'll get an error message
651 later. */
652 if (tsec == sec && toff > roff)
653 continue;
655 /* Look for an existing fixup to this address. */
656 for (f = fixups; f ; f = f->next)
657 if (f->tsec == tsec && f->toff == toff)
658 break;
660 if (f == NULL)
662 /* Two alternatives: If it's a branch to a PLT entry, we can
663 make a copy of the FULL_PLT entry. Otherwise, we'll have
664 to use a `brl' insn to get where we're going. */
666 size_t size;
668 if (tsec == ia64_info->root.splt)
669 size = sizeof (plt_full_entry);
670 else
671 size = oor_branch_size;
673 /* Resize the current section to make room for the new branch. */
674 trampoff = (sec->size + 15) & (bfd_vma) -16;
676 /* If trampoline is out of range, there is nothing we
677 can do. */
678 offset = trampoff - (roff & (bfd_vma) -4);
679 if (offset < -0x1000000 || offset > 0x0FFFFF0)
680 continue;
682 amt = trampoff + size;
683 contents = (bfd_byte *) bfd_realloc (contents, amt);
684 if (contents == NULL)
685 goto error_return;
686 sec->size = amt;
688 if (tsec == ia64_info->root.splt)
690 memcpy (contents + trampoff, plt_full_entry, size);
692 /* Hijack the old relocation for use as the PLTOFF reloc. */
693 irel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
694 R_IA64_PLTOFF22);
695 irel->r_offset = trampoff;
697 else
699 if (size == sizeof (oor_ip))
701 memcpy (contents + trampoff, oor_ip, size);
702 irel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
703 R_IA64_PCREL64I);
704 irel->r_addend -= 16;
705 irel->r_offset = trampoff + 2;
707 else
709 memcpy (contents + trampoff, oor_brl, size);
710 irel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
711 R_IA64_PCREL60B);
712 irel->r_offset = trampoff + 2;
717 /* Record the fixup so we don't do it again this section. */
718 f = (struct one_fixup *)
719 bfd_malloc ((bfd_size_type) sizeof (*f));
720 f->next = fixups;
721 f->tsec = tsec;
722 f->toff = toff;
723 f->trampoff = trampoff;
724 fixups = f;
726 else
728 /* If trampoline is out of range, there is nothing we
729 can do. */
730 offset = f->trampoff - (roff & (bfd_vma) -4);
731 if (offset < -0x1000000 || offset > 0x0FFFFF0)
732 continue;
734 /* Nop out the reloc, since we're finalizing things here. */
735 irel->r_info = ELFNN_R_INFO (0, R_IA64_NONE);
738 /* Fix up the existing branch to hit the trampoline. */
739 if (ia64_elf_install_value (contents + roff, offset, r_type)
740 != bfd_reloc_ok)
741 goto error_return;
743 changed_contents = true;
744 changed_relocs = true;
746 else
748 /* Fetch the gp. */
749 if (gp == 0)
751 bfd *obfd = sec->output_section->owner;
752 gp = _bfd_get_gp_value (obfd);
753 if (gp == 0)
755 if (!elfNN_ia64_choose_gp (obfd, link_info, false))
756 goto error_return;
757 gp = _bfd_get_gp_value (obfd);
761 /* If the data is out of range, do nothing. */
762 if ((bfd_signed_vma) (symaddr - gp) >= 0x200000
763 ||(bfd_signed_vma) (symaddr - gp) < -0x200000)
764 continue;
766 if (r_type == R_IA64_GPREL22)
767 elfNN_ia64_update_short_info (tsec->output_section,
768 tsec->output_offset + toff,
769 ia64_info);
770 else if (r_type == R_IA64_LTOFF22X)
772 irel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
773 R_IA64_GPREL22);
774 changed_relocs = true;
775 if (dyn_i->want_gotx)
777 dyn_i->want_gotx = 0;
778 changed_got |= !dyn_i->want_got;
781 elfNN_ia64_update_short_info (tsec->output_section,
782 tsec->output_offset + toff,
783 ia64_info);
785 else
787 ia64_elf_relax_ldxmov (contents, roff);
788 irel->r_info = ELFNN_R_INFO (0, R_IA64_NONE);
789 changed_contents = true;
790 changed_relocs = true;
795 /* ??? If we created fixups, this may push the code segment large
796 enough that the data segment moves, which will change the GP.
797 Reset the GP so that we re-calculate next round. We need to
798 do this at the _beginning_ of the next round; now will not do. */
800 /* Clean up and go home. */
801 while (fixups)
803 struct one_fixup *f = fixups;
804 fixups = fixups->next;
805 free (f);
808 if (isymbuf != NULL
809 && symtab_hdr->contents != (unsigned char *) isymbuf)
811 if (! link_info->keep_memory)
812 free (isymbuf);
813 else
815 /* Cache the symbols for elf_link_input_bfd. */
816 symtab_hdr->contents = (unsigned char *) isymbuf;
820 if (contents != NULL
821 && elf_section_data (sec)->this_hdr.contents != contents)
823 if (!changed_contents && !link_info->keep_memory)
824 free (contents);
825 else
827 /* Cache the section contents for elf_link_input_bfd. */
828 elf_section_data (sec)->this_hdr.contents = contents;
832 if (elf_section_data (sec)->relocs != internal_relocs)
834 if (!changed_relocs)
835 free (internal_relocs);
836 else
837 elf_section_data (sec)->relocs = internal_relocs;
840 if (changed_got)
842 struct elfNN_ia64_allocate_data data;
843 data.info = link_info;
844 data.ofs = 0;
845 ia64_info->self_dtpmod_offset = (bfd_vma) -1;
847 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_global_data_got, &data);
848 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_global_fptr_got, &data);
849 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_local_got, &data);
850 ia64_info->root.sgot->size = data.ofs;
852 if (ia64_info->root.dynamic_sections_created
853 && ia64_info->root.srelgot != NULL)
855 /* Resize .rela.got. */
856 ia64_info->root.srelgot->size = 0;
857 if (bfd_link_pic (link_info)
858 && ia64_info->self_dtpmod_offset != (bfd_vma) -1)
859 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
860 data.only_got = true;
861 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_dynrel_entries,
862 &data);
866 if (link_info->relax_pass == 0)
868 /* Pass 0 is only needed to relax br. */
869 sec->skip_relax_pass_0 = skip_relax_pass_0;
870 sec->skip_relax_pass_1 = skip_relax_pass_1;
873 *again = changed_contents || changed_relocs;
874 return true;
876 error_return:
877 if ((unsigned char *) isymbuf != symtab_hdr->contents)
878 free (isymbuf);
879 if (elf_section_data (sec)->this_hdr.contents != contents)
880 free (contents);
881 if (elf_section_data (sec)->relocs != internal_relocs)
882 free (internal_relocs);
883 return false;
885 #undef skip_relax_pass_0
886 #undef skip_relax_pass_1
888 /* Return TRUE if NAME is an unwind table section name. */
890 static inline bool
891 is_unwind_section_name (bfd *abfd, const char *name)
893 if (elfNN_ia64_hpux_vec (abfd->xvec)
894 && !strcmp (name, ELF_STRING_ia64_unwind_hdr))
895 return false;
897 return ((startswith (name, ELF_STRING_ia64_unwind)
898 && ! startswith (name, ELF_STRING_ia64_unwind_info))
899 || startswith (name, ELF_STRING_ia64_unwind_once));
902 /* Handle an IA-64 specific section when reading an object file. This
903 is called when bfd_section_from_shdr finds a section with an unknown
904 type. */
906 static bool
907 elfNN_ia64_section_from_shdr (bfd *abfd,
908 Elf_Internal_Shdr *hdr,
909 const char *name,
910 int shindex)
912 /* There ought to be a place to keep ELF backend specific flags, but
913 at the moment there isn't one. We just keep track of the
914 sections by their name, instead. Fortunately, the ABI gives
915 suggested names for all the MIPS specific sections, so we will
916 probably get away with this. */
917 switch (hdr->sh_type)
919 case SHT_IA_64_UNWIND:
920 case SHT_IA_64_HP_OPT_ANOT:
921 break;
923 case SHT_IA_64_EXT:
924 if (strcmp (name, ELF_STRING_ia64_archext) != 0)
925 return false;
926 break;
928 default:
929 return false;
932 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
933 return false;
935 return true;
938 /* Convert IA-64 specific section flags to bfd internal section flags. */
940 /* ??? There is no bfd internal flag equivalent to the SHF_IA_64_NORECOV
941 flag. */
943 static bool
944 elfNN_ia64_section_flags (const Elf_Internal_Shdr *hdr)
946 if (hdr->sh_flags & SHF_IA_64_SHORT)
947 hdr->bfd_section->flags |= SEC_SMALL_DATA;
949 return true;
952 /* Set the correct type for an IA-64 ELF section. We do this by the
953 section name, which is a hack, but ought to work. */
955 static bool
956 elfNN_ia64_fake_sections (bfd *abfd, Elf_Internal_Shdr *hdr,
957 asection *sec)
959 const char *name;
961 name = bfd_section_name (sec);
963 if (is_unwind_section_name (abfd, name))
965 /* We don't have the sections numbered at this point, so sh_info
966 is set later, in elfNN_ia64_final_write_processing. */
967 hdr->sh_type = SHT_IA_64_UNWIND;
968 hdr->sh_flags |= SHF_LINK_ORDER;
970 else if (strcmp (name, ELF_STRING_ia64_archext) == 0)
971 hdr->sh_type = SHT_IA_64_EXT;
972 else if (strcmp (name, ".HP.opt_annot") == 0)
973 hdr->sh_type = SHT_IA_64_HP_OPT_ANOT;
974 else if (strcmp (name, ".reloc") == 0)
975 /* This is an ugly, but unfortunately necessary hack that is
976 needed when producing EFI binaries on IA-64. It tells
977 elf.c:elf_fake_sections() not to consider ".reloc" as a section
978 containing ELF relocation info. We need this hack in order to
979 be able to generate ELF binaries that can be translated into
980 EFI applications (which are essentially COFF objects). Those
981 files contain a COFF ".reloc" section inside an ELFNN object,
982 which would normally cause BFD to segfault because it would
983 attempt to interpret this section as containing relocation
984 entries for section "oc". With this hack enabled, ".reloc"
985 will be treated as a normal data section, which will avoid the
986 segfault. However, you won't be able to create an ELFNN binary
987 with a section named "oc" that needs relocations, but that's
988 the kind of ugly side-effects you get when detecting section
989 types based on their names... In practice, this limitation is
990 unlikely to bite. */
991 hdr->sh_type = SHT_PROGBITS;
993 if (sec->flags & SEC_SMALL_DATA)
994 hdr->sh_flags |= SHF_IA_64_SHORT;
996 /* Some HP linkers look for the SHF_IA_64_HP_TLS flag instead of SHF_TLS. */
998 if (elfNN_ia64_hpux_vec (abfd->xvec) && (sec->flags & SHF_TLS))
999 hdr->sh_flags |= SHF_IA_64_HP_TLS;
1001 return true;
1004 /* The final processing done just before writing out an IA-64 ELF
1005 object file. */
1007 static bool
1008 elfNN_ia64_final_write_processing (bfd *abfd)
1010 Elf_Internal_Shdr *hdr;
1011 asection *s;
1013 for (s = abfd->sections; s; s = s->next)
1015 hdr = &elf_section_data (s)->this_hdr;
1016 switch (hdr->sh_type)
1018 case SHT_IA_64_UNWIND:
1019 /* The IA-64 processor-specific ABI requires setting sh_link
1020 to the unwind section, whereas HP-UX requires sh_info to
1021 do so. For maximum compatibility, we'll set both for
1022 now... */
1023 hdr->sh_info = hdr->sh_link;
1024 break;
1028 if (! elf_flags_init (abfd))
1030 unsigned long flags = 0;
1032 if (abfd->xvec->byteorder == BFD_ENDIAN_BIG)
1033 flags |= EF_IA_64_BE;
1034 if (bfd_get_mach (abfd) == bfd_mach_ia64_elf64)
1035 flags |= EF_IA_64_ABI64;
1037 elf_elfheader(abfd)->e_flags = flags;
1038 elf_flags_init (abfd) = true;
1040 return _bfd_elf_final_write_processing (abfd);
1043 /* Hook called by the linker routine which adds symbols from an object
1044 file. We use it to put .comm items in .sbss, and not .bss. */
1046 static bool
1047 elfNN_ia64_add_symbol_hook (bfd *abfd,
1048 struct bfd_link_info *info,
1049 Elf_Internal_Sym *sym,
1050 const char **namep ATTRIBUTE_UNUSED,
1051 flagword *flagsp ATTRIBUTE_UNUSED,
1052 asection **secp,
1053 bfd_vma *valp)
1055 if (sym->st_shndx == SHN_COMMON
1056 && !bfd_link_relocatable (info)
1057 && sym->st_size <= elf_gp_size (abfd))
1059 /* Common symbols less than or equal to -G nn bytes are
1060 automatically put into .sbss. */
1062 asection *scomm = bfd_get_section_by_name (abfd, ".scommon");
1064 if (scomm == NULL)
1066 scomm = bfd_make_section_with_flags (abfd, ".scommon",
1067 (SEC_ALLOC
1068 | SEC_IS_COMMON
1069 | SEC_SMALL_DATA
1070 | SEC_LINKER_CREATED));
1071 if (scomm == NULL)
1072 return false;
1075 *secp = scomm;
1076 *valp = sym->st_size;
1079 return true;
1082 /* Return the number of additional phdrs we will need. */
1084 static int
1085 elfNN_ia64_additional_program_headers (bfd *abfd,
1086 struct bfd_link_info *info ATTRIBUTE_UNUSED)
1088 asection *s;
1089 int ret = 0;
1091 /* See if we need a PT_IA_64_ARCHEXT segment. */
1092 s = bfd_get_section_by_name (abfd, ELF_STRING_ia64_archext);
1093 if (s && (s->flags & SEC_LOAD))
1094 ++ret;
1096 /* Count how many PT_IA_64_UNWIND segments we need. */
1097 for (s = abfd->sections; s; s = s->next)
1098 if (is_unwind_section_name (abfd, s->name) && (s->flags & SEC_LOAD))
1099 ++ret;
1101 return ret;
1104 static bool
1105 elfNN_ia64_modify_segment_map (bfd *abfd,
1106 struct bfd_link_info *info ATTRIBUTE_UNUSED)
1108 struct elf_segment_map *m, **pm;
1109 Elf_Internal_Shdr *hdr;
1110 asection *s;
1112 /* If we need a PT_IA_64_ARCHEXT segment, it must come before
1113 all PT_LOAD segments. */
1114 s = bfd_get_section_by_name (abfd, ELF_STRING_ia64_archext);
1115 if (s && (s->flags & SEC_LOAD))
1117 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
1118 if (m->p_type == PT_IA_64_ARCHEXT)
1119 break;
1120 if (m == NULL)
1122 m = ((struct elf_segment_map *)
1123 bfd_zalloc (abfd, (bfd_size_type) sizeof *m));
1124 if (m == NULL)
1125 return false;
1127 m->p_type = PT_IA_64_ARCHEXT;
1128 m->count = 1;
1129 m->sections[0] = s;
1131 /* We want to put it after the PHDR and INTERP segments. */
1132 pm = &elf_seg_map (abfd);
1133 while (*pm != NULL
1134 && ((*pm)->p_type == PT_PHDR
1135 || (*pm)->p_type == PT_INTERP))
1136 pm = &(*pm)->next;
1138 m->next = *pm;
1139 *pm = m;
1143 /* Install PT_IA_64_UNWIND segments, if needed. */
1144 for (s = abfd->sections; s; s = s->next)
1146 hdr = &elf_section_data (s)->this_hdr;
1147 if (hdr->sh_type != SHT_IA_64_UNWIND)
1148 continue;
1150 if (s && (s->flags & SEC_LOAD))
1152 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
1153 if (m->p_type == PT_IA_64_UNWIND)
1155 int i;
1157 /* Look through all sections in the unwind segment
1158 for a match since there may be multiple sections
1159 to a segment. */
1160 for (i = m->count - 1; i >= 0; --i)
1161 if (m->sections[i] == s)
1162 break;
1164 if (i >= 0)
1165 break;
1168 if (m == NULL)
1170 m = ((struct elf_segment_map *)
1171 bfd_zalloc (abfd, (bfd_size_type) sizeof *m));
1172 if (m == NULL)
1173 return false;
1175 m->p_type = PT_IA_64_UNWIND;
1176 m->count = 1;
1177 m->sections[0] = s;
1178 m->next = NULL;
1180 /* We want to put it last. */
1181 pm = &elf_seg_map (abfd);
1182 while (*pm != NULL)
1183 pm = &(*pm)->next;
1184 *pm = m;
1189 return true;
1192 /* Turn on PF_IA_64_NORECOV if needed. This involves traversing all of
1193 the input sections for each output section in the segment and testing
1194 for SHF_IA_64_NORECOV on each. */
1196 static bool
1197 elfNN_ia64_modify_headers (bfd *abfd, struct bfd_link_info *info)
1199 struct elf_obj_tdata *tdata = elf_tdata (abfd);
1200 struct elf_segment_map *m;
1201 Elf_Internal_Phdr *p;
1203 for (p = tdata->phdr, m = elf_seg_map (abfd); m != NULL; m = m->next, p++)
1204 if (m->p_type == PT_LOAD)
1206 int i;
1207 for (i = m->count - 1; i >= 0; --i)
1209 struct bfd_link_order *order = m->sections[i]->map_head.link_order;
1211 while (order != NULL)
1213 if (order->type == bfd_indirect_link_order)
1215 asection *is = order->u.indirect.section;
1216 bfd_vma flags = elf_section_data(is)->this_hdr.sh_flags;
1217 if (flags & SHF_IA_64_NORECOV)
1219 p->p_flags |= PF_IA_64_NORECOV;
1220 goto found;
1223 order = order->next;
1226 found:;
1229 return _bfd_elf_modify_headers (abfd, info);
1232 /* According to the Tahoe assembler spec, all labels starting with a
1233 '.' are local. */
1235 static bool
1236 elfNN_ia64_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
1237 const char *name)
1239 return name[0] == '.';
1242 /* Should we do dynamic things to this symbol? */
1244 static bool
1245 elfNN_ia64_dynamic_symbol_p (struct elf_link_hash_entry *h,
1246 struct bfd_link_info *info, int r_type)
1248 bool ignore_protected
1249 = ((r_type & 0xf8) == 0x40 /* FPTR relocs */
1250 || (r_type & 0xf8) == 0x50); /* LTOFF_FPTR relocs */
1252 return _bfd_elf_dynamic_symbol_p (h, info, ignore_protected);
1255 static struct bfd_hash_entry*
1256 elfNN_ia64_new_elf_hash_entry (struct bfd_hash_entry *entry,
1257 struct bfd_hash_table *table,
1258 const char *string)
1260 struct elfNN_ia64_link_hash_entry *ret;
1261 ret = (struct elfNN_ia64_link_hash_entry *) entry;
1263 /* Allocate the structure if it has not already been allocated by a
1264 subclass. */
1265 if (!ret)
1266 ret = bfd_hash_allocate (table, sizeof (*ret));
1268 if (!ret)
1269 return 0;
1271 /* Call the allocation method of the superclass. */
1272 ret = ((struct elfNN_ia64_link_hash_entry *)
1273 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
1274 table, string));
1276 ret->info = NULL;
1277 ret->count = 0;
1278 ret->sorted_count = 0;
1279 ret->size = 0;
1280 return (struct bfd_hash_entry *) ret;
1283 static void
1284 elfNN_ia64_hash_copy_indirect (struct bfd_link_info *info,
1285 struct elf_link_hash_entry *xdir,
1286 struct elf_link_hash_entry *xind)
1288 struct elfNN_ia64_link_hash_entry *dir, *ind;
1290 dir = (struct elfNN_ia64_link_hash_entry *) xdir;
1291 ind = (struct elfNN_ia64_link_hash_entry *) xind;
1293 /* Copy down any references that we may have already seen to the
1294 symbol which just became indirect. */
1296 if (dir->root.versioned != versioned_hidden)
1297 dir->root.ref_dynamic |= ind->root.ref_dynamic;
1298 dir->root.ref_regular |= ind->root.ref_regular;
1299 dir->root.ref_regular_nonweak |= ind->root.ref_regular_nonweak;
1300 dir->root.needs_plt |= ind->root.needs_plt;
1302 if (ind->root.root.type != bfd_link_hash_indirect)
1303 return;
1305 /* Copy over the got and plt data. This would have been done
1306 by check_relocs. */
1308 if (ind->info != NULL)
1310 struct elfNN_ia64_dyn_sym_info *dyn_i;
1311 unsigned int count;
1313 free (dir->info);
1315 dir->info = ind->info;
1316 dir->count = ind->count;
1317 dir->sorted_count = ind->sorted_count;
1318 dir->size = ind->size;
1320 ind->info = NULL;
1321 ind->count = 0;
1322 ind->sorted_count = 0;
1323 ind->size = 0;
1325 /* Fix up the dyn_sym_info pointers to the global symbol. */
1326 for (count = dir->count, dyn_i = dir->info;
1327 count != 0;
1328 count--, dyn_i++)
1329 dyn_i->h = &dir->root;
1332 /* Copy over the dynindx. */
1334 if (ind->root.dynindx != -1)
1336 if (dir->root.dynindx != -1)
1337 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
1338 dir->root.dynstr_index);
1339 dir->root.dynindx = ind->root.dynindx;
1340 dir->root.dynstr_index = ind->root.dynstr_index;
1341 ind->root.dynindx = -1;
1342 ind->root.dynstr_index = 0;
1346 static void
1347 elfNN_ia64_hash_hide_symbol (struct bfd_link_info *info,
1348 struct elf_link_hash_entry *xh,
1349 bool force_local)
1351 struct elfNN_ia64_link_hash_entry *h;
1352 struct elfNN_ia64_dyn_sym_info *dyn_i;
1353 unsigned int count;
1355 h = (struct elfNN_ia64_link_hash_entry *)xh;
1357 _bfd_elf_link_hash_hide_symbol (info, &h->root, force_local);
1359 for (count = h->count, dyn_i = h->info;
1360 count != 0;
1361 count--, dyn_i++)
1363 dyn_i->want_plt2 = 0;
1364 dyn_i->want_plt = 0;
1368 /* Compute a hash of a local hash entry. */
1370 static hashval_t
1371 elfNN_ia64_local_htab_hash (const void *ptr)
1373 struct elfNN_ia64_local_hash_entry *entry
1374 = (struct elfNN_ia64_local_hash_entry *) ptr;
1376 return ELF_LOCAL_SYMBOL_HASH (entry->id, entry->r_sym);
1379 /* Compare local hash entries. */
1381 static int
1382 elfNN_ia64_local_htab_eq (const void *ptr1, const void *ptr2)
1384 struct elfNN_ia64_local_hash_entry *entry1
1385 = (struct elfNN_ia64_local_hash_entry *) ptr1;
1386 struct elfNN_ia64_local_hash_entry *entry2
1387 = (struct elfNN_ia64_local_hash_entry *) ptr2;
1389 return entry1->id == entry2->id && entry1->r_sym == entry2->r_sym;
1392 /* Free the global elfNN_ia64_dyn_sym_info array. */
1394 static bool
1395 elfNN_ia64_global_dyn_info_free (struct elf_link_hash_entry *xentry,
1396 void *unused ATTRIBUTE_UNUSED)
1398 struct elfNN_ia64_link_hash_entry *entry
1399 = (struct elfNN_ia64_link_hash_entry *) xentry;
1401 free (entry->info);
1402 entry->info = NULL;
1403 entry->count = 0;
1404 entry->sorted_count = 0;
1405 entry->size = 0;
1407 return true;
1410 /* Free the local elfNN_ia64_dyn_sym_info array. */
1412 static int
1413 elfNN_ia64_local_dyn_info_free (void **slot,
1414 void * unused ATTRIBUTE_UNUSED)
1416 struct elfNN_ia64_local_hash_entry *entry
1417 = (struct elfNN_ia64_local_hash_entry *) *slot;
1419 free (entry->info);
1420 entry->info = NULL;
1421 entry->count = 0;
1422 entry->sorted_count = 0;
1423 entry->size = 0;
1425 return true;
1428 /* Destroy IA-64 linker hash table. */
1430 static void
1431 elfNN_ia64_link_hash_table_free (bfd *obfd)
1433 struct elfNN_ia64_link_hash_table *ia64_info
1434 = (struct elfNN_ia64_link_hash_table *) obfd->link.hash;
1435 if (ia64_info->loc_hash_table)
1437 htab_traverse (ia64_info->loc_hash_table,
1438 elfNN_ia64_local_dyn_info_free, NULL);
1439 htab_delete (ia64_info->loc_hash_table);
1441 if (ia64_info->loc_hash_memory)
1442 objalloc_free ((struct objalloc *) ia64_info->loc_hash_memory);
1443 elf_link_hash_traverse (&ia64_info->root,
1444 elfNN_ia64_global_dyn_info_free, NULL);
1445 _bfd_elf_link_hash_table_free (obfd);
1448 /* Create the derived linker hash table. The IA-64 ELF port uses this
1449 derived hash table to keep information specific to the IA-64 ElF
1450 linker (without using static variables). */
1452 static struct bfd_link_hash_table *
1453 elfNN_ia64_hash_table_create (bfd *abfd)
1455 struct elfNN_ia64_link_hash_table *ret;
1457 ret = bfd_zmalloc ((bfd_size_type) sizeof (*ret));
1458 if (!ret)
1459 return NULL;
1461 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
1462 elfNN_ia64_new_elf_hash_entry,
1463 sizeof (struct elfNN_ia64_link_hash_entry)))
1465 free (ret);
1466 return NULL;
1469 ret->loc_hash_table = htab_try_create (1024, elfNN_ia64_local_htab_hash,
1470 elfNN_ia64_local_htab_eq, NULL);
1471 ret->loc_hash_memory = objalloc_create ();
1472 if (!ret->loc_hash_table || !ret->loc_hash_memory)
1474 elfNN_ia64_link_hash_table_free (abfd);
1475 return NULL;
1477 ret->root.root.hash_table_free = elfNN_ia64_link_hash_table_free;
1478 ret->root.dt_pltgot_required = true;
1480 return &ret->root.root;
1483 /* Traverse both local and global hash tables. */
1485 struct elfNN_ia64_dyn_sym_traverse_data
1487 bool (*func) (struct elfNN_ia64_dyn_sym_info *, void *);
1488 void * data;
1491 static bool
1492 elfNN_ia64_global_dyn_sym_thunk (struct elf_link_hash_entry *xentry,
1493 void * xdata)
1495 struct elfNN_ia64_link_hash_entry *entry
1496 = (struct elfNN_ia64_link_hash_entry *) xentry;
1497 struct elfNN_ia64_dyn_sym_traverse_data *data
1498 = (struct elfNN_ia64_dyn_sym_traverse_data *) xdata;
1499 struct elfNN_ia64_dyn_sym_info *dyn_i;
1500 unsigned int count;
1502 for (count = entry->count, dyn_i = entry->info;
1503 count != 0;
1504 count--, dyn_i++)
1505 if (! (*data->func) (dyn_i, data->data))
1506 return false;
1507 return true;
1510 static int
1511 elfNN_ia64_local_dyn_sym_thunk (void **slot, void * xdata)
1513 struct elfNN_ia64_local_hash_entry *entry
1514 = (struct elfNN_ia64_local_hash_entry *) *slot;
1515 struct elfNN_ia64_dyn_sym_traverse_data *data
1516 = (struct elfNN_ia64_dyn_sym_traverse_data *) xdata;
1517 struct elfNN_ia64_dyn_sym_info *dyn_i;
1518 unsigned int count;
1520 for (count = entry->count, dyn_i = entry->info;
1521 count != 0;
1522 count--, dyn_i++)
1523 if (! (*data->func) (dyn_i, data->data))
1524 return false;
1525 return true;
1528 static void
1529 elfNN_ia64_dyn_sym_traverse (struct elfNN_ia64_link_hash_table *ia64_info,
1530 bool (*func) (struct elfNN_ia64_dyn_sym_info *,
1531 void *),
1532 void * data)
1534 struct elfNN_ia64_dyn_sym_traverse_data xdata;
1536 xdata.func = func;
1537 xdata.data = data;
1539 elf_link_hash_traverse (&ia64_info->root,
1540 elfNN_ia64_global_dyn_sym_thunk, &xdata);
1541 htab_traverse (ia64_info->loc_hash_table,
1542 elfNN_ia64_local_dyn_sym_thunk, &xdata);
1545 static bool
1546 elfNN_ia64_create_dynamic_sections (bfd *abfd,
1547 struct bfd_link_info *info)
1549 struct elfNN_ia64_link_hash_table *ia64_info;
1550 asection *s;
1552 if (! _bfd_elf_create_dynamic_sections (abfd, info))
1553 return false;
1555 ia64_info = elfNN_ia64_hash_table (info);
1556 if (ia64_info == NULL)
1557 return false;
1560 flagword flags = bfd_section_flags (ia64_info->root.sgot);
1561 bfd_set_section_flags (ia64_info->root.sgot, SEC_SMALL_DATA | flags);
1562 /* The .got section is always aligned at 8 bytes. */
1563 if (!bfd_set_section_alignment (ia64_info->root.sgot, 3))
1564 return false;
1567 if (!get_pltoff (abfd, info, ia64_info))
1568 return false;
1570 s = bfd_make_section_anyway_with_flags (abfd, ".rela.IA_64.pltoff",
1571 (SEC_ALLOC | SEC_LOAD
1572 | SEC_HAS_CONTENTS
1573 | SEC_IN_MEMORY
1574 | SEC_LINKER_CREATED
1575 | SEC_READONLY));
1576 if (s == NULL
1577 || !bfd_set_section_alignment (s, LOG_SECTION_ALIGN))
1578 return false;
1579 ia64_info->rel_pltoff_sec = s;
1581 return true;
1584 /* Find and/or create a hash entry for local symbol. */
1585 static struct elfNN_ia64_local_hash_entry *
1586 get_local_sym_hash (struct elfNN_ia64_link_hash_table *ia64_info,
1587 bfd *abfd, const Elf_Internal_Rela *rel,
1588 bool create)
1590 struct elfNN_ia64_local_hash_entry e, *ret;
1591 asection *sec = abfd->sections;
1592 hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id,
1593 ELFNN_R_SYM (rel->r_info));
1594 void **slot;
1596 e.id = sec->id;
1597 e.r_sym = ELFNN_R_SYM (rel->r_info);
1598 slot = htab_find_slot_with_hash (ia64_info->loc_hash_table, &e, h,
1599 create ? INSERT : NO_INSERT);
1601 if (!slot)
1602 return NULL;
1604 if (*slot)
1605 return (struct elfNN_ia64_local_hash_entry *) *slot;
1607 ret = (struct elfNN_ia64_local_hash_entry *)
1608 objalloc_alloc ((struct objalloc *) ia64_info->loc_hash_memory,
1609 sizeof (struct elfNN_ia64_local_hash_entry));
1610 if (ret)
1612 memset (ret, 0, sizeof (*ret));
1613 ret->id = sec->id;
1614 ret->r_sym = ELFNN_R_SYM (rel->r_info);
1615 *slot = ret;
1617 return ret;
1620 /* Used to sort elfNN_ia64_dyn_sym_info array. */
1622 static int
1623 addend_compare (const void *xp, const void *yp)
1625 const struct elfNN_ia64_dyn_sym_info *x
1626 = (const struct elfNN_ia64_dyn_sym_info *) xp;
1627 const struct elfNN_ia64_dyn_sym_info *y
1628 = (const struct elfNN_ia64_dyn_sym_info *) yp;
1630 return x->addend < y->addend ? -1 : x->addend > y->addend ? 1 : 0;
1633 /* Sort elfNN_ia64_dyn_sym_info array and remove duplicates. */
1635 static unsigned int
1636 sort_dyn_sym_info (struct elfNN_ia64_dyn_sym_info *info,
1637 unsigned int count)
1639 bfd_vma curr, prev, got_offset;
1640 unsigned int i, kept, dupes, diff, dest, src, len;
1642 qsort (info, count, sizeof (*info), addend_compare);
1644 /* Find the first duplicate. */
1645 prev = info [0].addend;
1646 got_offset = info [0].got_offset;
1647 for (i = 1; i < count; i++)
1649 curr = info [i].addend;
1650 if (curr == prev)
1652 /* For duplicates, make sure that GOT_OFFSET is valid. */
1653 if (got_offset == (bfd_vma) -1)
1654 got_offset = info [i].got_offset;
1655 break;
1657 got_offset = info [i].got_offset;
1658 prev = curr;
1661 /* We may move a block of elements to here. */
1662 dest = i++;
1664 /* Remove duplicates. */
1665 if (i < count)
1667 while (i < count)
1669 /* For duplicates, make sure that the kept one has a valid
1670 got_offset. */
1671 kept = dest - 1;
1672 if (got_offset != (bfd_vma) -1)
1673 info [kept].got_offset = got_offset;
1675 curr = info [i].addend;
1676 got_offset = info [i].got_offset;
1678 /* Move a block of elements whose first one is different from
1679 the previous. */
1680 if (curr == prev)
1682 for (src = i + 1; src < count; src++)
1684 if (info [src].addend != curr)
1685 break;
1686 /* For duplicates, make sure that GOT_OFFSET is
1687 valid. */
1688 if (got_offset == (bfd_vma) -1)
1689 got_offset = info [src].got_offset;
1692 /* Make sure that the kept one has a valid got_offset. */
1693 if (got_offset != (bfd_vma) -1)
1694 info [kept].got_offset = got_offset;
1696 else
1697 src = i;
1699 if (src >= count)
1700 break;
1702 /* Find the next duplicate. SRC will be kept. */
1703 prev = info [src].addend;
1704 got_offset = info [src].got_offset;
1705 for (dupes = src + 1; dupes < count; dupes ++)
1707 curr = info [dupes].addend;
1708 if (curr == prev)
1710 /* Make sure that got_offset is valid. */
1711 if (got_offset == (bfd_vma) -1)
1712 got_offset = info [dupes].got_offset;
1714 /* For duplicates, make sure that the kept one has
1715 a valid got_offset. */
1716 if (got_offset != (bfd_vma) -1)
1717 info [dupes - 1].got_offset = got_offset;
1718 break;
1720 got_offset = info [dupes].got_offset;
1721 prev = curr;
1724 /* How much to move. */
1725 len = dupes - src;
1726 i = dupes + 1;
1728 if (len == 1 && dupes < count)
1730 /* If we only move 1 element, we combine it with the next
1731 one. There must be at least a duplicate. Find the
1732 next different one. */
1733 for (diff = dupes + 1, src++; diff < count; diff++, src++)
1735 if (info [diff].addend != curr)
1736 break;
1737 /* Make sure that got_offset is valid. */
1738 if (got_offset == (bfd_vma) -1)
1739 got_offset = info [diff].got_offset;
1742 /* Makre sure that the last duplicated one has an valid
1743 offset. */
1744 BFD_ASSERT (curr == prev);
1745 if (got_offset != (bfd_vma) -1)
1746 info [diff - 1].got_offset = got_offset;
1748 if (diff < count)
1750 /* Find the next duplicate. Track the current valid
1751 offset. */
1752 prev = info [diff].addend;
1753 got_offset = info [diff].got_offset;
1754 for (dupes = diff + 1; dupes < count; dupes ++)
1756 curr = info [dupes].addend;
1757 if (curr == prev)
1759 /* For duplicates, make sure that GOT_OFFSET
1760 is valid. */
1761 if (got_offset == (bfd_vma) -1)
1762 got_offset = info [dupes].got_offset;
1763 break;
1765 got_offset = info [dupes].got_offset;
1766 prev = curr;
1767 diff++;
1770 len = diff - src + 1;
1771 i = diff + 1;
1775 memmove (&info [dest], &info [src], len * sizeof (*info));
1777 dest += len;
1780 count = dest;
1782 else
1784 /* When we get here, either there is no duplicate at all or
1785 the only duplicate is the last element. */
1786 if (dest < count)
1788 /* If the last element is a duplicate, make sure that the
1789 kept one has a valid got_offset. We also update count. */
1790 if (got_offset != (bfd_vma) -1)
1791 info [dest - 1].got_offset = got_offset;
1792 count = dest;
1796 return count;
1799 /* Find and/or create a descriptor for dynamic symbol info. This will
1800 vary based on global or local symbol, and the addend to the reloc.
1802 We don't sort when inserting. Also, we sort and eliminate
1803 duplicates if there is an unsorted section. Typically, this will
1804 only happen once, because we do all insertions before lookups. We
1805 then use bsearch to do a lookup. This also allows lookups to be
1806 fast. So we have fast insertion (O(log N) due to duplicate check),
1807 fast lookup (O(log N)) and one sort (O(N log N) expected time).
1808 Previously, all lookups were O(N) because of the use of the linked
1809 list and also all insertions were O(N) because of the check for
1810 duplicates. There are some complications here because the array
1811 size grows occasionally, which may add an O(N) factor, but this
1812 should be rare. Also, we free the excess array allocation, which
1813 requires a copy which is O(N), but this only happens once. */
1815 static struct elfNN_ia64_dyn_sym_info *
1816 get_dyn_sym_info (struct elfNN_ia64_link_hash_table *ia64_info,
1817 struct elf_link_hash_entry *h, bfd *abfd,
1818 const Elf_Internal_Rela *rel, bool create)
1820 struct elfNN_ia64_dyn_sym_info **info_p, *info, *dyn_i, key;
1821 unsigned int *count_p, *sorted_count_p, *size_p;
1822 unsigned int count, sorted_count, size;
1823 bfd_vma addend = rel ? rel->r_addend : 0;
1824 bfd_size_type amt;
1826 if (h)
1828 struct elfNN_ia64_link_hash_entry *global_h;
1830 global_h = (struct elfNN_ia64_link_hash_entry *) h;
1831 info_p = &global_h->info;
1832 count_p = &global_h->count;
1833 sorted_count_p = &global_h->sorted_count;
1834 size_p = &global_h->size;
1836 else
1838 struct elfNN_ia64_local_hash_entry *loc_h;
1840 loc_h = get_local_sym_hash (ia64_info, abfd, rel, create);
1841 if (!loc_h)
1843 BFD_ASSERT (!create);
1844 return NULL;
1847 info_p = &loc_h->info;
1848 count_p = &loc_h->count;
1849 sorted_count_p = &loc_h->sorted_count;
1850 size_p = &loc_h->size;
1853 count = *count_p;
1854 sorted_count = *sorted_count_p;
1855 size = *size_p;
1856 info = *info_p;
1857 if (create)
1859 /* When we create the array, we don't check for duplicates,
1860 except in the previously sorted section if one exists, and
1861 against the last inserted entry. This allows insertions to
1862 be fast. */
1863 if (info)
1865 if (sorted_count)
1867 /* Try bsearch first on the sorted section. */
1868 key.addend = addend;
1869 dyn_i = bsearch (&key, info, sorted_count,
1870 sizeof (*info), addend_compare);
1871 if (dyn_i)
1872 return dyn_i;
1875 if (count != 0)
1877 /* Do a quick check for the last inserted entry. */
1878 dyn_i = info + count - 1;
1879 if (dyn_i->addend == addend)
1880 return dyn_i;
1884 if (size == 0)
1886 /* It is the very first element. We create the array of size
1887 1. */
1888 size = 1;
1889 amt = size * sizeof (*info);
1890 info = bfd_malloc (amt);
1892 else if (size <= count)
1894 /* We double the array size every time when we reach the
1895 size limit. */
1896 size += size;
1897 amt = size * sizeof (*info);
1898 info = bfd_realloc (info, amt);
1900 else
1901 goto has_space;
1903 if (info == NULL)
1904 return NULL;
1905 *size_p = size;
1906 *info_p = info;
1908 has_space:
1909 /* Append the new one to the array. */
1910 dyn_i = info + count;
1911 memset (dyn_i, 0, sizeof (*dyn_i));
1912 dyn_i->got_offset = (bfd_vma) -1;
1913 dyn_i->addend = addend;
1915 /* We increment count only since the new ones are unsorted and
1916 may have duplicate. */
1917 (*count_p)++;
1919 else
1921 /* It is a lookup without insertion. Sort array if part of the
1922 array isn't sorted. */
1923 if (count != sorted_count)
1925 count = sort_dyn_sym_info (info, count);
1926 *count_p = count;
1927 *sorted_count_p = count;
1930 /* Free unused memory. */
1931 if (size != count)
1933 amt = count * sizeof (*info);
1934 info = bfd_realloc (info, amt);
1935 *size_p = count;
1936 if (info == NULL && count != 0)
1937 /* realloc should never fail since we are reducing size here,
1938 but if it does use the old array. */
1939 info = *info_p;
1940 else
1941 *info_p = info;
1944 if (count == 0)
1945 dyn_i = NULL;
1946 else
1948 key.addend = addend;
1949 dyn_i = bsearch (&key, info, count, sizeof (*info), addend_compare);
1953 return dyn_i;
1956 static asection *
1957 get_got (bfd *abfd, struct bfd_link_info *info,
1958 struct elfNN_ia64_link_hash_table *ia64_info)
1960 asection *got;
1961 bfd *dynobj;
1963 got = ia64_info->root.sgot;
1964 if (!got)
1966 flagword flags;
1968 dynobj = ia64_info->root.dynobj;
1969 if (!dynobj)
1970 ia64_info->root.dynobj = dynobj = abfd;
1971 if (!_bfd_elf_create_got_section (dynobj, info))
1972 return NULL;
1974 got = ia64_info->root.sgot;
1976 /* The .got section is always aligned at 8 bytes. */
1977 if (!bfd_set_section_alignment (got, 3))
1978 return NULL;
1980 flags = bfd_section_flags (got);
1981 if (!bfd_set_section_flags (got, SEC_SMALL_DATA | flags))
1982 return NULL;
1985 return got;
1988 /* Create function descriptor section (.opd). This section is called .opd
1989 because it contains "official procedure descriptors". The "official"
1990 refers to the fact that these descriptors are used when taking the address
1991 of a procedure, thus ensuring a unique address for each procedure. */
1993 static asection *
1994 get_fptr (bfd *abfd, struct bfd_link_info *info,
1995 struct elfNN_ia64_link_hash_table *ia64_info)
1997 asection *fptr;
1998 bfd *dynobj;
2000 fptr = ia64_info->fptr_sec;
2001 if (!fptr)
2003 dynobj = ia64_info->root.dynobj;
2004 if (!dynobj)
2005 ia64_info->root.dynobj = dynobj = abfd;
2007 fptr = bfd_make_section_anyway_with_flags (dynobj, ".opd",
2008 (SEC_ALLOC
2009 | SEC_LOAD
2010 | SEC_HAS_CONTENTS
2011 | SEC_IN_MEMORY
2012 | (bfd_link_pie (info)
2013 ? 0 : SEC_READONLY)
2014 | SEC_LINKER_CREATED));
2015 if (!fptr
2016 || !bfd_set_section_alignment (fptr, 4))
2018 BFD_ASSERT (0);
2019 return NULL;
2022 ia64_info->fptr_sec = fptr;
2024 if (bfd_link_pie (info))
2026 asection *fptr_rel;
2027 fptr_rel = bfd_make_section_anyway_with_flags (dynobj, ".rela.opd",
2028 (SEC_ALLOC | SEC_LOAD
2029 | SEC_HAS_CONTENTS
2030 | SEC_IN_MEMORY
2031 | SEC_LINKER_CREATED
2032 | SEC_READONLY));
2033 if (fptr_rel == NULL
2034 || !bfd_set_section_alignment (fptr_rel, LOG_SECTION_ALIGN))
2036 BFD_ASSERT (0);
2037 return NULL;
2040 ia64_info->rel_fptr_sec = fptr_rel;
2044 return fptr;
2047 static asection *
2048 get_pltoff (bfd *abfd, struct bfd_link_info *info ATTRIBUTE_UNUSED,
2049 struct elfNN_ia64_link_hash_table *ia64_info)
2051 asection *pltoff;
2052 bfd *dynobj;
2054 pltoff = ia64_info->pltoff_sec;
2055 if (!pltoff)
2057 dynobj = ia64_info->root.dynobj;
2058 if (!dynobj)
2059 ia64_info->root.dynobj = dynobj = abfd;
2061 pltoff = bfd_make_section_anyway_with_flags (dynobj,
2062 ELF_STRING_ia64_pltoff,
2063 (SEC_ALLOC
2064 | SEC_LOAD
2065 | SEC_HAS_CONTENTS
2066 | SEC_IN_MEMORY
2067 | SEC_SMALL_DATA
2068 | SEC_LINKER_CREATED));
2069 if (!pltoff
2070 || !bfd_set_section_alignment (pltoff, 4))
2072 BFD_ASSERT (0);
2073 return NULL;
2076 ia64_info->pltoff_sec = pltoff;
2079 return pltoff;
2082 static asection *
2083 get_reloc_section (bfd *abfd,
2084 struct elfNN_ia64_link_hash_table *ia64_info,
2085 asection *sec, bool create)
2087 const char *srel_name;
2088 asection *srel;
2089 bfd *dynobj;
2091 srel_name = (bfd_elf_string_from_elf_section
2092 (abfd, elf_elfheader(abfd)->e_shstrndx,
2093 _bfd_elf_single_rel_hdr (sec)->sh_name));
2094 if (srel_name == NULL)
2095 return NULL;
2097 dynobj = ia64_info->root.dynobj;
2098 if (!dynobj)
2099 ia64_info->root.dynobj = dynobj = abfd;
2101 srel = bfd_get_linker_section (dynobj, srel_name);
2102 if (srel == NULL && create)
2104 srel = bfd_make_section_anyway_with_flags (dynobj, srel_name,
2105 (SEC_ALLOC | SEC_LOAD
2106 | SEC_HAS_CONTENTS
2107 | SEC_IN_MEMORY
2108 | SEC_LINKER_CREATED
2109 | SEC_READONLY));
2110 if (srel == NULL
2111 || !bfd_set_section_alignment (srel, LOG_SECTION_ALIGN))
2112 return NULL;
2115 return srel;
2118 static bool
2119 count_dyn_reloc (bfd *abfd, struct elfNN_ia64_dyn_sym_info *dyn_i,
2120 asection *srel, int type, bool reltext)
2122 struct elfNN_ia64_dyn_reloc_entry *rent;
2124 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
2125 if (rent->srel == srel && rent->type == type)
2126 break;
2128 if (!rent)
2130 rent = ((struct elfNN_ia64_dyn_reloc_entry *)
2131 bfd_alloc (abfd, (bfd_size_type) sizeof (*rent)));
2132 if (!rent)
2133 return false;
2135 rent->next = dyn_i->reloc_entries;
2136 rent->srel = srel;
2137 rent->type = type;
2138 rent->count = 0;
2139 dyn_i->reloc_entries = rent;
2141 rent->reltext = reltext;
2142 rent->count++;
2144 return true;
2147 static bool
2148 elfNN_ia64_check_relocs (bfd *abfd, struct bfd_link_info *info,
2149 asection *sec,
2150 const Elf_Internal_Rela *relocs)
2152 struct elfNN_ia64_link_hash_table *ia64_info;
2153 const Elf_Internal_Rela *relend;
2154 Elf_Internal_Shdr *symtab_hdr;
2155 const Elf_Internal_Rela *rel;
2156 asection *got, *fptr, *srel, *pltoff;
2157 enum {
2158 NEED_GOT = 1,
2159 NEED_GOTX = 2,
2160 NEED_FPTR = 4,
2161 NEED_PLTOFF = 8,
2162 NEED_MIN_PLT = 16,
2163 NEED_FULL_PLT = 32,
2164 NEED_DYNREL = 64,
2165 NEED_LTOFF_FPTR = 128,
2166 NEED_TPREL = 256,
2167 NEED_DTPMOD = 512,
2168 NEED_DTPREL = 1024
2170 int need_entry;
2171 struct elf_link_hash_entry *h;
2172 unsigned long r_symndx;
2173 bool maybe_dynamic;
2175 if (bfd_link_relocatable (info))
2176 return true;
2178 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2179 ia64_info = elfNN_ia64_hash_table (info);
2180 if (ia64_info == NULL)
2181 return false;
2183 got = fptr = srel = pltoff = NULL;
2185 relend = relocs + sec->reloc_count;
2187 /* We scan relocations first to create dynamic relocation arrays. We
2188 modified get_dyn_sym_info to allow fast insertion and support fast
2189 lookup in the next loop. */
2190 for (rel = relocs; rel < relend; ++rel)
2192 r_symndx = ELFNN_R_SYM (rel->r_info);
2193 if (r_symndx >= symtab_hdr->sh_info)
2195 long indx = r_symndx - symtab_hdr->sh_info;
2196 h = elf_sym_hashes (abfd)[indx];
2197 while (h->root.type == bfd_link_hash_indirect
2198 || h->root.type == bfd_link_hash_warning)
2199 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2201 else
2202 h = NULL;
2204 /* We can only get preliminary data on whether a symbol is
2205 locally or externally defined, as not all of the input files
2206 have yet been processed. Do something with what we know, as
2207 this may help reduce memory usage and processing time later. */
2208 maybe_dynamic = (h && ((!bfd_link_executable (info)
2209 && (!SYMBOLIC_BIND (info, h)
2210 || info->unresolved_syms_in_shared_libs == RM_IGNORE))
2211 || !h->def_regular
2212 || h->root.type == bfd_link_hash_defweak));
2214 need_entry = 0;
2215 switch (ELFNN_R_TYPE (rel->r_info))
2217 case R_IA64_TPREL64MSB:
2218 case R_IA64_TPREL64LSB:
2219 if (bfd_link_pic (info) || maybe_dynamic)
2220 need_entry = NEED_DYNREL;
2221 break;
2223 case R_IA64_LTOFF_TPREL22:
2224 need_entry = NEED_TPREL;
2225 if (bfd_link_pic (info))
2226 info->flags |= DF_STATIC_TLS;
2227 break;
2229 case R_IA64_DTPREL32MSB:
2230 case R_IA64_DTPREL32LSB:
2231 case R_IA64_DTPREL64MSB:
2232 case R_IA64_DTPREL64LSB:
2233 if (bfd_link_pic (info) || maybe_dynamic)
2234 need_entry = NEED_DYNREL;
2235 break;
2237 case R_IA64_LTOFF_DTPREL22:
2238 need_entry = NEED_DTPREL;
2239 break;
2241 case R_IA64_DTPMOD64MSB:
2242 case R_IA64_DTPMOD64LSB:
2243 if (bfd_link_pic (info) || maybe_dynamic)
2244 need_entry = NEED_DYNREL;
2245 break;
2247 case R_IA64_LTOFF_DTPMOD22:
2248 need_entry = NEED_DTPMOD;
2249 break;
2251 case R_IA64_LTOFF_FPTR22:
2252 case R_IA64_LTOFF_FPTR64I:
2253 case R_IA64_LTOFF_FPTR32MSB:
2254 case R_IA64_LTOFF_FPTR32LSB:
2255 case R_IA64_LTOFF_FPTR64MSB:
2256 case R_IA64_LTOFF_FPTR64LSB:
2257 need_entry = NEED_FPTR | NEED_GOT | NEED_LTOFF_FPTR;
2258 break;
2260 case R_IA64_FPTR64I:
2261 case R_IA64_FPTR32MSB:
2262 case R_IA64_FPTR32LSB:
2263 case R_IA64_FPTR64MSB:
2264 case R_IA64_FPTR64LSB:
2265 if (bfd_link_pic (info) || h)
2266 need_entry = NEED_FPTR | NEED_DYNREL;
2267 else
2268 need_entry = NEED_FPTR;
2269 break;
2271 case R_IA64_LTOFF22:
2272 case R_IA64_LTOFF64I:
2273 need_entry = NEED_GOT;
2274 break;
2276 case R_IA64_LTOFF22X:
2277 need_entry = NEED_GOTX;
2278 break;
2280 case R_IA64_PLTOFF22:
2281 case R_IA64_PLTOFF64I:
2282 case R_IA64_PLTOFF64MSB:
2283 case R_IA64_PLTOFF64LSB:
2284 need_entry = NEED_PLTOFF;
2285 if (h)
2287 if (maybe_dynamic)
2288 need_entry |= NEED_MIN_PLT;
2290 else
2292 (*info->callbacks->warning)
2293 (info, _("@pltoff reloc against local symbol"), 0,
2294 abfd, 0, (bfd_vma) 0);
2296 break;
2298 case R_IA64_PCREL21B:
2299 case R_IA64_PCREL60B:
2300 /* Depending on where this symbol is defined, we may or may not
2301 need a full plt entry. Only skip if we know we'll not need
2302 the entry -- static or symbolic, and the symbol definition
2303 has already been seen. */
2304 if (maybe_dynamic && rel->r_addend == 0)
2305 need_entry = NEED_FULL_PLT;
2306 break;
2308 case R_IA64_IMM14:
2309 case R_IA64_IMM22:
2310 case R_IA64_IMM64:
2311 case R_IA64_DIR32MSB:
2312 case R_IA64_DIR32LSB:
2313 case R_IA64_DIR64MSB:
2314 case R_IA64_DIR64LSB:
2315 /* Shared objects will always need at least a REL relocation. */
2316 if (bfd_link_pic (info) || maybe_dynamic)
2317 need_entry = NEED_DYNREL;
2318 break;
2320 case R_IA64_IPLTMSB:
2321 case R_IA64_IPLTLSB:
2322 /* Shared objects will always need at least a REL relocation. */
2323 if (bfd_link_pic (info) || maybe_dynamic)
2324 need_entry = NEED_DYNREL;
2325 break;
2327 case R_IA64_PCREL22:
2328 case R_IA64_PCREL64I:
2329 case R_IA64_PCREL32MSB:
2330 case R_IA64_PCREL32LSB:
2331 case R_IA64_PCREL64MSB:
2332 case R_IA64_PCREL64LSB:
2333 if (maybe_dynamic)
2334 need_entry = NEED_DYNREL;
2335 break;
2338 if (!need_entry)
2339 continue;
2341 if ((need_entry & NEED_FPTR) != 0
2342 && rel->r_addend)
2344 (*info->callbacks->warning)
2345 (info, _("non-zero addend in @fptr reloc"), 0,
2346 abfd, 0, (bfd_vma) 0);
2349 if (get_dyn_sym_info (ia64_info, h, abfd, rel, true) == NULL)
2350 return false;
2353 /* Now, we only do lookup without insertion, which is very fast
2354 with the modified get_dyn_sym_info. */
2355 for (rel = relocs; rel < relend; ++rel)
2357 struct elfNN_ia64_dyn_sym_info *dyn_i;
2358 int dynrel_type = R_IA64_NONE;
2360 r_symndx = ELFNN_R_SYM (rel->r_info);
2361 if (r_symndx >= symtab_hdr->sh_info)
2363 /* We're dealing with a global symbol -- find its hash entry
2364 and mark it as being referenced. */
2365 long indx = r_symndx - symtab_hdr->sh_info;
2366 h = elf_sym_hashes (abfd)[indx];
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 /* PR15323, ref flags aren't set for references in the same
2372 object. */
2373 h->ref_regular = 1;
2375 else
2376 h = NULL;
2378 /* We can only get preliminary data on whether a symbol is
2379 locally or externally defined, as not all of the input files
2380 have yet been processed. Do something with what we know, as
2381 this may help reduce memory usage and processing time later. */
2382 maybe_dynamic = (h && ((!bfd_link_executable (info)
2383 && (!SYMBOLIC_BIND (info, h)
2384 || info->unresolved_syms_in_shared_libs == RM_IGNORE))
2385 || !h->def_regular
2386 || h->root.type == bfd_link_hash_defweak));
2388 need_entry = 0;
2389 switch (ELFNN_R_TYPE (rel->r_info))
2391 case R_IA64_TPREL64MSB:
2392 case R_IA64_TPREL64LSB:
2393 if (bfd_link_pic (info) || maybe_dynamic)
2394 need_entry = NEED_DYNREL;
2395 dynrel_type = R_IA64_TPREL64LSB;
2396 if (bfd_link_pic (info))
2397 info->flags |= DF_STATIC_TLS;
2398 break;
2400 case R_IA64_LTOFF_TPREL22:
2401 need_entry = NEED_TPREL;
2402 if (bfd_link_pic (info))
2403 info->flags |= DF_STATIC_TLS;
2404 break;
2406 case R_IA64_DTPREL32MSB:
2407 case R_IA64_DTPREL32LSB:
2408 case R_IA64_DTPREL64MSB:
2409 case R_IA64_DTPREL64LSB:
2410 if (bfd_link_pic (info) || maybe_dynamic)
2411 need_entry = NEED_DYNREL;
2412 dynrel_type = R_IA64_DTPRELNNLSB;
2413 break;
2415 case R_IA64_LTOFF_DTPREL22:
2416 need_entry = NEED_DTPREL;
2417 break;
2419 case R_IA64_DTPMOD64MSB:
2420 case R_IA64_DTPMOD64LSB:
2421 if (bfd_link_pic (info) || maybe_dynamic)
2422 need_entry = NEED_DYNREL;
2423 dynrel_type = R_IA64_DTPMOD64LSB;
2424 break;
2426 case R_IA64_LTOFF_DTPMOD22:
2427 need_entry = NEED_DTPMOD;
2428 break;
2430 case R_IA64_LTOFF_FPTR22:
2431 case R_IA64_LTOFF_FPTR64I:
2432 case R_IA64_LTOFF_FPTR32MSB:
2433 case R_IA64_LTOFF_FPTR32LSB:
2434 case R_IA64_LTOFF_FPTR64MSB:
2435 case R_IA64_LTOFF_FPTR64LSB:
2436 need_entry = NEED_FPTR | NEED_GOT | NEED_LTOFF_FPTR;
2437 break;
2439 case R_IA64_FPTR64I:
2440 case R_IA64_FPTR32MSB:
2441 case R_IA64_FPTR32LSB:
2442 case R_IA64_FPTR64MSB:
2443 case R_IA64_FPTR64LSB:
2444 if (bfd_link_pic (info) || h)
2445 need_entry = NEED_FPTR | NEED_DYNREL;
2446 else
2447 need_entry = NEED_FPTR;
2448 dynrel_type = R_IA64_FPTRNNLSB;
2449 break;
2451 case R_IA64_LTOFF22:
2452 case R_IA64_LTOFF64I:
2453 need_entry = NEED_GOT;
2454 break;
2456 case R_IA64_LTOFF22X:
2457 need_entry = NEED_GOTX;
2458 break;
2460 case R_IA64_PLTOFF22:
2461 case R_IA64_PLTOFF64I:
2462 case R_IA64_PLTOFF64MSB:
2463 case R_IA64_PLTOFF64LSB:
2464 need_entry = NEED_PLTOFF;
2465 if (h)
2467 if (maybe_dynamic)
2468 need_entry |= NEED_MIN_PLT;
2470 break;
2472 case R_IA64_PCREL21B:
2473 case R_IA64_PCREL60B:
2474 /* Depending on where this symbol is defined, we may or may not
2475 need a full plt entry. Only skip if we know we'll not need
2476 the entry -- static or symbolic, and the symbol definition
2477 has already been seen. */
2478 if (maybe_dynamic && rel->r_addend == 0)
2479 need_entry = NEED_FULL_PLT;
2480 break;
2482 case R_IA64_IMM14:
2483 case R_IA64_IMM22:
2484 case R_IA64_IMM64:
2485 case R_IA64_DIR32MSB:
2486 case R_IA64_DIR32LSB:
2487 case R_IA64_DIR64MSB:
2488 case R_IA64_DIR64LSB:
2489 /* Shared objects will always need at least a REL relocation. */
2490 if (bfd_link_pic (info) || maybe_dynamic)
2491 need_entry = NEED_DYNREL;
2492 dynrel_type = R_IA64_DIRNNLSB;
2493 break;
2495 case R_IA64_IPLTMSB:
2496 case R_IA64_IPLTLSB:
2497 /* Shared objects will always need at least a REL relocation. */
2498 if (bfd_link_pic (info) || maybe_dynamic)
2499 need_entry = NEED_DYNREL;
2500 dynrel_type = R_IA64_IPLTLSB;
2501 break;
2503 case R_IA64_PCREL22:
2504 case R_IA64_PCREL64I:
2505 case R_IA64_PCREL32MSB:
2506 case R_IA64_PCREL32LSB:
2507 case R_IA64_PCREL64MSB:
2508 case R_IA64_PCREL64LSB:
2509 if (maybe_dynamic)
2510 need_entry = NEED_DYNREL;
2511 dynrel_type = R_IA64_PCRELNNLSB;
2512 break;
2515 if (!need_entry)
2516 continue;
2518 dyn_i = get_dyn_sym_info (ia64_info, h, abfd, rel, false);
2520 /* Record whether or not this is a local symbol. */
2521 dyn_i->h = h;
2523 /* Create what's needed. */
2524 if (need_entry & (NEED_GOT | NEED_GOTX | NEED_TPREL
2525 | NEED_DTPMOD | NEED_DTPREL))
2527 if (!got)
2529 got = get_got (abfd, info, ia64_info);
2530 if (!got)
2531 return false;
2533 if (need_entry & NEED_GOT)
2534 dyn_i->want_got = 1;
2535 if (need_entry & NEED_GOTX)
2536 dyn_i->want_gotx = 1;
2537 if (need_entry & NEED_TPREL)
2538 dyn_i->want_tprel = 1;
2539 if (need_entry & NEED_DTPMOD)
2540 dyn_i->want_dtpmod = 1;
2541 if (need_entry & NEED_DTPREL)
2542 dyn_i->want_dtprel = 1;
2544 if (need_entry & NEED_FPTR)
2546 if (!fptr)
2548 fptr = get_fptr (abfd, info, ia64_info);
2549 if (!fptr)
2550 return false;
2553 /* FPTRs for shared libraries are allocated by the dynamic
2554 linker. Make sure this local symbol will appear in the
2555 dynamic symbol table. */
2556 if (!h && bfd_link_pic (info))
2558 if (! (bfd_elf_link_record_local_dynamic_symbol
2559 (info, abfd, (long) r_symndx)))
2560 return false;
2563 dyn_i->want_fptr = 1;
2565 if (need_entry & NEED_LTOFF_FPTR)
2566 dyn_i->want_ltoff_fptr = 1;
2567 if (need_entry & (NEED_MIN_PLT | NEED_FULL_PLT))
2569 if (!ia64_info->root.dynobj)
2570 ia64_info->root.dynobj = abfd;
2571 h->needs_plt = 1;
2572 dyn_i->want_plt = 1;
2574 if (need_entry & NEED_FULL_PLT)
2575 dyn_i->want_plt2 = 1;
2576 if (need_entry & NEED_PLTOFF)
2578 /* This is needed here, in case @pltoff is used in a non-shared
2579 link. */
2580 if (!pltoff)
2582 pltoff = get_pltoff (abfd, info, ia64_info);
2583 if (!pltoff)
2584 return false;
2587 dyn_i->want_pltoff = 1;
2589 if ((need_entry & NEED_DYNREL) && (sec->flags & SEC_ALLOC))
2591 if (!srel)
2593 srel = get_reloc_section (abfd, ia64_info, sec, true);
2594 if (!srel)
2595 return false;
2597 if (!count_dyn_reloc (abfd, dyn_i, srel, dynrel_type,
2598 (sec->flags & SEC_READONLY) != 0))
2599 return false;
2603 return true;
2606 /* For cleanliness, and potentially faster dynamic loading, allocate
2607 external GOT entries first. */
2609 static bool
2610 allocate_global_data_got (struct elfNN_ia64_dyn_sym_info *dyn_i,
2611 void * data)
2613 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2615 if ((dyn_i->want_got || dyn_i->want_gotx)
2616 && ! dyn_i->want_fptr
2617 && elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, 0))
2619 dyn_i->got_offset = x->ofs;
2620 x->ofs += 8;
2622 if (dyn_i->want_tprel)
2624 dyn_i->tprel_offset = x->ofs;
2625 x->ofs += 8;
2627 if (dyn_i->want_dtpmod)
2629 if (elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, 0))
2631 dyn_i->dtpmod_offset = x->ofs;
2632 x->ofs += 8;
2634 else
2636 struct elfNN_ia64_link_hash_table *ia64_info;
2638 ia64_info = elfNN_ia64_hash_table (x->info);
2639 if (ia64_info == NULL)
2640 return false;
2642 if (ia64_info->self_dtpmod_offset == (bfd_vma) -1)
2644 ia64_info->self_dtpmod_offset = x->ofs;
2645 x->ofs += 8;
2647 dyn_i->dtpmod_offset = ia64_info->self_dtpmod_offset;
2650 if (dyn_i->want_dtprel)
2652 dyn_i->dtprel_offset = x->ofs;
2653 x->ofs += 8;
2655 return true;
2658 /* Next, allocate all the GOT entries used by LTOFF_FPTR relocs. */
2660 static bool
2661 allocate_global_fptr_got (struct elfNN_ia64_dyn_sym_info *dyn_i,
2662 void * data)
2664 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2666 if (dyn_i->want_got
2667 && dyn_i->want_fptr
2668 && elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, R_IA64_FPTRNNLSB))
2670 dyn_i->got_offset = x->ofs;
2671 x->ofs += 8;
2673 return true;
2676 /* Lastly, allocate all the GOT entries for local data. */
2678 static bool
2679 allocate_local_got (struct elfNN_ia64_dyn_sym_info *dyn_i,
2680 void * data)
2682 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2684 if ((dyn_i->want_got || dyn_i->want_gotx)
2685 && !elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, 0))
2687 dyn_i->got_offset = x->ofs;
2688 x->ofs += 8;
2690 return true;
2693 /* Search for the index of a global symbol in it's defining object file. */
2695 static long
2696 global_sym_index (struct elf_link_hash_entry *h)
2698 struct elf_link_hash_entry **p;
2699 bfd *obj;
2701 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2702 || h->root.type == bfd_link_hash_defweak);
2704 obj = h->root.u.def.section->owner;
2705 for (p = elf_sym_hashes (obj); *p != h; ++p)
2706 continue;
2708 return p - elf_sym_hashes (obj) + elf_tdata (obj)->symtab_hdr.sh_info;
2711 /* Allocate function descriptors. We can do these for every function
2712 in a main executable that is not exported. */
2714 static bool
2715 allocate_fptr (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data)
2717 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2719 if (dyn_i->want_fptr)
2721 struct elf_link_hash_entry *h = dyn_i->h;
2723 if (h)
2724 while (h->root.type == bfd_link_hash_indirect
2725 || h->root.type == bfd_link_hash_warning)
2726 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2728 if (!bfd_link_executable (x->info)
2729 && (!h
2730 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2731 || (h->root.type != bfd_link_hash_undefweak
2732 && h->root.type != bfd_link_hash_undefined)))
2734 if (h && h->dynindx == -1)
2736 BFD_ASSERT ((h->root.type == bfd_link_hash_defined)
2737 || (h->root.type == bfd_link_hash_defweak));
2739 if (!bfd_elf_link_record_local_dynamic_symbol
2740 (x->info, h->root.u.def.section->owner,
2741 global_sym_index (h)))
2742 return false;
2745 dyn_i->want_fptr = 0;
2747 else if (h == NULL || h->dynindx == -1)
2749 dyn_i->fptr_offset = x->ofs;
2750 x->ofs += 16;
2752 else
2753 dyn_i->want_fptr = 0;
2755 return true;
2758 /* Allocate all the minimal PLT entries. */
2760 static bool
2761 allocate_plt_entries (struct elfNN_ia64_dyn_sym_info *dyn_i,
2762 void * data)
2764 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2766 if (dyn_i->want_plt)
2768 struct elf_link_hash_entry *h = dyn_i->h;
2770 if (h)
2771 while (h->root.type == bfd_link_hash_indirect
2772 || h->root.type == bfd_link_hash_warning)
2773 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2775 /* ??? Versioned symbols seem to lose NEEDS_PLT. */
2776 if (elfNN_ia64_dynamic_symbol_p (h, x->info, 0))
2778 bfd_size_type offset = x->ofs;
2779 if (offset == 0)
2780 offset = PLT_HEADER_SIZE;
2781 dyn_i->plt_offset = offset;
2782 x->ofs = offset + PLT_MIN_ENTRY_SIZE;
2784 dyn_i->want_pltoff = 1;
2786 else
2788 dyn_i->want_plt = 0;
2789 dyn_i->want_plt2 = 0;
2792 return true;
2795 /* Allocate all the full PLT entries. */
2797 static bool
2798 allocate_plt2_entries (struct elfNN_ia64_dyn_sym_info *dyn_i,
2799 void * data)
2801 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2803 if (dyn_i->want_plt2)
2805 struct elf_link_hash_entry *h = dyn_i->h;
2806 bfd_size_type ofs = x->ofs;
2808 dyn_i->plt2_offset = ofs;
2809 x->ofs = ofs + PLT_FULL_ENTRY_SIZE;
2811 while (h->root.type == bfd_link_hash_indirect
2812 || h->root.type == bfd_link_hash_warning)
2813 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2814 dyn_i->h->plt.offset = ofs;
2816 return true;
2819 /* Allocate all the PLTOFF entries requested by relocations and
2820 plt entries. We can't share space with allocated FPTR entries,
2821 because the latter are not necessarily addressable by the GP.
2822 ??? Relaxation might be able to determine that they are. */
2824 static bool
2825 allocate_pltoff_entries (struct elfNN_ia64_dyn_sym_info *dyn_i,
2826 void * data)
2828 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2830 if (dyn_i->want_pltoff)
2832 dyn_i->pltoff_offset = x->ofs;
2833 x->ofs += 16;
2835 return true;
2838 /* Allocate dynamic relocations for those symbols that turned out
2839 to be dynamic. */
2841 static bool
2842 allocate_dynrel_entries (struct elfNN_ia64_dyn_sym_info *dyn_i,
2843 void * data)
2845 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2846 struct elfNN_ia64_link_hash_table *ia64_info;
2847 struct elfNN_ia64_dyn_reloc_entry *rent;
2848 bool dynamic_symbol, shared, resolved_zero;
2850 ia64_info = elfNN_ia64_hash_table (x->info);
2851 if (ia64_info == NULL)
2852 return false;
2854 /* Note that this can't be used in relation to FPTR relocs below. */
2855 dynamic_symbol = elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, 0);
2857 shared = bfd_link_pic (x->info);
2858 resolved_zero = (dyn_i->h
2859 && ELF_ST_VISIBILITY (dyn_i->h->other)
2860 && dyn_i->h->root.type == bfd_link_hash_undefweak);
2862 /* Take care of the GOT and PLT relocations. */
2864 if ((!resolved_zero
2865 && (dynamic_symbol || shared)
2866 && (dyn_i->want_got || dyn_i->want_gotx))
2867 || (dyn_i->want_ltoff_fptr
2868 && dyn_i->h
2869 && dyn_i->h->dynindx != -1))
2871 if (!dyn_i->want_ltoff_fptr
2872 || !bfd_link_pie (x->info)
2873 || dyn_i->h == NULL
2874 || dyn_i->h->root.type != bfd_link_hash_undefweak)
2875 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
2877 if ((dynamic_symbol || shared) && dyn_i->want_tprel)
2878 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
2879 if (dynamic_symbol && dyn_i->want_dtpmod)
2880 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
2881 if (dynamic_symbol && dyn_i->want_dtprel)
2882 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
2884 if (x->only_got)
2885 return true;
2887 if (ia64_info->rel_fptr_sec && dyn_i->want_fptr)
2889 if (dyn_i->h == NULL || dyn_i->h->root.type != bfd_link_hash_undefweak)
2890 ia64_info->rel_fptr_sec->size += sizeof (ElfNN_External_Rela);
2893 if (!resolved_zero && dyn_i->want_pltoff)
2895 bfd_size_type t = 0;
2897 /* Dynamic symbols get one IPLT relocation. Local symbols in
2898 shared libraries get two REL relocations. Local symbols in
2899 main applications get nothing. */
2900 if (dynamic_symbol)
2901 t = sizeof (ElfNN_External_Rela);
2902 else if (shared)
2903 t = 2 * sizeof (ElfNN_External_Rela);
2905 ia64_info->rel_pltoff_sec->size += t;
2908 /* Take care of the normal data relocations. */
2910 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
2912 int count = rent->count;
2914 switch (rent->type)
2916 case R_IA64_FPTR32LSB:
2917 case R_IA64_FPTR64LSB:
2918 /* Allocate one iff !want_fptr and not PIE, which by this point
2919 will be true only if we're actually allocating one statically
2920 in the main executable. Position independent executables
2921 need a relative reloc. */
2922 if (dyn_i->want_fptr && !bfd_link_pie (x->info))
2923 continue;
2924 break;
2925 case R_IA64_PCREL32LSB:
2926 case R_IA64_PCREL64LSB:
2927 if (!dynamic_symbol)
2928 continue;
2929 break;
2930 case R_IA64_DIR32LSB:
2931 case R_IA64_DIR64LSB:
2932 if (!dynamic_symbol && !shared)
2933 continue;
2934 break;
2935 case R_IA64_IPLTLSB:
2936 if (!dynamic_symbol && !shared)
2937 continue;
2938 /* Use two REL relocations for IPLT relocations
2939 against local symbols. */
2940 if (!dynamic_symbol)
2941 count *= 2;
2942 break;
2943 case R_IA64_DTPREL32LSB:
2944 case R_IA64_TPREL64LSB:
2945 case R_IA64_DTPREL64LSB:
2946 case R_IA64_DTPMOD64LSB:
2947 break;
2948 default:
2949 abort ();
2951 if (rent->reltext)
2952 x->info->flags |= DF_TEXTREL;
2953 rent->srel->size += sizeof (ElfNN_External_Rela) * count;
2956 return true;
2959 static bool
2960 elfNN_ia64_adjust_dynamic_symbol (struct bfd_link_info *info ATTRIBUTE_UNUSED,
2961 struct elf_link_hash_entry *h)
2963 /* ??? Undefined symbols with PLT entries should be re-defined
2964 to be the PLT entry. */
2966 /* If this is a weak symbol, and there is a real definition, the
2967 processor independent code will have arranged for us to see the
2968 real definition first, and we can just use the same value. */
2969 if (h->is_weakalias)
2971 struct elf_link_hash_entry *def = weakdef (h);
2972 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
2973 h->root.u.def.section = def->root.u.def.section;
2974 h->root.u.def.value = def->root.u.def.value;
2975 return true;
2978 /* If this is a reference to a symbol defined by a dynamic object which
2979 is not a function, we might allocate the symbol in our .dynbss section
2980 and allocate a COPY dynamic relocation.
2982 But IA-64 code is canonically PIC, so as a rule we can avoid this sort
2983 of hackery. */
2985 return true;
2988 static bool
2989 elfNN_ia64_late_size_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
2990 struct bfd_link_info *info)
2992 struct elfNN_ia64_allocate_data data;
2993 struct elfNN_ia64_link_hash_table *ia64_info;
2994 asection *sec;
2995 bfd *dynobj;
2997 ia64_info = elfNN_ia64_hash_table (info);
2998 if (ia64_info == NULL)
2999 return false;
3000 dynobj = ia64_info->root.dynobj;
3001 if (dynobj == NULL)
3002 return true;
3003 ia64_info->self_dtpmod_offset = (bfd_vma) -1;
3004 data.info = info;
3006 /* Set the contents of the .interp section to the interpreter. */
3007 if (ia64_info->root.dynamic_sections_created
3008 && bfd_link_executable (info) && !info->nointerp)
3010 sec = bfd_get_linker_section (dynobj, ".interp");
3011 BFD_ASSERT (sec != NULL);
3012 sec->contents = (bfd_byte *) ELF_DYNAMIC_INTERPRETER;
3013 sec->alloced = 1;
3014 sec->size = strlen (ELF_DYNAMIC_INTERPRETER) + 1;
3017 /* Allocate the GOT entries. */
3019 if (ia64_info->root.sgot)
3021 data.ofs = 0;
3022 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_global_data_got, &data);
3023 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_global_fptr_got, &data);
3024 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_local_got, &data);
3025 ia64_info->root.sgot->size = data.ofs;
3028 /* Allocate the FPTR entries. */
3030 if (ia64_info->fptr_sec)
3032 data.ofs = 0;
3033 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_fptr, &data);
3034 ia64_info->fptr_sec->size = data.ofs;
3037 /* Now that we've seen all of the input files, we can decide which
3038 symbols need plt entries. Allocate the minimal PLT entries first.
3039 We do this even though dynamic_sections_created may be FALSE, because
3040 this has the side-effect of clearing want_plt and want_plt2. */
3042 data.ofs = 0;
3043 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_plt_entries, &data);
3045 ia64_info->minplt_entries = 0;
3046 if (data.ofs)
3048 ia64_info->minplt_entries
3049 = (data.ofs - PLT_HEADER_SIZE) / PLT_MIN_ENTRY_SIZE;
3052 /* Align the pointer for the plt2 entries. */
3053 data.ofs = (data.ofs + 31) & (bfd_vma) -32;
3055 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_plt2_entries, &data);
3056 if (data.ofs != 0 || ia64_info->root.dynamic_sections_created)
3058 /* FIXME: we always reserve the memory for dynamic linker even if
3059 there are no PLT entries since dynamic linker may assume the
3060 reserved memory always exists. */
3062 BFD_ASSERT (ia64_info->root.dynamic_sections_created);
3064 ia64_info->root.splt->size = data.ofs;
3066 /* If we've got a .plt, we need some extra memory for the dynamic
3067 linker. We stuff these in .got.plt. */
3068 ia64_info->root.sgotplt->size = 8 * PLT_RESERVED_WORDS;
3071 /* Allocate the PLTOFF entries. */
3073 if (ia64_info->pltoff_sec)
3075 data.ofs = 0;
3076 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_pltoff_entries, &data);
3077 ia64_info->pltoff_sec->size = data.ofs;
3080 if (ia64_info->root.dynamic_sections_created)
3082 /* Allocate space for the dynamic relocations that turned out to be
3083 required. */
3085 if (bfd_link_pic (info) && ia64_info->self_dtpmod_offset != (bfd_vma) -1)
3086 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
3087 data.only_got = false;
3088 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_dynrel_entries, &data);
3091 /* We have now determined the sizes of the various dynamic sections.
3092 Allocate memory for them. */
3093 for (sec = dynobj->sections; sec != NULL; sec = sec->next)
3095 bool strip;
3097 if (!(sec->flags & SEC_LINKER_CREATED))
3098 continue;
3100 /* If we don't need this section, strip it from the output file.
3101 There were several sections primarily related to dynamic
3102 linking that must be create before the linker maps input
3103 sections to output sections. The linker does that before
3104 bfd_elf_size_dynamic_sections is called, and it is that
3105 function which decides whether anything needs to go into
3106 these sections. */
3108 strip = (sec->size == 0);
3110 if (sec == ia64_info->root.sgot)
3111 strip = false;
3112 else if (sec == ia64_info->root.srelgot)
3114 if (strip)
3115 ia64_info->root.srelgot = NULL;
3116 else
3117 /* We use the reloc_count field as a counter if we need to
3118 copy relocs into the output file. */
3119 sec->reloc_count = 0;
3121 else if (sec == ia64_info->fptr_sec)
3123 if (strip)
3124 ia64_info->fptr_sec = NULL;
3126 else if (sec == ia64_info->rel_fptr_sec)
3128 if (strip)
3129 ia64_info->rel_fptr_sec = NULL;
3130 else
3131 /* We use the reloc_count field as a counter if we need to
3132 copy relocs into the output file. */
3133 sec->reloc_count = 0;
3135 else if (sec == ia64_info->root.splt)
3137 if (strip)
3138 ia64_info->root.splt = NULL;
3140 else if (sec == ia64_info->pltoff_sec)
3142 if (strip)
3143 ia64_info->pltoff_sec = NULL;
3145 else if (sec == ia64_info->rel_pltoff_sec)
3147 if (strip)
3148 ia64_info->rel_pltoff_sec = NULL;
3149 else
3151 ia64_info->root.dt_jmprel_required = true;
3152 /* We use the reloc_count field as a counter if we need to
3153 copy relocs into the output file. */
3154 sec->reloc_count = 0;
3157 else
3159 const char *name;
3161 /* It's OK to base decisions on the section name, because none
3162 of the dynobj section names depend upon the input files. */
3163 name = bfd_section_name (sec);
3165 if (strcmp (name, ".got.plt") == 0)
3166 strip = false;
3167 else if (startswith (name, ".rel"))
3169 if (!strip)
3171 /* We use the reloc_count field as a counter if we need to
3172 copy relocs into the output file. */
3173 sec->reloc_count = 0;
3176 else
3177 continue;
3180 if (strip)
3181 sec->flags |= SEC_EXCLUDE;
3182 else
3184 /* Allocate memory for the section contents. */
3185 sec->contents = (bfd_byte *) bfd_zalloc (dynobj, sec->size);
3186 if (sec->contents == NULL && sec->size != 0)
3187 return false;
3188 sec->alloced = 1;
3192 if (ia64_info->root.dynamic_sections_created)
3194 /* Add some entries to the .dynamic section. We fill in the values
3195 later (in finish_dynamic_sections) but we must add the entries now
3196 so that we get the correct size for the .dynamic section. */
3198 #define add_dynamic_entry(TAG, VAL) \
3199 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
3201 if (!_bfd_elf_add_dynamic_tags (output_bfd, info, true))
3202 return false;
3204 if (!add_dynamic_entry (DT_IA_64_PLT_RESERVE, 0))
3205 return false;
3208 /* ??? Perhaps force __gp local. */
3210 return true;
3213 static void
3214 elfNN_ia64_install_dyn_reloc (bfd *abfd, struct bfd_link_info *info,
3215 asection *sec, asection *srel,
3216 bfd_vma offset, unsigned int type,
3217 long dynindx, bfd_vma addend)
3219 Elf_Internal_Rela outrel;
3220 bfd_byte *loc;
3222 BFD_ASSERT (dynindx != -1);
3223 outrel.r_info = ELFNN_R_INFO (dynindx, type);
3224 outrel.r_addend = addend;
3225 outrel.r_offset = _bfd_elf_section_offset (abfd, info, sec, offset);
3226 if (outrel.r_offset >= (bfd_vma) -2)
3228 /* Run for the hills. We shouldn't be outputting a relocation
3229 for this. So do what everyone else does and output a no-op. */
3230 outrel.r_info = ELFNN_R_INFO (0, R_IA64_NONE);
3231 outrel.r_addend = 0;
3232 outrel.r_offset = 0;
3234 else
3235 outrel.r_offset += sec->output_section->vma + sec->output_offset;
3237 loc = srel->contents;
3238 loc += srel->reloc_count++ * sizeof (ElfNN_External_Rela);
3239 bfd_elfNN_swap_reloca_out (abfd, &outrel, loc);
3240 BFD_ASSERT (sizeof (ElfNN_External_Rela) * srel->reloc_count <= srel->size);
3243 /* Store an entry for target address TARGET_ADDR in the linkage table
3244 and return the gp-relative address of the linkage table entry. */
3246 static bfd_vma
3247 set_got_entry (bfd *abfd, struct bfd_link_info *info,
3248 struct elfNN_ia64_dyn_sym_info *dyn_i,
3249 long dynindx, bfd_vma addend, bfd_vma value,
3250 unsigned int dyn_r_type)
3252 struct elfNN_ia64_link_hash_table *ia64_info;
3253 asection *got_sec;
3254 bool done;
3255 bfd_vma got_offset;
3257 ia64_info = elfNN_ia64_hash_table (info);
3258 if (ia64_info == NULL)
3259 return 0;
3261 got_sec = ia64_info->root.sgot;
3263 switch (dyn_r_type)
3265 case R_IA64_TPREL64LSB:
3266 done = dyn_i->tprel_done;
3267 dyn_i->tprel_done = true;
3268 got_offset = dyn_i->tprel_offset;
3269 break;
3270 case R_IA64_DTPMOD64LSB:
3271 if (dyn_i->dtpmod_offset != ia64_info->self_dtpmod_offset)
3273 done = dyn_i->dtpmod_done;
3274 dyn_i->dtpmod_done = true;
3276 else
3278 done = ia64_info->self_dtpmod_done;
3279 ia64_info->self_dtpmod_done = true;
3280 dynindx = 0;
3282 got_offset = dyn_i->dtpmod_offset;
3283 break;
3284 case R_IA64_DTPREL32LSB:
3285 case R_IA64_DTPREL64LSB:
3286 done = dyn_i->dtprel_done;
3287 dyn_i->dtprel_done = true;
3288 got_offset = dyn_i->dtprel_offset;
3289 break;
3290 default:
3291 done = dyn_i->got_done;
3292 dyn_i->got_done = true;
3293 got_offset = dyn_i->got_offset;
3294 break;
3297 BFD_ASSERT ((got_offset & 7) == 0);
3299 if (! done)
3301 /* Store the target address in the linkage table entry. */
3302 bfd_put_64 (abfd, value, got_sec->contents + got_offset);
3304 /* Install a dynamic relocation if needed. */
3305 if (((bfd_link_pic (info)
3306 && (!dyn_i->h
3307 || ELF_ST_VISIBILITY (dyn_i->h->other) == STV_DEFAULT
3308 || dyn_i->h->root.type != bfd_link_hash_undefweak)
3309 && dyn_r_type != R_IA64_DTPREL32LSB
3310 && dyn_r_type != R_IA64_DTPREL64LSB)
3311 || elfNN_ia64_dynamic_symbol_p (dyn_i->h, info, dyn_r_type)
3312 || (dynindx != -1
3313 && (dyn_r_type == R_IA64_FPTR32LSB
3314 || dyn_r_type == R_IA64_FPTR64LSB)))
3315 && (!dyn_i->want_ltoff_fptr
3316 || !bfd_link_pie (info)
3317 || !dyn_i->h
3318 || dyn_i->h->root.type != bfd_link_hash_undefweak))
3320 if (dynindx == -1
3321 && dyn_r_type != R_IA64_TPREL64LSB
3322 && dyn_r_type != R_IA64_DTPMOD64LSB
3323 && dyn_r_type != R_IA64_DTPREL32LSB
3324 && dyn_r_type != R_IA64_DTPREL64LSB)
3326 dyn_r_type = R_IA64_RELNNLSB;
3327 dynindx = 0;
3328 addend = value;
3331 if (bfd_big_endian (abfd))
3333 switch (dyn_r_type)
3335 case R_IA64_REL32LSB:
3336 dyn_r_type = R_IA64_REL32MSB;
3337 break;
3338 case R_IA64_DIR32LSB:
3339 dyn_r_type = R_IA64_DIR32MSB;
3340 break;
3341 case R_IA64_FPTR32LSB:
3342 dyn_r_type = R_IA64_FPTR32MSB;
3343 break;
3344 case R_IA64_DTPREL32LSB:
3345 dyn_r_type = R_IA64_DTPREL32MSB;
3346 break;
3347 case R_IA64_REL64LSB:
3348 dyn_r_type = R_IA64_REL64MSB;
3349 break;
3350 case R_IA64_DIR64LSB:
3351 dyn_r_type = R_IA64_DIR64MSB;
3352 break;
3353 case R_IA64_FPTR64LSB:
3354 dyn_r_type = R_IA64_FPTR64MSB;
3355 break;
3356 case R_IA64_TPREL64LSB:
3357 dyn_r_type = R_IA64_TPREL64MSB;
3358 break;
3359 case R_IA64_DTPMOD64LSB:
3360 dyn_r_type = R_IA64_DTPMOD64MSB;
3361 break;
3362 case R_IA64_DTPREL64LSB:
3363 dyn_r_type = R_IA64_DTPREL64MSB;
3364 break;
3365 default:
3366 BFD_ASSERT (false);
3367 break;
3371 elfNN_ia64_install_dyn_reloc (abfd, NULL, got_sec,
3372 ia64_info->root.srelgot,
3373 got_offset, dyn_r_type,
3374 dynindx, addend);
3378 /* Return the address of the linkage table entry. */
3379 value = (got_sec->output_section->vma
3380 + got_sec->output_offset
3381 + got_offset);
3383 return value;
3386 /* Fill in a function descriptor consisting of the function's code
3387 address and its global pointer. Return the descriptor's address. */
3389 static bfd_vma
3390 set_fptr_entry (bfd *abfd, struct bfd_link_info *info,
3391 struct elfNN_ia64_dyn_sym_info *dyn_i,
3392 bfd_vma value)
3394 struct elfNN_ia64_link_hash_table *ia64_info;
3395 asection *fptr_sec;
3397 ia64_info = elfNN_ia64_hash_table (info);
3398 if (ia64_info == NULL)
3399 return 0;
3401 fptr_sec = ia64_info->fptr_sec;
3403 if (!dyn_i->fptr_done)
3405 dyn_i->fptr_done = 1;
3407 /* Fill in the function descriptor. */
3408 bfd_put_64 (abfd, value, fptr_sec->contents + dyn_i->fptr_offset);
3409 bfd_put_64 (abfd, _bfd_get_gp_value (abfd),
3410 fptr_sec->contents + dyn_i->fptr_offset + 8);
3411 if (ia64_info->rel_fptr_sec)
3413 Elf_Internal_Rela outrel;
3414 bfd_byte *loc;
3416 if (bfd_little_endian (abfd))
3417 outrel.r_info = ELFNN_R_INFO (0, R_IA64_IPLTLSB);
3418 else
3419 outrel.r_info = ELFNN_R_INFO (0, R_IA64_IPLTMSB);
3420 outrel.r_addend = value;
3421 outrel.r_offset = (fptr_sec->output_section->vma
3422 + fptr_sec->output_offset
3423 + dyn_i->fptr_offset);
3424 loc = ia64_info->rel_fptr_sec->contents;
3425 loc += ia64_info->rel_fptr_sec->reloc_count++
3426 * sizeof (ElfNN_External_Rela);
3427 bfd_elfNN_swap_reloca_out (abfd, &outrel, loc);
3431 /* Return the descriptor's address. */
3432 value = (fptr_sec->output_section->vma
3433 + fptr_sec->output_offset
3434 + dyn_i->fptr_offset);
3436 return value;
3439 /* Fill in a PLTOFF entry consisting of the function's code address
3440 and its global pointer. Return the descriptor's address. */
3442 static bfd_vma
3443 set_pltoff_entry (bfd *abfd, struct bfd_link_info *info,
3444 struct elfNN_ia64_dyn_sym_info *dyn_i,
3445 bfd_vma value, bool is_plt)
3447 struct elfNN_ia64_link_hash_table *ia64_info;
3448 asection *pltoff_sec;
3450 ia64_info = elfNN_ia64_hash_table (info);
3451 if (ia64_info == NULL)
3452 return 0;
3454 pltoff_sec = ia64_info->pltoff_sec;
3456 /* Don't do anything if this symbol uses a real PLT entry. In
3457 that case, we'll fill this in during finish_dynamic_symbol. */
3458 if ((! dyn_i->want_plt || is_plt)
3459 && !dyn_i->pltoff_done)
3461 bfd_vma gp = _bfd_get_gp_value (abfd);
3463 /* Fill in the function descriptor. */
3464 bfd_put_64 (abfd, value, pltoff_sec->contents + dyn_i->pltoff_offset);
3465 bfd_put_64 (abfd, gp, pltoff_sec->contents + dyn_i->pltoff_offset + 8);
3467 /* Install dynamic relocations if needed. */
3468 if (!is_plt
3469 && bfd_link_pic (info)
3470 && (!dyn_i->h
3471 || ELF_ST_VISIBILITY (dyn_i->h->other) == STV_DEFAULT
3472 || dyn_i->h->root.type != bfd_link_hash_undefweak))
3474 unsigned int dyn_r_type;
3476 if (bfd_big_endian (abfd))
3477 dyn_r_type = R_IA64_RELNNMSB;
3478 else
3479 dyn_r_type = R_IA64_RELNNLSB;
3481 elfNN_ia64_install_dyn_reloc (abfd, NULL, pltoff_sec,
3482 ia64_info->rel_pltoff_sec,
3483 dyn_i->pltoff_offset,
3484 dyn_r_type, 0, value);
3485 elfNN_ia64_install_dyn_reloc (abfd, NULL, pltoff_sec,
3486 ia64_info->rel_pltoff_sec,
3487 dyn_i->pltoff_offset + ARCH_SIZE / 8,
3488 dyn_r_type, 0, gp);
3491 dyn_i->pltoff_done = 1;
3494 /* Return the descriptor's address. */
3495 value = (pltoff_sec->output_section->vma
3496 + pltoff_sec->output_offset
3497 + dyn_i->pltoff_offset);
3499 return value;
3502 /* Return the base VMA address which should be subtracted from real addresses
3503 when resolving @tprel() relocation.
3504 Main program TLS (whose template starts at PT_TLS p_vaddr)
3505 is assigned offset round(2 * size of pointer, PT_TLS p_align). */
3507 static bfd_vma
3508 elfNN_ia64_tprel_base (struct bfd_link_info *info)
3510 asection *tls_sec = elf_hash_table (info)->tls_sec;
3511 return tls_sec->vma - align_power ((bfd_vma) ARCH_SIZE / 4,
3512 tls_sec->alignment_power);
3515 /* Return the base VMA address which should be subtracted from real addresses
3516 when resolving @dtprel() relocation.
3517 This is PT_TLS segment p_vaddr. */
3519 static bfd_vma
3520 elfNN_ia64_dtprel_base (struct bfd_link_info *info)
3522 return elf_hash_table (info)->tls_sec->vma;
3525 /* Called through qsort to sort the .IA_64.unwind section during a
3526 non-relocatable link. Set elfNN_ia64_unwind_entry_compare_bfd
3527 to the output bfd so we can do proper endianness frobbing. */
3529 static bfd *elfNN_ia64_unwind_entry_compare_bfd;
3531 static int
3532 elfNN_ia64_unwind_entry_compare (const void * a, const void * b)
3534 bfd_vma av, bv;
3536 av = bfd_get_64 (elfNN_ia64_unwind_entry_compare_bfd, a);
3537 bv = bfd_get_64 (elfNN_ia64_unwind_entry_compare_bfd, b);
3539 return (av < bv ? -1 : av > bv ? 1 : 0);
3542 /* Make sure we've got ourselves a nice fat __gp value. */
3543 static bool
3544 elfNN_ia64_choose_gp (bfd *abfd, struct bfd_link_info *info, bool final)
3546 bfd_vma min_vma = (bfd_vma) -1, max_vma = 0;
3547 bfd_vma min_short_vma = min_vma, max_short_vma = 0;
3548 struct elf_link_hash_entry *gp;
3549 bfd_vma gp_val;
3550 asection *os;
3551 struct elfNN_ia64_link_hash_table *ia64_info;
3553 ia64_info = elfNN_ia64_hash_table (info);
3554 if (ia64_info == NULL)
3555 return false;
3557 /* Find the min and max vma of all sections marked short. Also collect
3558 min and max vma of any type, for use in selecting a nice gp. */
3559 for (os = abfd->sections; os ; os = os->next)
3561 bfd_vma lo, hi;
3563 if ((os->flags & SEC_ALLOC) == 0)
3564 continue;
3566 lo = os->vma;
3567 /* When this function is called from elfNN_ia64_final_link
3568 the correct value to use is os->size. When called from
3569 elfNN_ia64_relax_section we are in the middle of section
3570 sizing; some sections will already have os->size set, others
3571 will have os->size zero and os->rawsize the previous size. */
3572 hi = os->vma + (!final && os->rawsize ? os->rawsize : os->size);
3573 if (hi < lo)
3574 hi = (bfd_vma) -1;
3576 if (min_vma > lo)
3577 min_vma = lo;
3578 if (max_vma < hi)
3579 max_vma = hi;
3580 if (os->flags & SEC_SMALL_DATA)
3582 if (min_short_vma > lo)
3583 min_short_vma = lo;
3584 if (max_short_vma < hi)
3585 max_short_vma = hi;
3589 if (ia64_info->min_short_sec)
3591 if (min_short_vma
3592 > (ia64_info->min_short_sec->vma
3593 + ia64_info->min_short_offset))
3594 min_short_vma = (ia64_info->min_short_sec->vma
3595 + ia64_info->min_short_offset);
3596 if (max_short_vma
3597 < (ia64_info->max_short_sec->vma
3598 + ia64_info->max_short_offset))
3599 max_short_vma = (ia64_info->max_short_sec->vma
3600 + ia64_info->max_short_offset);
3603 /* See if the user wants to force a value. */
3604 gp = elf_link_hash_lookup (elf_hash_table (info), "__gp", false,
3605 false, false);
3607 if (gp
3608 && (gp->root.type == bfd_link_hash_defined
3609 || gp->root.type == bfd_link_hash_defweak))
3611 asection *gp_sec = gp->root.u.def.section;
3612 gp_val = (gp->root.u.def.value
3613 + gp_sec->output_section->vma
3614 + gp_sec->output_offset);
3616 else
3618 /* Pick a sensible value. */
3620 if (ia64_info->min_short_sec)
3622 bfd_vma short_range = max_short_vma - min_short_vma;
3624 /* If min_short_sec is set, pick one in the middle bewteen
3625 min_short_vma and max_short_vma. */
3626 if (short_range >= 0x400000)
3627 goto overflow;
3628 gp_val = min_short_vma + short_range / 2;
3630 else
3632 asection *got_sec = ia64_info->root.sgot;
3634 /* Start with just the address of the .got. */
3635 if (got_sec)
3636 gp_val = got_sec->output_section->vma;
3637 else if (max_short_vma != 0)
3638 gp_val = min_short_vma;
3639 else if (max_vma - min_vma < 0x200000)
3640 gp_val = min_vma;
3641 else
3642 gp_val = max_vma - 0x200000 + 8;
3645 /* If it is possible to address the entire image, but we
3646 don't with the choice above, adjust. */
3647 if (max_vma - min_vma < 0x400000
3648 && (max_vma - gp_val >= 0x200000
3649 || gp_val - min_vma > 0x200000))
3650 gp_val = min_vma + 0x200000;
3651 else if (max_short_vma != 0)
3653 /* If we don't cover all the short data, adjust. */
3654 if (max_short_vma - gp_val >= 0x200000)
3655 gp_val = min_short_vma + 0x200000;
3657 /* If we're addressing stuff past the end, adjust back. */
3658 if (gp_val > max_vma)
3659 gp_val = max_vma - 0x200000 + 8;
3663 /* Validate whether all SHF_IA_64_SHORT sections are within
3664 range of the chosen GP. */
3666 if (max_short_vma != 0)
3668 if (max_short_vma - min_short_vma >= 0x400000)
3670 overflow:
3671 _bfd_error_handler
3672 /* xgettext:c-format */
3673 (_("%pB: short data segment overflowed (%#" PRIx64 " >= 0x400000)"),
3674 abfd, (uint64_t) (max_short_vma - min_short_vma));
3675 return false;
3677 else if ((gp_val > min_short_vma
3678 && gp_val - min_short_vma > 0x200000)
3679 || (gp_val < max_short_vma
3680 && max_short_vma - gp_val >= 0x200000))
3682 _bfd_error_handler
3683 (_("%pB: __gp does not cover short data segment"), abfd);
3684 return false;
3688 _bfd_set_gp_value (abfd, gp_val);
3690 return true;
3693 static bool
3694 elfNN_ia64_final_link (bfd *abfd, struct bfd_link_info *info)
3696 struct elfNN_ia64_link_hash_table *ia64_info;
3697 asection *unwind_output_sec;
3699 ia64_info = elfNN_ia64_hash_table (info);
3700 if (ia64_info == NULL)
3701 return false;
3703 /* Make sure we've got ourselves a nice fat __gp value. */
3704 if (!bfd_link_relocatable (info))
3706 bfd_vma gp_val;
3707 struct elf_link_hash_entry *gp;
3709 /* We assume after gp is set, section size will only decrease. We
3710 need to adjust gp for it. */
3711 _bfd_set_gp_value (abfd, 0);
3712 if (! elfNN_ia64_choose_gp (abfd, info, true))
3713 return false;
3714 gp_val = _bfd_get_gp_value (abfd);
3716 gp = elf_link_hash_lookup (elf_hash_table (info), "__gp", false,
3717 false, false);
3718 if (gp)
3720 gp->root.type = bfd_link_hash_defined;
3721 gp->root.u.def.value = gp_val;
3722 gp->root.u.def.section = bfd_abs_section_ptr;
3726 /* If we're producing a final executable, we need to sort the contents
3727 of the .IA_64.unwind section. Force this section to be relocated
3728 into memory rather than written immediately to the output file. */
3729 unwind_output_sec = NULL;
3730 if (!bfd_link_relocatable (info))
3732 asection *s = bfd_get_section_by_name (abfd, ELF_STRING_ia64_unwind);
3733 if (s)
3735 unwind_output_sec = s->output_section;
3736 unwind_output_sec->contents
3737 = bfd_malloc (unwind_output_sec->size);
3738 if (unwind_output_sec->contents == NULL)
3739 return false;
3743 /* Invoke the regular ELF backend linker to do all the work. */
3744 if (!bfd_elf_final_link (abfd, info))
3745 return false;
3747 if (unwind_output_sec)
3749 elfNN_ia64_unwind_entry_compare_bfd = abfd;
3750 qsort (unwind_output_sec->contents,
3751 (size_t) (unwind_output_sec->size / 24),
3753 elfNN_ia64_unwind_entry_compare);
3755 if (! bfd_set_section_contents (abfd, unwind_output_sec,
3756 unwind_output_sec->contents, (bfd_vma) 0,
3757 unwind_output_sec->size))
3758 return false;
3761 return true;
3764 static int
3765 elfNN_ia64_relocate_section (bfd *output_bfd,
3766 struct bfd_link_info *info,
3767 bfd *input_bfd,
3768 asection *input_section,
3769 bfd_byte *contents,
3770 Elf_Internal_Rela *relocs,
3771 Elf_Internal_Sym *local_syms,
3772 asection **local_sections)
3774 struct elfNN_ia64_link_hash_table *ia64_info;
3775 Elf_Internal_Shdr *symtab_hdr;
3776 Elf_Internal_Rela *rel;
3777 Elf_Internal_Rela *relend;
3778 asection *srel;
3779 bool ret_val = true; /* for non-fatal errors */
3780 bfd_vma gp_val;
3782 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
3783 ia64_info = elfNN_ia64_hash_table (info);
3784 if (ia64_info == NULL)
3785 return false;
3787 /* Infect various flags from the input section to the output section. */
3788 if (bfd_link_relocatable (info))
3790 bfd_vma flags;
3792 flags = elf_section_data(input_section)->this_hdr.sh_flags;
3793 flags &= SHF_IA_64_NORECOV;
3795 elf_section_data(input_section->output_section)
3796 ->this_hdr.sh_flags |= flags;
3799 gp_val = _bfd_get_gp_value (output_bfd);
3800 srel = get_reloc_section (input_bfd, ia64_info, input_section, false);
3802 rel = relocs;
3803 relend = relocs + input_section->reloc_count;
3804 for (; rel < relend; ++rel)
3806 struct elf_link_hash_entry *h;
3807 struct elfNN_ia64_dyn_sym_info *dyn_i;
3808 bfd_reloc_status_type r;
3809 reloc_howto_type *howto;
3810 unsigned long r_symndx;
3811 Elf_Internal_Sym *sym;
3812 unsigned int r_type;
3813 bfd_vma value;
3814 asection *sym_sec;
3815 bfd_byte *hit_addr;
3816 bool dynamic_symbol_p;
3817 bool undef_weak_ref;
3819 r_type = ELFNN_R_TYPE (rel->r_info);
3820 if (r_type > R_IA64_MAX_RELOC_CODE)
3822 /* xgettext:c-format */
3823 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
3824 input_bfd, (int) r_type);
3825 bfd_set_error (bfd_error_bad_value);
3826 ret_val = false;
3827 continue;
3830 howto = ia64_elf_lookup_howto (r_type);
3831 if (howto == NULL)
3833 ret_val = false;
3834 continue;
3837 r_symndx = ELFNN_R_SYM (rel->r_info);
3838 h = NULL;
3839 sym = NULL;
3840 sym_sec = NULL;
3841 undef_weak_ref = false;
3843 if (r_symndx < symtab_hdr->sh_info)
3845 /* Reloc against local symbol. */
3846 asection *msec;
3847 sym = local_syms + r_symndx;
3848 sym_sec = local_sections[r_symndx];
3849 msec = sym_sec;
3850 value = _bfd_elf_rela_local_sym (output_bfd, sym, &msec, rel);
3851 if (!bfd_link_relocatable (info)
3852 && (sym_sec->flags & SEC_MERGE) != 0
3853 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
3854 && sym_sec->sec_info_type == SEC_INFO_TYPE_MERGE)
3856 struct elfNN_ia64_local_hash_entry *loc_h;
3858 loc_h = get_local_sym_hash (ia64_info, input_bfd, rel, false);
3859 if (loc_h && ! loc_h->sec_merge_done)
3861 struct elfNN_ia64_dyn_sym_info *dynent;
3862 unsigned int count;
3864 for (count = loc_h->count, dynent = loc_h->info;
3865 count != 0;
3866 count--, dynent++)
3868 msec = sym_sec;
3869 dynent->addend =
3870 _bfd_merged_section_offset (output_bfd, &msec,
3871 elf_section_data (msec)->
3872 sec_info,
3873 sym->st_value
3874 + dynent->addend);
3875 dynent->addend -= sym->st_value;
3876 dynent->addend += msec->output_section->vma
3877 + msec->output_offset
3878 - sym_sec->output_section->vma
3879 - sym_sec->output_offset;
3882 /* We may have introduced duplicated entries. We need
3883 to remove them properly. */
3884 count = sort_dyn_sym_info (loc_h->info, loc_h->count);
3885 if (count != loc_h->count)
3887 loc_h->count = count;
3888 loc_h->sorted_count = count;
3891 loc_h->sec_merge_done = 1;
3895 else
3897 bool unresolved_reloc;
3898 bool warned, ignored;
3899 struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (input_bfd);
3901 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
3902 r_symndx, symtab_hdr, sym_hashes,
3903 h, sym_sec, value,
3904 unresolved_reloc, warned, ignored);
3906 if (h->root.type == bfd_link_hash_undefweak)
3907 undef_weak_ref = true;
3908 else if (warned || (ignored && bfd_link_executable (info)))
3909 continue;
3912 if (sym_sec != NULL && discarded_section (sym_sec))
3913 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
3914 rel, 1, relend, howto, 0, contents);
3916 if (bfd_link_relocatable (info))
3917 continue;
3919 hit_addr = contents + rel->r_offset;
3920 value += rel->r_addend;
3921 dynamic_symbol_p = elfNN_ia64_dynamic_symbol_p (h, info, r_type);
3923 switch (r_type)
3925 case R_IA64_NONE:
3926 case R_IA64_LDXMOV:
3927 continue;
3929 case R_IA64_IMM14:
3930 case R_IA64_IMM22:
3931 case R_IA64_IMM64:
3932 case R_IA64_DIR32MSB:
3933 case R_IA64_DIR32LSB:
3934 case R_IA64_DIR64MSB:
3935 case R_IA64_DIR64LSB:
3936 /* Install a dynamic relocation for this reloc. */
3937 if ((dynamic_symbol_p || bfd_link_pic (info))
3938 && r_symndx != STN_UNDEF
3939 && (input_section->flags & SEC_ALLOC) != 0)
3941 unsigned int dyn_r_type;
3942 long dynindx;
3943 bfd_vma addend;
3945 BFD_ASSERT (srel != NULL);
3947 switch (r_type)
3949 case R_IA64_IMM14:
3950 case R_IA64_IMM22:
3951 case R_IA64_IMM64:
3952 /* ??? People shouldn't be doing non-pic code in
3953 shared libraries nor dynamic executables. */
3954 _bfd_error_handler
3955 /* xgettext:c-format */
3956 (_("%pB: non-pic code with imm relocation against dynamic symbol `%s'"),
3957 input_bfd,
3958 h ? h->root.root.string
3959 : bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
3960 sym_sec));
3961 ret_val = false;
3962 continue;
3964 default:
3965 break;
3968 /* If we don't need dynamic symbol lookup, find a
3969 matching RELATIVE relocation. */
3970 dyn_r_type = r_type;
3971 if (dynamic_symbol_p)
3973 dynindx = h->dynindx;
3974 addend = rel->r_addend;
3975 value = 0;
3977 else
3979 switch (r_type)
3981 case R_IA64_DIR32MSB:
3982 dyn_r_type = R_IA64_REL32MSB;
3983 break;
3984 case R_IA64_DIR32LSB:
3985 dyn_r_type = R_IA64_REL32LSB;
3986 break;
3987 case R_IA64_DIR64MSB:
3988 dyn_r_type = R_IA64_REL64MSB;
3989 break;
3990 case R_IA64_DIR64LSB:
3991 dyn_r_type = R_IA64_REL64LSB;
3992 break;
3994 default:
3995 break;
3997 dynindx = 0;
3998 addend = value;
4001 elfNN_ia64_install_dyn_reloc (output_bfd, info, input_section,
4002 srel, rel->r_offset, dyn_r_type,
4003 dynindx, addend);
4005 /* Fall through. */
4007 case R_IA64_LTV32MSB:
4008 case R_IA64_LTV32LSB:
4009 case R_IA64_LTV64MSB:
4010 case R_IA64_LTV64LSB:
4011 r = ia64_elf_install_value (hit_addr, value, r_type);
4012 break;
4014 case R_IA64_GPREL22:
4015 case R_IA64_GPREL64I:
4016 case R_IA64_GPREL32MSB:
4017 case R_IA64_GPREL32LSB:
4018 case R_IA64_GPREL64MSB:
4019 case R_IA64_GPREL64LSB:
4020 if (dynamic_symbol_p)
4022 _bfd_error_handler
4023 /* xgettext:c-format */
4024 (_("%pB: @gprel relocation against dynamic symbol %s"),
4025 input_bfd,
4026 h ? h->root.root.string
4027 : bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4028 sym_sec));
4029 ret_val = false;
4030 continue;
4032 value -= gp_val;
4033 r = ia64_elf_install_value (hit_addr, value, r_type);
4034 break;
4036 case R_IA64_LTOFF22:
4037 case R_IA64_LTOFF22X:
4038 case R_IA64_LTOFF64I:
4039 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, false);
4040 value = set_got_entry (input_bfd, info, dyn_i, (h ? h->dynindx : -1),
4041 rel->r_addend, value, R_IA64_DIRNNLSB);
4042 value -= gp_val;
4043 r = ia64_elf_install_value (hit_addr, value, r_type);
4044 break;
4046 case R_IA64_PLTOFF22:
4047 case R_IA64_PLTOFF64I:
4048 case R_IA64_PLTOFF64MSB:
4049 case R_IA64_PLTOFF64LSB:
4050 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, false);
4051 value = set_pltoff_entry (output_bfd, info, dyn_i, value, false);
4052 value -= gp_val;
4053 r = ia64_elf_install_value (hit_addr, value, r_type);
4054 break;
4056 case R_IA64_FPTR64I:
4057 case R_IA64_FPTR32MSB:
4058 case R_IA64_FPTR32LSB:
4059 case R_IA64_FPTR64MSB:
4060 case R_IA64_FPTR64LSB:
4061 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, false);
4062 if (dyn_i->want_fptr)
4064 if (!undef_weak_ref)
4065 value = set_fptr_entry (output_bfd, info, dyn_i, value);
4067 if (!dyn_i->want_fptr || bfd_link_pie (info))
4069 long dynindx;
4070 unsigned int dyn_r_type = r_type;
4071 bfd_vma addend = rel->r_addend;
4073 /* Otherwise, we expect the dynamic linker to create
4074 the entry. */
4076 if (dyn_i->want_fptr)
4078 if (r_type == R_IA64_FPTR64I)
4080 /* We can't represent this without a dynamic symbol.
4081 Adjust the relocation to be against an output
4082 section symbol, which are always present in the
4083 dynamic symbol table. */
4084 /* ??? People shouldn't be doing non-pic code in
4085 shared libraries. Hork. */
4086 _bfd_error_handler
4087 (_("%pB: linking non-pic code in a position independent executable"),
4088 input_bfd);
4089 ret_val = false;
4090 continue;
4092 dynindx = 0;
4093 addend = value;
4094 dyn_r_type = r_type + R_IA64_RELNNLSB - R_IA64_FPTRNNLSB;
4096 else if (h)
4098 if (h->dynindx != -1)
4099 dynindx = h->dynindx;
4100 else
4101 dynindx = (_bfd_elf_link_lookup_local_dynindx
4102 (info, h->root.u.def.section->owner,
4103 global_sym_index (h)));
4104 value = 0;
4106 else
4108 dynindx = (_bfd_elf_link_lookup_local_dynindx
4109 (info, input_bfd, (long) r_symndx));
4110 value = 0;
4113 elfNN_ia64_install_dyn_reloc (output_bfd, info, input_section,
4114 srel, rel->r_offset, dyn_r_type,
4115 dynindx, addend);
4118 r = ia64_elf_install_value (hit_addr, value, r_type);
4119 break;
4121 case R_IA64_LTOFF_FPTR22:
4122 case R_IA64_LTOFF_FPTR64I:
4123 case R_IA64_LTOFF_FPTR32MSB:
4124 case R_IA64_LTOFF_FPTR32LSB:
4125 case R_IA64_LTOFF_FPTR64MSB:
4126 case R_IA64_LTOFF_FPTR64LSB:
4128 long dynindx;
4130 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, false);
4131 if (dyn_i->want_fptr)
4133 BFD_ASSERT (h == NULL || h->dynindx == -1);
4134 if (!undef_weak_ref)
4135 value = set_fptr_entry (output_bfd, info, dyn_i, value);
4136 dynindx = -1;
4138 else
4140 /* Otherwise, we expect the dynamic linker to create
4141 the entry. */
4142 if (h)
4144 if (h->dynindx != -1)
4145 dynindx = h->dynindx;
4146 else
4147 dynindx = (_bfd_elf_link_lookup_local_dynindx
4148 (info, h->root.u.def.section->owner,
4149 global_sym_index (h)));
4151 else
4152 dynindx = (_bfd_elf_link_lookup_local_dynindx
4153 (info, input_bfd, (long) r_symndx));
4154 value = 0;
4157 value = set_got_entry (output_bfd, info, dyn_i, dynindx,
4158 rel->r_addend, value, R_IA64_FPTRNNLSB);
4159 value -= gp_val;
4160 r = ia64_elf_install_value (hit_addr, value, r_type);
4162 break;
4164 case R_IA64_PCREL32MSB:
4165 case R_IA64_PCREL32LSB:
4166 case R_IA64_PCREL64MSB:
4167 case R_IA64_PCREL64LSB:
4168 /* Install a dynamic relocation for this reloc. */
4169 if (dynamic_symbol_p && r_symndx != STN_UNDEF)
4171 BFD_ASSERT (srel != NULL);
4173 elfNN_ia64_install_dyn_reloc (output_bfd, info, input_section,
4174 srel, rel->r_offset, r_type,
4175 h->dynindx, rel->r_addend);
4177 goto finish_pcrel;
4179 case R_IA64_PCREL21B:
4180 case R_IA64_PCREL60B:
4181 /* We should have created a PLT entry for any dynamic symbol. */
4182 dyn_i = NULL;
4183 if (h)
4184 dyn_i = get_dyn_sym_info (ia64_info, h, NULL, NULL, false);
4186 if (dyn_i && dyn_i->want_plt2)
4188 /* Should have caught this earlier. */
4189 BFD_ASSERT (rel->r_addend == 0);
4191 value = (ia64_info->root.splt->output_section->vma
4192 + ia64_info->root.splt->output_offset
4193 + dyn_i->plt2_offset);
4195 else
4197 /* Since there's no PLT entry, Validate that this is
4198 locally defined. */
4199 BFD_ASSERT (undef_weak_ref || sym_sec->output_section != NULL);
4201 /* If the symbol is undef_weak, we shouldn't be trying
4202 to call it. There's every chance that we'd wind up
4203 with an out-of-range fixup here. Don't bother setting
4204 any value at all. */
4205 if (undef_weak_ref)
4206 continue;
4208 goto finish_pcrel;
4210 case R_IA64_PCREL21BI:
4211 case R_IA64_PCREL21F:
4212 case R_IA64_PCREL21M:
4213 case R_IA64_PCREL22:
4214 case R_IA64_PCREL64I:
4215 /* The PCREL21BI reloc is specifically not intended for use with
4216 dynamic relocs. PCREL21F and PCREL21M are used for speculation
4217 fixup code, and thus probably ought not be dynamic. The
4218 PCREL22 and PCREL64I relocs aren't emitted as dynamic relocs. */
4219 if (dynamic_symbol_p)
4221 const char *msg;
4223 if (r_type == R_IA64_PCREL21BI)
4224 /* xgettext:c-format */
4225 msg = _("%pB: @internal branch to dynamic symbol %s");
4226 else if (r_type == R_IA64_PCREL21F || r_type == R_IA64_PCREL21M)
4227 /* xgettext:c-format */
4228 msg = _("%pB: speculation fixup to dynamic symbol %s");
4229 else
4230 /* xgettext:c-format */
4231 msg = _("%pB: @pcrel relocation against dynamic symbol %s");
4232 _bfd_error_handler (msg, input_bfd,
4233 h ? h->root.root.string
4234 : bfd_elf_sym_name (input_bfd,
4235 symtab_hdr,
4236 sym,
4237 sym_sec));
4238 ret_val = false;
4239 continue;
4241 goto finish_pcrel;
4243 finish_pcrel:
4244 /* Make pc-relative. */
4245 value -= (input_section->output_section->vma
4246 + input_section->output_offset
4247 + rel->r_offset) & ~ (bfd_vma) 0x3;
4248 r = ia64_elf_install_value (hit_addr, value, r_type);
4249 break;
4251 case R_IA64_SEGREL32MSB:
4252 case R_IA64_SEGREL32LSB:
4253 case R_IA64_SEGREL64MSB:
4254 case R_IA64_SEGREL64LSB:
4256 /* Find the segment that contains the output_section. */
4257 Elf_Internal_Phdr *p = _bfd_elf_find_segment_containing_section
4258 (output_bfd, input_section->output_section);
4260 if (p == NULL)
4262 r = bfd_reloc_notsupported;
4264 else
4266 /* The VMA of the segment is the vaddr of the associated
4267 program header. */
4268 if (value > p->p_vaddr)
4269 value -= p->p_vaddr;
4270 else
4271 value = 0;
4272 r = ia64_elf_install_value (hit_addr, value, r_type);
4274 break;
4277 case R_IA64_SECREL32MSB:
4278 case R_IA64_SECREL32LSB:
4279 case R_IA64_SECREL64MSB:
4280 case R_IA64_SECREL64LSB:
4281 /* Make output-section relative to section where the symbol
4282 is defined. PR 475 */
4283 if (sym_sec)
4284 value -= sym_sec->output_section->vma;
4285 r = ia64_elf_install_value (hit_addr, value, r_type);
4286 break;
4288 case R_IA64_IPLTMSB:
4289 case R_IA64_IPLTLSB:
4290 /* Install a dynamic relocation for this reloc. */
4291 if ((dynamic_symbol_p || bfd_link_pic (info))
4292 && (input_section->flags & SEC_ALLOC) != 0)
4294 BFD_ASSERT (srel != NULL);
4296 /* If we don't need dynamic symbol lookup, install two
4297 RELATIVE relocations. */
4298 if (!dynamic_symbol_p)
4300 unsigned int dyn_r_type;
4302 if (r_type == R_IA64_IPLTMSB)
4303 dyn_r_type = R_IA64_REL64MSB;
4304 else
4305 dyn_r_type = R_IA64_REL64LSB;
4307 elfNN_ia64_install_dyn_reloc (output_bfd, info,
4308 input_section,
4309 srel, rel->r_offset,
4310 dyn_r_type, 0, value);
4311 elfNN_ia64_install_dyn_reloc (output_bfd, info,
4312 input_section,
4313 srel, rel->r_offset + 8,
4314 dyn_r_type, 0, gp_val);
4316 else
4317 elfNN_ia64_install_dyn_reloc (output_bfd, info, input_section,
4318 srel, rel->r_offset, r_type,
4319 h->dynindx, rel->r_addend);
4322 if (r_type == R_IA64_IPLTMSB)
4323 r_type = R_IA64_DIR64MSB;
4324 else
4325 r_type = R_IA64_DIR64LSB;
4326 ia64_elf_install_value (hit_addr, value, r_type);
4327 r = ia64_elf_install_value (hit_addr + 8, gp_val, r_type);
4328 break;
4330 case R_IA64_TPREL14:
4331 case R_IA64_TPREL22:
4332 case R_IA64_TPREL64I:
4333 if (elf_hash_table (info)->tls_sec == NULL)
4334 goto missing_tls_sec;
4335 value -= elfNN_ia64_tprel_base (info);
4336 r = ia64_elf_install_value (hit_addr, value, r_type);
4337 break;
4339 case R_IA64_DTPREL14:
4340 case R_IA64_DTPREL22:
4341 case R_IA64_DTPREL64I:
4342 case R_IA64_DTPREL32LSB:
4343 case R_IA64_DTPREL32MSB:
4344 case R_IA64_DTPREL64LSB:
4345 case R_IA64_DTPREL64MSB:
4346 if (elf_hash_table (info)->tls_sec == NULL)
4347 goto missing_tls_sec;
4348 value -= elfNN_ia64_dtprel_base (info);
4349 r = ia64_elf_install_value (hit_addr, value, r_type);
4350 break;
4352 case R_IA64_LTOFF_TPREL22:
4353 case R_IA64_LTOFF_DTPMOD22:
4354 case R_IA64_LTOFF_DTPREL22:
4356 int got_r_type;
4357 long dynindx = h ? h->dynindx : -1;
4358 bfd_vma r_addend = rel->r_addend;
4360 switch (r_type)
4362 default:
4363 case R_IA64_LTOFF_TPREL22:
4364 if (!dynamic_symbol_p)
4366 if (elf_hash_table (info)->tls_sec == NULL)
4367 goto missing_tls_sec;
4368 if (!bfd_link_pic (info))
4369 value -= elfNN_ia64_tprel_base (info);
4370 else
4372 r_addend += value - elfNN_ia64_dtprel_base (info);
4373 dynindx = 0;
4376 got_r_type = R_IA64_TPREL64LSB;
4377 break;
4378 case R_IA64_LTOFF_DTPMOD22:
4379 if (!dynamic_symbol_p && !bfd_link_pic (info))
4380 value = 1;
4381 got_r_type = R_IA64_DTPMOD64LSB;
4382 break;
4383 case R_IA64_LTOFF_DTPREL22:
4384 if (!dynamic_symbol_p)
4386 if (elf_hash_table (info)->tls_sec == NULL)
4387 goto missing_tls_sec;
4388 value -= elfNN_ia64_dtprel_base (info);
4390 got_r_type = R_IA64_DTPRELNNLSB;
4391 break;
4393 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, false);
4394 value = set_got_entry (input_bfd, info, dyn_i, dynindx, r_addend,
4395 value, got_r_type);
4396 value -= gp_val;
4397 r = ia64_elf_install_value (hit_addr, value, r_type);
4399 break;
4401 default:
4402 r = bfd_reloc_notsupported;
4403 break;
4406 switch (r)
4408 case bfd_reloc_ok:
4409 break;
4411 case bfd_reloc_undefined:
4412 /* This can happen for global table relative relocs if
4413 __gp is undefined. This is a panic situation so we
4414 don't try to continue. */
4415 (*info->callbacks->undefined_symbol)
4416 (info, "__gp", input_bfd, input_section, rel->r_offset, 1);
4417 return false;
4419 case bfd_reloc_notsupported:
4421 const char *name;
4423 if (h)
4424 name = h->root.root.string;
4425 else
4426 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4427 sym_sec);
4428 (*info->callbacks->warning) (info, _("unsupported reloc"),
4429 name, input_bfd,
4430 input_section, rel->r_offset);
4431 ret_val = false;
4433 break;
4435 case bfd_reloc_dangerous:
4436 case bfd_reloc_outofrange:
4437 case bfd_reloc_overflow:
4438 default:
4439 missing_tls_sec:
4441 const char *name;
4443 if (h)
4444 name = h->root.root.string;
4445 else
4446 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4447 sym_sec);
4449 switch (r_type)
4451 case R_IA64_TPREL14:
4452 case R_IA64_TPREL22:
4453 case R_IA64_TPREL64I:
4454 case R_IA64_DTPREL14:
4455 case R_IA64_DTPREL22:
4456 case R_IA64_DTPREL64I:
4457 case R_IA64_DTPREL32LSB:
4458 case R_IA64_DTPREL32MSB:
4459 case R_IA64_DTPREL64LSB:
4460 case R_IA64_DTPREL64MSB:
4461 case R_IA64_LTOFF_TPREL22:
4462 case R_IA64_LTOFF_DTPMOD22:
4463 case R_IA64_LTOFF_DTPREL22:
4464 _bfd_error_handler
4465 /* xgettext:c-format */
4466 (_("%pB: missing TLS section for relocation %s against `%s'"
4467 " at %#" PRIx64 " in section `%pA'."),
4468 input_bfd, howto->name, name,
4469 (uint64_t) rel->r_offset, input_section);
4470 break;
4472 case R_IA64_PCREL21B:
4473 case R_IA64_PCREL21BI:
4474 case R_IA64_PCREL21M:
4475 case R_IA64_PCREL21F:
4476 if (is_elf_hash_table (info->hash))
4478 /* Relaxtion is always performed for ELF output.
4479 Overflow failures for those relocations mean
4480 that the section is too big to relax. */
4481 _bfd_error_handler
4482 /* xgettext:c-format */
4483 (_("%pB: Can't relax br (%s) to `%s' at %#" PRIx64
4484 " in section `%pA' with size %#" PRIx64
4485 " (> 0x1000000)."),
4486 input_bfd, howto->name, name, (uint64_t) rel->r_offset,
4487 input_section, (uint64_t) input_section->size);
4488 break;
4490 /* Fall through. */
4491 default:
4492 (*info->callbacks->reloc_overflow) (info,
4493 &h->root,
4494 name,
4495 howto->name,
4496 (bfd_vma) 0,
4497 input_bfd,
4498 input_section,
4499 rel->r_offset);
4500 break;
4503 ret_val = false;
4505 break;
4509 return ret_val;
4512 static bool
4513 elfNN_ia64_finish_dynamic_symbol (bfd *output_bfd,
4514 struct bfd_link_info *info,
4515 struct elf_link_hash_entry *h,
4516 Elf_Internal_Sym *sym)
4518 struct elfNN_ia64_link_hash_table *ia64_info;
4519 struct elfNN_ia64_dyn_sym_info *dyn_i;
4521 ia64_info = elfNN_ia64_hash_table (info);
4523 dyn_i = get_dyn_sym_info (ia64_info, h, NULL, NULL, false);
4525 /* Fill in the PLT data, if required. */
4526 if (dyn_i && dyn_i->want_plt)
4528 Elf_Internal_Rela outrel;
4529 bfd_byte *loc;
4530 asection *plt_sec;
4531 bfd_vma plt_addr, pltoff_addr, gp_val, plt_index;
4533 gp_val = _bfd_get_gp_value (output_bfd);
4535 /* Initialize the minimal PLT entry. */
4537 plt_index = (dyn_i->plt_offset - PLT_HEADER_SIZE) / PLT_MIN_ENTRY_SIZE;
4538 plt_sec = ia64_info->root.splt;
4539 loc = plt_sec->contents + dyn_i->plt_offset;
4541 memcpy (loc, plt_min_entry, PLT_MIN_ENTRY_SIZE);
4542 ia64_elf_install_value (loc, plt_index, R_IA64_IMM22);
4543 ia64_elf_install_value (loc+2, -dyn_i->plt_offset, R_IA64_PCREL21B);
4545 plt_addr = (plt_sec->output_section->vma
4546 + plt_sec->output_offset
4547 + dyn_i->plt_offset);
4548 pltoff_addr = set_pltoff_entry (output_bfd, info, dyn_i, plt_addr, true);
4550 /* Initialize the FULL PLT entry, if needed. */
4551 if (dyn_i->want_plt2)
4553 loc = plt_sec->contents + dyn_i->plt2_offset;
4555 memcpy (loc, plt_full_entry, PLT_FULL_ENTRY_SIZE);
4556 ia64_elf_install_value (loc, pltoff_addr - gp_val, R_IA64_IMM22);
4558 /* Mark the symbol as undefined, rather than as defined in the
4559 plt section. Leave the value alone. */
4560 /* ??? We didn't redefine it in adjust_dynamic_symbol in the
4561 first place. But perhaps elflink.c did some for us. */
4562 if (!h->def_regular)
4563 sym->st_shndx = SHN_UNDEF;
4566 /* Create the dynamic relocation. */
4567 outrel.r_offset = pltoff_addr;
4568 if (bfd_little_endian (output_bfd))
4569 outrel.r_info = ELFNN_R_INFO (h->dynindx, R_IA64_IPLTLSB);
4570 else
4571 outrel.r_info = ELFNN_R_INFO (h->dynindx, R_IA64_IPLTMSB);
4572 outrel.r_addend = 0;
4574 /* This is fun. In the .IA_64.pltoff section, we've got entries
4575 that correspond both to real PLT entries, and those that
4576 happened to resolve to local symbols but need to be created
4577 to satisfy @pltoff relocations. The .rela.IA_64.pltoff
4578 relocations for the real PLT should come at the end of the
4579 section, so that they can be indexed by plt entry at runtime.
4581 We emitted all of the relocations for the non-PLT @pltoff
4582 entries during relocate_section. So we can consider the
4583 existing sec->reloc_count to be the base of the array of
4584 PLT relocations. */
4586 loc = ia64_info->rel_pltoff_sec->contents;
4587 loc += ((ia64_info->rel_pltoff_sec->reloc_count + plt_index)
4588 * sizeof (ElfNN_External_Rela));
4589 bfd_elfNN_swap_reloca_out (output_bfd, &outrel, loc);
4592 /* Mark some specially defined symbols as absolute. */
4593 if (h == ia64_info->root.hdynamic
4594 || h == ia64_info->root.hgot
4595 || h == ia64_info->root.hplt)
4596 sym->st_shndx = SHN_ABS;
4598 return true;
4601 static bool
4602 elfNN_ia64_finish_dynamic_sections (bfd *abfd,
4603 struct bfd_link_info *info)
4605 struct elfNN_ia64_link_hash_table *ia64_info;
4606 bfd *dynobj;
4608 ia64_info = elfNN_ia64_hash_table (info);
4609 if (ia64_info == NULL)
4610 return false;
4612 dynobj = ia64_info->root.dynobj;
4614 if (ia64_info->root.dynamic_sections_created)
4616 ElfNN_External_Dyn *dyncon, *dynconend;
4617 asection *sdyn, *sgotplt;
4618 bfd_vma gp_val;
4620 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
4621 sgotplt = ia64_info->root.sgotplt;
4622 BFD_ASSERT (sdyn != NULL);
4623 dyncon = (ElfNN_External_Dyn *) sdyn->contents;
4624 dynconend = (ElfNN_External_Dyn *) (sdyn->contents + sdyn->size);
4626 gp_val = _bfd_get_gp_value (abfd);
4628 for (; dyncon < dynconend; dyncon++)
4630 Elf_Internal_Dyn dyn;
4632 bfd_elfNN_swap_dyn_in (dynobj, dyncon, &dyn);
4634 switch (dyn.d_tag)
4636 case DT_PLTGOT:
4637 dyn.d_un.d_ptr = gp_val;
4638 break;
4640 case DT_PLTRELSZ:
4641 dyn.d_un.d_val = (ia64_info->minplt_entries
4642 * sizeof (ElfNN_External_Rela));
4643 break;
4645 case DT_JMPREL:
4646 /* See the comment above in finish_dynamic_symbol. */
4647 dyn.d_un.d_ptr = (ia64_info->rel_pltoff_sec->output_section->vma
4648 + ia64_info->rel_pltoff_sec->output_offset
4649 + (ia64_info->rel_pltoff_sec->reloc_count
4650 * sizeof (ElfNN_External_Rela)));
4651 break;
4653 case DT_IA_64_PLT_RESERVE:
4654 dyn.d_un.d_ptr = (sgotplt->output_section->vma
4655 + sgotplt->output_offset);
4656 break;
4659 bfd_elfNN_swap_dyn_out (abfd, &dyn, dyncon);
4662 /* Initialize the PLT0 entry. */
4663 if (ia64_info->root.splt)
4665 bfd_byte *loc = ia64_info->root.splt->contents;
4666 bfd_vma pltres;
4668 memcpy (loc, plt_header, PLT_HEADER_SIZE);
4670 pltres = (sgotplt->output_section->vma
4671 + sgotplt->output_offset
4672 - gp_val);
4674 ia64_elf_install_value (loc+1, pltres, R_IA64_GPREL22);
4678 return true;
4681 /* ELF file flag handling: */
4683 /* Function to keep IA-64 specific file flags. */
4684 static bool
4685 elfNN_ia64_set_private_flags (bfd *abfd, flagword flags)
4687 BFD_ASSERT (!elf_flags_init (abfd)
4688 || elf_elfheader (abfd)->e_flags == flags);
4690 elf_elfheader (abfd)->e_flags = flags;
4691 elf_flags_init (abfd) = true;
4692 return true;
4695 /* Merge backend specific data from an object file to the output
4696 object file when linking. */
4698 static bool
4699 elfNN_ia64_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
4701 bfd *obfd = info->output_bfd;
4702 flagword out_flags;
4703 flagword in_flags;
4704 bool ok = true;
4706 /* FIXME: What should be checked when linking shared libraries? */
4707 if ((ibfd->flags & DYNAMIC) != 0)
4708 return true;
4710 if (!is_ia64_elf (ibfd) || !is_ia64_elf (obfd))
4711 return true;
4713 in_flags = elf_elfheader (ibfd)->e_flags;
4714 out_flags = elf_elfheader (obfd)->e_flags;
4716 if (! elf_flags_init (obfd))
4718 elf_flags_init (obfd) = true;
4719 elf_elfheader (obfd)->e_flags = in_flags;
4721 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
4722 && bfd_get_arch_info (obfd)->the_default)
4724 return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
4725 bfd_get_mach (ibfd));
4728 return true;
4731 /* Check flag compatibility. */
4732 if (in_flags == out_flags)
4733 return true;
4735 /* Output has EF_IA_64_REDUCEDFP set only if all inputs have it set. */
4736 if (!(in_flags & EF_IA_64_REDUCEDFP) && (out_flags & EF_IA_64_REDUCEDFP))
4737 elf_elfheader (obfd)->e_flags &= ~EF_IA_64_REDUCEDFP;
4739 if ((in_flags & EF_IA_64_TRAPNIL) != (out_flags & EF_IA_64_TRAPNIL))
4741 _bfd_error_handler
4742 (_("%pB: linking trap-on-NULL-dereference with non-trapping files"),
4743 ibfd);
4745 bfd_set_error (bfd_error_bad_value);
4746 ok = false;
4748 if ((in_flags & EF_IA_64_BE) != (out_flags & EF_IA_64_BE))
4750 _bfd_error_handler
4751 (_("%pB: linking big-endian files with little-endian files"),
4752 ibfd);
4754 bfd_set_error (bfd_error_bad_value);
4755 ok = false;
4757 if ((in_flags & EF_IA_64_ABI64) != (out_flags & EF_IA_64_ABI64))
4759 _bfd_error_handler
4760 (_("%pB: linking 64-bit files with 32-bit files"),
4761 ibfd);
4763 bfd_set_error (bfd_error_bad_value);
4764 ok = false;
4766 if ((in_flags & EF_IA_64_CONS_GP) != (out_flags & EF_IA_64_CONS_GP))
4768 _bfd_error_handler
4769 (_("%pB: linking constant-gp files with non-constant-gp files"),
4770 ibfd);
4772 bfd_set_error (bfd_error_bad_value);
4773 ok = false;
4775 if ((in_flags & EF_IA_64_NOFUNCDESC_CONS_GP)
4776 != (out_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
4778 _bfd_error_handler
4779 (_("%pB: linking auto-pic files with non-auto-pic files"),
4780 ibfd);
4782 bfd_set_error (bfd_error_bad_value);
4783 ok = false;
4786 return ok;
4789 static bool
4790 elfNN_ia64_print_private_bfd_data (bfd *abfd, void * ptr)
4792 FILE *file = (FILE *) ptr;
4793 flagword flags = elf_elfheader (abfd)->e_flags;
4795 BFD_ASSERT (abfd != NULL && ptr != NULL);
4797 fprintf (file, "private flags = %s%s%s%s%s%s%s%s\n",
4798 (flags & EF_IA_64_TRAPNIL) ? "TRAPNIL, " : "",
4799 (flags & EF_IA_64_EXT) ? "EXT, " : "",
4800 (flags & EF_IA_64_BE) ? "BE, " : "LE, ",
4801 (flags & EF_IA_64_REDUCEDFP) ? "REDUCEDFP, " : "",
4802 (flags & EF_IA_64_CONS_GP) ? "CONS_GP, " : "",
4803 (flags & EF_IA_64_NOFUNCDESC_CONS_GP) ? "NOFUNCDESC_CONS_GP, " : "",
4804 (flags & EF_IA_64_ABSOLUTE) ? "ABSOLUTE, " : "",
4805 (flags & EF_IA_64_ABI64) ? "ABI64" : "ABI32");
4807 _bfd_elf_print_private_bfd_data (abfd, ptr);
4808 return true;
4811 static enum elf_reloc_type_class
4812 elfNN_ia64_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
4813 const asection *rel_sec ATTRIBUTE_UNUSED,
4814 const Elf_Internal_Rela *rela)
4816 switch ((int) ELFNN_R_TYPE (rela->r_info))
4818 case R_IA64_REL32MSB:
4819 case R_IA64_REL32LSB:
4820 case R_IA64_REL64MSB:
4821 case R_IA64_REL64LSB:
4822 return reloc_class_relative;
4823 case R_IA64_IPLTMSB:
4824 case R_IA64_IPLTLSB:
4825 return reloc_class_plt;
4826 case R_IA64_COPY:
4827 return reloc_class_copy;
4828 default:
4829 return reloc_class_normal;
4833 static const struct bfd_elf_special_section elfNN_ia64_special_sections[] =
4835 { STRING_COMMA_LEN (".sbss"), -1, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_IA_64_SHORT },
4836 { STRING_COMMA_LEN (".sdata"), -1, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_IA_64_SHORT },
4837 { NULL, 0, 0, 0, 0 }
4840 static bool
4841 elfNN_ia64_object_p (bfd *abfd)
4843 asection *sec;
4844 asection *group, *unwi, *unw;
4845 flagword flags;
4846 const char *name;
4847 char *unwi_name, *unw_name;
4848 size_t amt;
4850 if (abfd->flags & DYNAMIC)
4851 return true;
4853 /* Flags for fake group section. */
4854 flags = (SEC_LINKER_CREATED | SEC_GROUP | SEC_LINK_ONCE
4855 | SEC_EXCLUDE);
4857 /* We add a fake section group for each .gnu.linkonce.t.* section,
4858 which isn't in a section group, and its unwind sections. */
4859 for (sec = abfd->sections; sec != NULL; sec = sec->next)
4861 if (elf_sec_group (sec) == NULL
4862 && ((sec->flags & (SEC_LINK_ONCE | SEC_CODE | SEC_GROUP))
4863 == (SEC_LINK_ONCE | SEC_CODE))
4864 && startswith (sec->name, ".gnu.linkonce.t."))
4866 name = sec->name + 16;
4868 amt = strlen (name) + sizeof (".gnu.linkonce.ia64unwi.");
4869 unwi_name = bfd_alloc (abfd, amt);
4870 if (!unwi_name)
4871 return false;
4873 strcpy (stpcpy (unwi_name, ".gnu.linkonce.ia64unwi."), name);
4874 unwi = bfd_get_section_by_name (abfd, unwi_name);
4876 amt = strlen (name) + sizeof (".gnu.linkonce.ia64unw.");
4877 unw_name = bfd_alloc (abfd, amt);
4878 if (!unw_name)
4879 return false;
4881 strcpy (stpcpy (unw_name, ".gnu.linkonce.ia64unw."), name);
4882 unw = bfd_get_section_by_name (abfd, unw_name);
4884 /* We need to create a fake group section for it and its
4885 unwind sections. */
4886 group = bfd_make_section_anyway_with_flags (abfd, name,
4887 flags);
4888 if (group == NULL)
4889 return false;
4891 /* Move the fake group section to the beginning. */
4892 bfd_section_list_remove (abfd, group);
4893 bfd_section_list_prepend (abfd, group);
4895 elf_next_in_group (group) = sec;
4897 elf_group_name (sec) = name;
4898 elf_next_in_group (sec) = sec;
4899 elf_sec_group (sec) = group;
4901 if (unwi)
4903 elf_group_name (unwi) = name;
4904 elf_next_in_group (unwi) = sec;
4905 elf_next_in_group (sec) = unwi;
4906 elf_sec_group (unwi) = group;
4909 if (unw)
4911 elf_group_name (unw) = name;
4912 if (unwi)
4914 elf_next_in_group (unw) = elf_next_in_group (unwi);
4915 elf_next_in_group (unwi) = unw;
4917 else
4919 elf_next_in_group (unw) = sec;
4920 elf_next_in_group (sec) = unw;
4922 elf_sec_group (unw) = group;
4925 /* Fake SHT_GROUP section header. */
4926 elf_section_data (group)->this_hdr.bfd_section = group;
4927 elf_section_data (group)->this_hdr.sh_type = SHT_GROUP;
4930 return true;
4933 static bool
4934 elfNN_ia64_hpux_vec (const bfd_target *vec)
4936 extern const bfd_target ia64_elfNN_hpux_be_vec;
4937 return (vec == &ia64_elfNN_hpux_be_vec);
4940 static bool
4941 elfNN_hpux_init_file_header (bfd *abfd, struct bfd_link_info *info)
4943 Elf_Internal_Ehdr *i_ehdrp;
4945 if (!_bfd_elf_init_file_header (abfd, info))
4946 return false;
4948 i_ehdrp = elf_elfheader (abfd);
4949 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
4950 i_ehdrp->e_ident[EI_ABIVERSION] = 1;
4951 return true;
4954 static bool
4955 elfNN_hpux_backend_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED,
4956 asection *sec, int *retval)
4958 if (bfd_is_com_section (sec))
4960 *retval = SHN_IA_64_ANSI_COMMON;
4961 return true;
4963 return false;
4966 static void
4967 elfNN_hpux_backend_symbol_processing (bfd *abfd ATTRIBUTE_UNUSED,
4968 asymbol *asym)
4970 elf_symbol_type *elfsym = (elf_symbol_type *) asym;
4972 switch (elfsym->internal_elf_sym.st_shndx)
4974 case SHN_IA_64_ANSI_COMMON:
4975 asym->section = bfd_com_section_ptr;
4976 asym->value = elfsym->internal_elf_sym.st_size;
4977 asym->flags &= ~BSF_GLOBAL;
4978 break;
4982 static void
4983 ignore_errors (const char *fmt ATTRIBUTE_UNUSED, ...)
4987 #define TARGET_LITTLE_SYM ia64_elfNN_le_vec
4988 #define TARGET_LITTLE_NAME "elfNN-ia64-little"
4989 #define TARGET_BIG_SYM ia64_elfNN_be_vec
4990 #define TARGET_BIG_NAME "elfNN-ia64-big"
4991 #define ELF_ARCH bfd_arch_ia64
4992 #define ELF_TARGET_ID IA64_ELF_DATA
4993 #define ELF_MACHINE_CODE EM_IA_64
4994 #define ELF_MACHINE_ALT1 1999 /* EAS2.3 */
4995 #define ELF_MACHINE_ALT2 1998 /* EAS2.2 */
4996 #define ELF_MAXPAGESIZE 0x10000 /* 64KB */
4997 #define ELF_COMMONPAGESIZE 0x4000 /* 16KB */
4999 #define elf_backend_section_from_shdr \
5000 elfNN_ia64_section_from_shdr
5001 #define elf_backend_section_flags \
5002 elfNN_ia64_section_flags
5003 #define elf_backend_fake_sections \
5004 elfNN_ia64_fake_sections
5005 #define elf_backend_final_write_processing \
5006 elfNN_ia64_final_write_processing
5007 #define elf_backend_add_symbol_hook \
5008 elfNN_ia64_add_symbol_hook
5009 #define elf_backend_additional_program_headers \
5010 elfNN_ia64_additional_program_headers
5011 #define elf_backend_modify_segment_map \
5012 elfNN_ia64_modify_segment_map
5013 #define elf_backend_modify_headers \
5014 elfNN_ia64_modify_headers
5015 #define elf_info_to_howto \
5016 elfNN_ia64_info_to_howto
5018 #define bfd_elfNN_bfd_reloc_type_lookup \
5019 ia64_elf_reloc_type_lookup
5020 #define bfd_elfNN_bfd_reloc_name_lookup \
5021 ia64_elf_reloc_name_lookup
5022 #define bfd_elfNN_bfd_is_local_label_name \
5023 elfNN_ia64_is_local_label_name
5024 #define bfd_elfNN_bfd_relax_section \
5025 elfNN_ia64_relax_section
5027 #define elf_backend_object_p \
5028 elfNN_ia64_object_p
5030 /* Stuff for the BFD linker: */
5031 #define bfd_elfNN_bfd_link_hash_table_create \
5032 elfNN_ia64_hash_table_create
5033 #define elf_backend_create_dynamic_sections \
5034 elfNN_ia64_create_dynamic_sections
5035 #define elf_backend_check_relocs \
5036 elfNN_ia64_check_relocs
5037 #define elf_backend_adjust_dynamic_symbol \
5038 elfNN_ia64_adjust_dynamic_symbol
5039 #define elf_backend_late_size_sections \
5040 elfNN_ia64_late_size_sections
5041 #define elf_backend_omit_section_dynsym \
5042 _bfd_elf_omit_section_dynsym_all
5043 #define elf_backend_relocate_section \
5044 elfNN_ia64_relocate_section
5045 #define elf_backend_finish_dynamic_symbol \
5046 elfNN_ia64_finish_dynamic_symbol
5047 #define elf_backend_finish_dynamic_sections \
5048 elfNN_ia64_finish_dynamic_sections
5049 #define bfd_elfNN_bfd_final_link \
5050 elfNN_ia64_final_link
5052 #define bfd_elfNN_bfd_merge_private_bfd_data \
5053 elfNN_ia64_merge_private_bfd_data
5054 #define bfd_elfNN_bfd_set_private_flags \
5055 elfNN_ia64_set_private_flags
5056 #define bfd_elfNN_bfd_print_private_bfd_data \
5057 elfNN_ia64_print_private_bfd_data
5059 #define elf_backend_plt_readonly 1
5060 #define elf_backend_can_gc_sections 1
5061 #define elf_backend_want_plt_sym 0
5062 #define elf_backend_plt_alignment 5
5063 #define elf_backend_got_header_size 0
5064 #define elf_backend_want_got_plt 1
5065 #define elf_backend_may_use_rel_p 1
5066 #define elf_backend_may_use_rela_p 1
5067 #define elf_backend_default_use_rela_p 1
5068 #define elf_backend_want_dynbss 0
5069 #define elf_backend_copy_indirect_symbol elfNN_ia64_hash_copy_indirect
5070 #define elf_backend_hide_symbol elfNN_ia64_hash_hide_symbol
5071 #define elf_backend_fixup_symbol _bfd_elf_link_hash_fixup_symbol
5072 #define elf_backend_reloc_type_class elfNN_ia64_reloc_type_class
5073 #define elf_backend_rela_normal 1
5074 #define elf_backend_dtrel_excludes_plt 1
5075 #define elf_backend_special_sections elfNN_ia64_special_sections
5076 #define elf_backend_default_execstack 0
5078 /* FIXME: PR 290: The Intel C compiler generates SHT_IA_64_UNWIND with
5079 SHF_LINK_ORDER. But it doesn't set the sh_link or sh_info fields.
5080 We don't want to flood users with so many error messages. We turn
5081 off the warning for now. It will be turned on later when the Intel
5082 compiler is fixed. */
5083 #define elf_backend_link_order_error_handler ignore_errors
5085 #include "elfNN-target.h"
5087 /* HPUX-specific vectors. */
5089 #undef TARGET_LITTLE_SYM
5090 #undef TARGET_LITTLE_NAME
5091 #undef TARGET_BIG_SYM
5092 #define TARGET_BIG_SYM ia64_elfNN_hpux_be_vec
5093 #undef TARGET_BIG_NAME
5094 #define TARGET_BIG_NAME "elfNN-ia64-hpux-big"
5096 /* These are HP-UX specific functions. */
5098 #undef elf_backend_init_file_header
5099 #define elf_backend_init_file_header elfNN_hpux_init_file_header
5101 #undef elf_backend_section_from_bfd_section
5102 #define elf_backend_section_from_bfd_section elfNN_hpux_backend_section_from_bfd_section
5104 #undef elf_backend_symbol_processing
5105 #define elf_backend_symbol_processing elfNN_hpux_backend_symbol_processing
5107 #undef elf_backend_want_p_paddr_set_to_zero
5108 #define elf_backend_want_p_paddr_set_to_zero 1
5110 #undef ELF_COMMONPAGESIZE
5111 #undef ELF_OSABI
5112 #define ELF_OSABI ELFOSABI_HPUX
5114 #undef elfNN_bed
5115 #define elfNN_bed elfNN_ia64_hpux_bed
5117 #include "elfNN-target.h"