Updated translations for various binutils sub-directories
[deliverable/binutils-gdb.git] / bfd / elfnn-ia64.c
1 /* IA-64 support for 64-bit ELF
2 Copyright (C) 1998-2020 Free Software Foundation, Inc.
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
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"
31
32 #define ARCH_SIZE NN
33
34 #if ARCH_SIZE == 64
35 #define LOG_SECTION_ALIGN 3
36 #endif
37
38 #if ARCH_SIZE == 32
39 #define LOG_SECTION_ALIGN 2
40 #endif
41
42 #define is_ia64_elf(bfd) \
43 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
44 && elf_object_id (bfd) == IA64_ELF_DATA)
45
46 typedef struct bfd_hash_entry *(*new_hash_entry_func)
47 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
48
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. */
52
53 struct elfNN_ia64_dyn_sym_info
54 {
55 /* The addend for which this entry is relevant. */
56 bfd_vma addend;
57
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;
66
67 /* The symbol table entry, if any, that this was derived from. */
68 struct elf_link_hash_entry *h;
69
70 /* Used to count non-got, non-plt relocations for delayed sizing
71 of relocation sections. */
72 struct elfNN_ia64_dyn_reloc_entry
73 {
74 struct elfNN_ia64_dyn_reloc_entry *next;
75 asection *srel;
76 int type;
77 int count;
78
79 /* Is this reloc against readonly section? */
80 bfd_boolean reltext;
81 } *reloc_entries;
82
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;
90
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;
102 };
103
104 struct elfNN_ia64_local_hash_entry
105 {
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;
116
117 /* TRUE if this hash entry's addends was translated for
118 SHF_MERGE optimization. */
119 unsigned sec_merge_done : 1;
120 };
121
122 struct elfNN_ia64_link_hash_entry
123 {
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;
133 };
134
135 struct elfNN_ia64_link_hash_table
136 {
137 /* The main hash table. */
138 struct elf_link_hash_table root;
139
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. */
144
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. */
156
157 htab_t loc_hash_table;
158 void *loc_hash_memory;
159 };
160
161 struct elfNN_ia64_allocate_data
162 {
163 struct bfd_link_info *info;
164 bfd_size_type ofs;
165 bfd_boolean only_got;
166 };
167
168 #define elfNN_ia64_hash_table(p) \
169 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
170 == IA64_ELF_DATA ? ((struct elfNN_ia64_link_hash_table *) ((p)->hash)) : NULL)
171
172 static struct elfNN_ia64_dyn_sym_info * get_dyn_sym_info
173 (struct elfNN_ia64_link_hash_table *ia64_info,
174 struct elf_link_hash_entry *h,
175 bfd *abfd, const Elf_Internal_Rela *rel, bfd_boolean create);
176 static bfd_boolean elfNN_ia64_dynamic_symbol_p
177 (struct elf_link_hash_entry *h, struct bfd_link_info *info, int);
178 static bfd_boolean elfNN_ia64_choose_gp
179 (bfd *abfd, struct bfd_link_info *info, bfd_boolean final);
180 static void elfNN_ia64_dyn_sym_traverse
181 (struct elfNN_ia64_link_hash_table *ia64_info,
182 bfd_boolean (*func) (struct elfNN_ia64_dyn_sym_info *, void *),
183 void * info);
184 static bfd_boolean allocate_global_data_got
185 (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data);
186 static bfd_boolean allocate_global_fptr_got
187 (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data);
188 static bfd_boolean allocate_local_got
189 (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data);
190 static bfd_boolean elfNN_ia64_hpux_vec
191 (const bfd_target *vec);
192 static bfd_boolean allocate_dynrel_entries
193 (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data);
194 static asection *get_pltoff
195 (bfd *abfd, struct bfd_link_info *info,
196 struct elfNN_ia64_link_hash_table *ia64_info);
197 \f
198 /* ia64-specific relocation. */
199
200 /* Given a ELF reloc, return the matching HOWTO structure. */
201
202 static bfd_boolean
203 elfNN_ia64_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
204 arelent *bfd_reloc,
205 Elf_Internal_Rela *elf_reloc)
206 {
207 unsigned int r_type = ELF32_R_TYPE (elf_reloc->r_info);
208
209 bfd_reloc->howto = ia64_elf_lookup_howto (r_type);
210 if (bfd_reloc->howto == NULL)
211 {
212 /* xgettext:c-format */
213 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
214 abfd, r_type);
215 bfd_set_error (bfd_error_bad_value);
216 return FALSE;
217 }
218
219 return TRUE;
220 }
221 \f
222 #define PLT_HEADER_SIZE (3 * 16)
223 #define PLT_MIN_ENTRY_SIZE (1 * 16)
224 #define PLT_FULL_ENTRY_SIZE (2 * 16)
225 #define PLT_RESERVED_WORDS 3
226
227 static const bfd_byte plt_header[PLT_HEADER_SIZE] =
228 {
229 0x0b, 0x10, 0x00, 0x1c, 0x00, 0x21, /* [MMI] mov r2=r14;; */
230 0xe0, 0x00, 0x08, 0x00, 0x48, 0x00, /* addl r14=0,r2 */
231 0x00, 0x00, 0x04, 0x00, /* nop.i 0x0;; */
232 0x0b, 0x80, 0x20, 0x1c, 0x18, 0x14, /* [MMI] ld8 r16=[r14],8;; */
233 0x10, 0x41, 0x38, 0x30, 0x28, 0x00, /* ld8 r17=[r14],8 */
234 0x00, 0x00, 0x04, 0x00, /* nop.i 0x0;; */
235 0x11, 0x08, 0x00, 0x1c, 0x18, 0x10, /* [MIB] ld8 r1=[r14] */
236 0x60, 0x88, 0x04, 0x80, 0x03, 0x00, /* mov b6=r17 */
237 0x60, 0x00, 0x80, 0x00 /* br.few b6;; */
238 };
239
240 static const bfd_byte plt_min_entry[PLT_MIN_ENTRY_SIZE] =
241 {
242 0x11, 0x78, 0x00, 0x00, 0x00, 0x24, /* [MIB] mov r15=0 */
243 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, /* nop.i 0x0 */
244 0x00, 0x00, 0x00, 0x40 /* br.few 0 <PLT0>;; */
245 };
246
247 static const bfd_byte plt_full_entry[PLT_FULL_ENTRY_SIZE] =
248 {
249 0x0b, 0x78, 0x00, 0x02, 0x00, 0x24, /* [MMI] addl r15=0,r1;; */
250 0x00, 0x41, 0x3c, 0x70, 0x29, 0xc0, /* ld8.acq r16=[r15],8*/
251 0x01, 0x08, 0x00, 0x84, /* mov r14=r1;; */
252 0x11, 0x08, 0x00, 0x1e, 0x18, 0x10, /* [MIB] ld8 r1=[r15] */
253 0x60, 0x80, 0x04, 0x80, 0x03, 0x00, /* mov b6=r16 */
254 0x60, 0x00, 0x80, 0x00 /* br.few b6;; */
255 };
256
257 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
258
259 static const bfd_byte oor_brl[16] =
260 {
261 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MLX] nop.m 0 */
262 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* brl.sptk.few tgt;; */
263 0x00, 0x00, 0x00, 0xc0
264 };
265
266 static const bfd_byte oor_ip[48] =
267 {
268 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MLX] nop.m 0 */
269 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, /* movl r15=0 */
270 0x01, 0x00, 0x00, 0x60,
271 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MII] nop.m 0 */
272 0x00, 0x01, 0x00, 0x60, 0x00, 0x00, /* mov r16=ip;; */
273 0xf2, 0x80, 0x00, 0x80, /* add r16=r15,r16;; */
274 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MIB] nop.m 0 */
275 0x60, 0x80, 0x04, 0x80, 0x03, 0x00, /* mov b6=r16 */
276 0x60, 0x00, 0x80, 0x00 /* br b6;; */
277 };
278
279 static size_t oor_branch_size = sizeof (oor_brl);
280
281 void
282 bfd_elfNN_ia64_after_parse (int itanium)
283 {
284 oor_branch_size = itanium ? sizeof (oor_ip) : sizeof (oor_brl);
285 }
286 \f
287
288 /* Rename some of the generic section flags to better document how they
289 are used here. */
290 #define skip_relax_pass_0 sec_flg0
291 #define skip_relax_pass_1 sec_flg1
292
293 /* These functions do relaxation for IA-64 ELF. */
294
295 static void
296 elfNN_ia64_update_short_info (asection *sec, bfd_vma offset,
297 struct elfNN_ia64_link_hash_table *ia64_info)
298 {
299 /* Skip ABS and SHF_IA_64_SHORT sections. */
300 if (sec == bfd_abs_section_ptr
301 || (sec->flags & SEC_SMALL_DATA) != 0)
302 return;
303
304 if (!ia64_info->min_short_sec)
305 {
306 ia64_info->max_short_sec = sec;
307 ia64_info->max_short_offset = offset;
308 ia64_info->min_short_sec = sec;
309 ia64_info->min_short_offset = offset;
310 }
311 else if (sec == ia64_info->max_short_sec
312 && offset > ia64_info->max_short_offset)
313 ia64_info->max_short_offset = offset;
314 else if (sec == ia64_info->min_short_sec
315 && offset < ia64_info->min_short_offset)
316 ia64_info->min_short_offset = offset;
317 else if (sec->output_section->vma
318 > ia64_info->max_short_sec->vma)
319 {
320 ia64_info->max_short_sec = sec;
321 ia64_info->max_short_offset = offset;
322 }
323 else if (sec->output_section->vma
324 < ia64_info->min_short_sec->vma)
325 {
326 ia64_info->min_short_sec = sec;
327 ia64_info->min_short_offset = offset;
328 }
329 }
330
331 static bfd_boolean
332 elfNN_ia64_relax_section (bfd *abfd, asection *sec,
333 struct bfd_link_info *link_info,
334 bfd_boolean *again)
335 {
336 struct one_fixup
337 {
338 struct one_fixup *next;
339 asection *tsec;
340 bfd_vma toff;
341 bfd_vma trampoff;
342 };
343
344 Elf_Internal_Shdr *symtab_hdr;
345 Elf_Internal_Rela *internal_relocs;
346 Elf_Internal_Rela *irel, *irelend;
347 bfd_byte *contents;
348 Elf_Internal_Sym *isymbuf = NULL;
349 struct elfNN_ia64_link_hash_table *ia64_info;
350 struct one_fixup *fixups = NULL;
351 bfd_boolean changed_contents = FALSE;
352 bfd_boolean changed_relocs = FALSE;
353 bfd_boolean changed_got = FALSE;
354 bfd_boolean skip_relax_pass_0 = TRUE;
355 bfd_boolean skip_relax_pass_1 = TRUE;
356 bfd_vma gp = 0;
357
358 /* Assume we're not going to change any sizes, and we'll only need
359 one pass. */
360 *again = FALSE;
361
362 if (bfd_link_relocatable (link_info))
363 (*link_info->callbacks->einfo)
364 (_("%P%F: --relax and -r may not be used together\n"));
365
366 /* Don't even try to relax for non-ELF outputs. */
367 if (!is_elf_hash_table (link_info->hash))
368 return FALSE;
369
370 /* Nothing to do if there are no relocations or there is no need for
371 the current pass. */
372 if ((sec->flags & SEC_RELOC) == 0
373 || sec->reloc_count == 0
374 || (link_info->relax_pass == 0 && sec->skip_relax_pass_0)
375 || (link_info->relax_pass == 1 && sec->skip_relax_pass_1))
376 return TRUE;
377
378 ia64_info = elfNN_ia64_hash_table (link_info);
379 if (ia64_info == NULL)
380 return FALSE;
381
382 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
383
384 /* Load the relocations for this section. */
385 internal_relocs = (_bfd_elf_link_read_relocs
386 (abfd, sec, NULL, (Elf_Internal_Rela *) NULL,
387 link_info->keep_memory));
388 if (internal_relocs == NULL)
389 return FALSE;
390
391 irelend = internal_relocs + sec->reloc_count;
392
393 /* Get the section contents. */
394 if (elf_section_data (sec)->this_hdr.contents != NULL)
395 contents = elf_section_data (sec)->this_hdr.contents;
396 else
397 {
398 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
399 goto error_return;
400 }
401
402 for (irel = internal_relocs; irel < irelend; irel++)
403 {
404 unsigned long r_type = ELFNN_R_TYPE (irel->r_info);
405 bfd_vma symaddr, reladdr, trampoff, toff, roff;
406 asection *tsec;
407 struct one_fixup *f;
408 bfd_size_type amt;
409 bfd_boolean is_branch;
410 struct elfNN_ia64_dyn_sym_info *dyn_i;
411 char symtype;
412
413 switch (r_type)
414 {
415 case R_IA64_PCREL21B:
416 case R_IA64_PCREL21BI:
417 case R_IA64_PCREL21M:
418 case R_IA64_PCREL21F:
419 /* In pass 1, all br relaxations are done. We can skip it. */
420 if (link_info->relax_pass == 1)
421 continue;
422 skip_relax_pass_0 = FALSE;
423 is_branch = TRUE;
424 break;
425
426 case R_IA64_PCREL60B:
427 /* We can't optimize brl to br in pass 0 since br relaxations
428 will increase the code size. Defer it to pass 1. */
429 if (link_info->relax_pass == 0)
430 {
431 skip_relax_pass_1 = FALSE;
432 continue;
433 }
434 is_branch = TRUE;
435 break;
436
437 case R_IA64_GPREL22:
438 /* Update max_short_sec/min_short_sec. */
439
440 case R_IA64_LTOFF22X:
441 case R_IA64_LDXMOV:
442 /* We can't relax ldx/mov in pass 0 since br relaxations will
443 increase the code size. Defer it to pass 1. */
444 if (link_info->relax_pass == 0)
445 {
446 skip_relax_pass_1 = FALSE;
447 continue;
448 }
449 is_branch = FALSE;
450 break;
451
452 default:
453 continue;
454 }
455
456 /* Get the value of the symbol referred to by the reloc. */
457 if (ELFNN_R_SYM (irel->r_info) < symtab_hdr->sh_info)
458 {
459 /* A local symbol. */
460 Elf_Internal_Sym *isym;
461
462 /* Read this BFD's local symbols. */
463 if (isymbuf == NULL)
464 {
465 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
466 if (isymbuf == NULL)
467 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
468 symtab_hdr->sh_info, 0,
469 NULL, NULL, NULL);
470 if (isymbuf == 0)
471 goto error_return;
472 }
473
474 isym = isymbuf + ELFNN_R_SYM (irel->r_info);
475 if (isym->st_shndx == SHN_UNDEF)
476 continue; /* We can't do anything with undefined symbols. */
477 else if (isym->st_shndx == SHN_ABS)
478 tsec = bfd_abs_section_ptr;
479 else if (isym->st_shndx == SHN_COMMON)
480 tsec = bfd_com_section_ptr;
481 else if (isym->st_shndx == SHN_IA_64_ANSI_COMMON)
482 tsec = bfd_com_section_ptr;
483 else
484 tsec = bfd_section_from_elf_index (abfd, isym->st_shndx);
485
486 toff = isym->st_value;
487 dyn_i = get_dyn_sym_info (ia64_info, NULL, abfd, irel, FALSE);
488 symtype = ELF_ST_TYPE (isym->st_info);
489 }
490 else
491 {
492 unsigned long indx;
493 struct elf_link_hash_entry *h;
494
495 indx = ELFNN_R_SYM (irel->r_info) - symtab_hdr->sh_info;
496 h = elf_sym_hashes (abfd)[indx];
497 BFD_ASSERT (h != NULL);
498
499 while (h->root.type == bfd_link_hash_indirect
500 || h->root.type == bfd_link_hash_warning)
501 h = (struct elf_link_hash_entry *) h->root.u.i.link;
502
503 dyn_i = get_dyn_sym_info (ia64_info, h, abfd, irel, FALSE);
504
505 /* For branches to dynamic symbols, we're interested instead
506 in a branch to the PLT entry. */
507 if (is_branch && dyn_i && dyn_i->want_plt2)
508 {
509 /* Internal branches shouldn't be sent to the PLT.
510 Leave this for now and we'll give an error later. */
511 if (r_type != R_IA64_PCREL21B)
512 continue;
513
514 tsec = ia64_info->root.splt;
515 toff = dyn_i->plt2_offset;
516 BFD_ASSERT (irel->r_addend == 0);
517 }
518
519 /* Can't do anything else with dynamic symbols. */
520 else if (elfNN_ia64_dynamic_symbol_p (h, link_info, r_type))
521 continue;
522
523 else
524 {
525 /* We can't do anything with undefined symbols. */
526 if (h->root.type == bfd_link_hash_undefined
527 || h->root.type == bfd_link_hash_undefweak)
528 continue;
529
530 tsec = h->root.u.def.section;
531 toff = h->root.u.def.value;
532 }
533
534 symtype = h->type;
535 }
536
537 if (tsec->sec_info_type == SEC_INFO_TYPE_MERGE)
538 {
539 /* At this stage in linking, no SEC_MERGE symbol has been
540 adjusted, so all references to such symbols need to be
541 passed through _bfd_merged_section_offset. (Later, in
542 relocate_section, all SEC_MERGE symbols *except* for
543 section symbols have been adjusted.)
544
545 gas may reduce relocations against symbols in SEC_MERGE
546 sections to a relocation against the section symbol when
547 the original addend was zero. When the reloc is against
548 a section symbol we should include the addend in the
549 offset passed to _bfd_merged_section_offset, since the
550 location of interest is the original symbol. On the
551 other hand, an access to "sym+addend" where "sym" is not
552 a section symbol should not include the addend; Such an
553 access is presumed to be an offset from "sym"; The
554 location of interest is just "sym". */
555 if (symtype == STT_SECTION)
556 toff += irel->r_addend;
557
558 toff = _bfd_merged_section_offset (abfd, &tsec,
559 elf_section_data (tsec)->sec_info,
560 toff);
561
562 if (symtype != STT_SECTION)
563 toff += irel->r_addend;
564 }
565 else
566 toff += irel->r_addend;
567
568 symaddr = tsec->output_section->vma + tsec->output_offset + toff;
569
570 roff = irel->r_offset;
571
572 if (is_branch)
573 {
574 bfd_signed_vma offset;
575
576 reladdr = (sec->output_section->vma
577 + sec->output_offset
578 + roff) & (bfd_vma) -4;
579
580 /* The .plt section is aligned at 32byte and the .text section
581 is aligned at 64byte. The .text section is right after the
582 .plt section. After the first relaxation pass, linker may
583 increase the gap between the .plt and .text sections up
584 to 32byte. We assume linker will always insert 32byte
585 between the .plt and .text sections after the first
586 relaxation pass. */
587 if (tsec == ia64_info->root.splt)
588 offset = -0x1000000 + 32;
589 else
590 offset = -0x1000000;
591
592 /* If the branch is in range, no need to do anything. */
593 if ((bfd_signed_vma) (symaddr - reladdr) >= offset
594 && (bfd_signed_vma) (symaddr - reladdr) <= 0x0FFFFF0)
595 {
596 /* If the 60-bit branch is in 21-bit range, optimize it. */
597 if (r_type == R_IA64_PCREL60B)
598 {
599 ia64_elf_relax_brl (contents, roff);
600
601 irel->r_info
602 = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
603 R_IA64_PCREL21B);
604
605 /* If the original relocation offset points to slot
606 1, change it to slot 2. */
607 if ((irel->r_offset & 3) == 1)
608 irel->r_offset += 1;
609
610 changed_contents = TRUE;
611 changed_relocs = TRUE;
612 }
613
614 continue;
615 }
616 else if (r_type == R_IA64_PCREL60B)
617 continue;
618 else if (ia64_elf_relax_br (contents, roff))
619 {
620 irel->r_info
621 = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
622 R_IA64_PCREL60B);
623
624 /* Make the relocation offset point to slot 1. */
625 irel->r_offset = (irel->r_offset & ~((bfd_vma) 0x3)) + 1;
626
627 changed_contents = TRUE;
628 changed_relocs = TRUE;
629 continue;
630 }
631
632 /* We can't put a trampoline in a .init/.fini section. Issue
633 an error. */
634 if (strcmp (sec->output_section->name, ".init") == 0
635 || strcmp (sec->output_section->name, ".fini") == 0)
636 {
637 _bfd_error_handler
638 /* xgettext:c-format */
639 (_("%pB: can't relax br at %#" PRIx64 " in section `%pA';"
640 " please use brl or indirect branch"),
641 sec->owner, (uint64_t) roff, sec);
642 bfd_set_error (bfd_error_bad_value);
643 goto error_return;
644 }
645
646 /* If the branch and target are in the same section, you've
647 got one honking big section and we can't help you unless
648 you are branching backwards. You'll get an error message
649 later. */
650 if (tsec == sec && toff > roff)
651 continue;
652
653 /* Look for an existing fixup to this address. */
654 for (f = fixups; f ; f = f->next)
655 if (f->tsec == tsec && f->toff == toff)
656 break;
657
658 if (f == NULL)
659 {
660 /* Two alternatives: If it's a branch to a PLT entry, we can
661 make a copy of the FULL_PLT entry. Otherwise, we'll have
662 to use a `brl' insn to get where we're going. */
663
664 size_t size;
665
666 if (tsec == ia64_info->root.splt)
667 size = sizeof (plt_full_entry);
668 else
669 size = oor_branch_size;
670
671 /* Resize the current section to make room for the new branch. */
672 trampoff = (sec->size + 15) & (bfd_vma) -16;
673
674 /* If trampoline is out of range, there is nothing we
675 can do. */
676 offset = trampoff - (roff & (bfd_vma) -4);
677 if (offset < -0x1000000 || offset > 0x0FFFFF0)
678 continue;
679
680 amt = trampoff + size;
681 contents = (bfd_byte *) bfd_realloc (contents, amt);
682 if (contents == NULL)
683 goto error_return;
684 sec->size = amt;
685
686 if (tsec == ia64_info->root.splt)
687 {
688 memcpy (contents + trampoff, plt_full_entry, size);
689
690 /* Hijack the old relocation for use as the PLTOFF reloc. */
691 irel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
692 R_IA64_PLTOFF22);
693 irel->r_offset = trampoff;
694 }
695 else
696 {
697 if (size == sizeof (oor_ip))
698 {
699 memcpy (contents + trampoff, oor_ip, size);
700 irel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
701 R_IA64_PCREL64I);
702 irel->r_addend -= 16;
703 irel->r_offset = trampoff + 2;
704 }
705 else
706 {
707 memcpy (contents + trampoff, oor_brl, size);
708 irel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
709 R_IA64_PCREL60B);
710 irel->r_offset = trampoff + 2;
711 }
712
713 }
714
715 /* Record the fixup so we don't do it again this section. */
716 f = (struct one_fixup *)
717 bfd_malloc ((bfd_size_type) sizeof (*f));
718 f->next = fixups;
719 f->tsec = tsec;
720 f->toff = toff;
721 f->trampoff = trampoff;
722 fixups = f;
723 }
724 else
725 {
726 /* If trampoline is out of range, there is nothing we
727 can do. */
728 offset = f->trampoff - (roff & (bfd_vma) -4);
729 if (offset < -0x1000000 || offset > 0x0FFFFF0)
730 continue;
731
732 /* Nop out the reloc, since we're finalizing things here. */
733 irel->r_info = ELFNN_R_INFO (0, R_IA64_NONE);
734 }
735
736 /* Fix up the existing branch to hit the trampoline. */
737 if (ia64_elf_install_value (contents + roff, offset, r_type)
738 != bfd_reloc_ok)
739 goto error_return;
740
741 changed_contents = TRUE;
742 changed_relocs = TRUE;
743 }
744 else
745 {
746 /* Fetch the gp. */
747 if (gp == 0)
748 {
749 bfd *obfd = sec->output_section->owner;
750 gp = _bfd_get_gp_value (obfd);
751 if (gp == 0)
752 {
753 if (!elfNN_ia64_choose_gp (obfd, link_info, FALSE))
754 goto error_return;
755 gp = _bfd_get_gp_value (obfd);
756 }
757 }
758
759 /* If the data is out of range, do nothing. */
760 if ((bfd_signed_vma) (symaddr - gp) >= 0x200000
761 ||(bfd_signed_vma) (symaddr - gp) < -0x200000)
762 continue;
763
764 if (r_type == R_IA64_GPREL22)
765 elfNN_ia64_update_short_info (tsec->output_section,
766 tsec->output_offset + toff,
767 ia64_info);
768 else if (r_type == R_IA64_LTOFF22X)
769 {
770 irel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (irel->r_info),
771 R_IA64_GPREL22);
772 changed_relocs = TRUE;
773 if (dyn_i->want_gotx)
774 {
775 dyn_i->want_gotx = 0;
776 changed_got |= !dyn_i->want_got;
777 }
778
779 elfNN_ia64_update_short_info (tsec->output_section,
780 tsec->output_offset + toff,
781 ia64_info);
782 }
783 else
784 {
785 ia64_elf_relax_ldxmov (contents, roff);
786 irel->r_info = ELFNN_R_INFO (0, R_IA64_NONE);
787 changed_contents = TRUE;
788 changed_relocs = TRUE;
789 }
790 }
791 }
792
793 /* ??? If we created fixups, this may push the code segment large
794 enough that the data segment moves, which will change the GP.
795 Reset the GP so that we re-calculate next round. We need to
796 do this at the _beginning_ of the next round; now will not do. */
797
798 /* Clean up and go home. */
799 while (fixups)
800 {
801 struct one_fixup *f = fixups;
802 fixups = fixups->next;
803 free (f);
804 }
805
806 if (isymbuf != NULL
807 && symtab_hdr->contents != (unsigned char *) isymbuf)
808 {
809 if (! link_info->keep_memory)
810 free (isymbuf);
811 else
812 {
813 /* Cache the symbols for elf_link_input_bfd. */
814 symtab_hdr->contents = (unsigned char *) isymbuf;
815 }
816 }
817
818 if (contents != NULL
819 && elf_section_data (sec)->this_hdr.contents != contents)
820 {
821 if (!changed_contents && !link_info->keep_memory)
822 free (contents);
823 else
824 {
825 /* Cache the section contents for elf_link_input_bfd. */
826 elf_section_data (sec)->this_hdr.contents = contents;
827 }
828 }
829
830 if (elf_section_data (sec)->relocs != internal_relocs)
831 {
832 if (!changed_relocs)
833 free (internal_relocs);
834 else
835 elf_section_data (sec)->relocs = internal_relocs;
836 }
837
838 if (changed_got)
839 {
840 struct elfNN_ia64_allocate_data data;
841 data.info = link_info;
842 data.ofs = 0;
843 ia64_info->self_dtpmod_offset = (bfd_vma) -1;
844
845 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_global_data_got, &data);
846 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_global_fptr_got, &data);
847 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_local_got, &data);
848 ia64_info->root.sgot->size = data.ofs;
849
850 if (ia64_info->root.dynamic_sections_created
851 && ia64_info->root.srelgot != NULL)
852 {
853 /* Resize .rela.got. */
854 ia64_info->root.srelgot->size = 0;
855 if (bfd_link_pic (link_info)
856 && ia64_info->self_dtpmod_offset != (bfd_vma) -1)
857 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
858 data.only_got = TRUE;
859 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_dynrel_entries,
860 &data);
861 }
862 }
863
864 if (link_info->relax_pass == 0)
865 {
866 /* Pass 0 is only needed to relax br. */
867 sec->skip_relax_pass_0 = skip_relax_pass_0;
868 sec->skip_relax_pass_1 = skip_relax_pass_1;
869 }
870
871 *again = changed_contents || changed_relocs;
872 return TRUE;
873
874 error_return:
875 if ((unsigned char *) isymbuf != symtab_hdr->contents)
876 free (isymbuf);
877 if (elf_section_data (sec)->this_hdr.contents != contents)
878 free (contents);
879 if (elf_section_data (sec)->relocs != internal_relocs)
880 free (internal_relocs);
881 return FALSE;
882 }
883 #undef skip_relax_pass_0
884 #undef skip_relax_pass_1
885 \f
886 /* Return TRUE if NAME is an unwind table section name. */
887
888 static inline bfd_boolean
889 is_unwind_section_name (bfd *abfd, const char *name)
890 {
891 if (elfNN_ia64_hpux_vec (abfd->xvec)
892 && !strcmp (name, ELF_STRING_ia64_unwind_hdr))
893 return FALSE;
894
895 return ((CONST_STRNEQ (name, ELF_STRING_ia64_unwind)
896 && ! CONST_STRNEQ (name, ELF_STRING_ia64_unwind_info))
897 || CONST_STRNEQ (name, ELF_STRING_ia64_unwind_once));
898 }
899
900 /* Handle an IA-64 specific section when reading an object file. This
901 is called when bfd_section_from_shdr finds a section with an unknown
902 type. */
903
904 static bfd_boolean
905 elfNN_ia64_section_from_shdr (bfd *abfd,
906 Elf_Internal_Shdr *hdr,
907 const char *name,
908 int shindex)
909 {
910 /* There ought to be a place to keep ELF backend specific flags, but
911 at the moment there isn't one. We just keep track of the
912 sections by their name, instead. Fortunately, the ABI gives
913 suggested names for all the MIPS specific sections, so we will
914 probably get away with this. */
915 switch (hdr->sh_type)
916 {
917 case SHT_IA_64_UNWIND:
918 case SHT_IA_64_HP_OPT_ANOT:
919 break;
920
921 case SHT_IA_64_EXT:
922 if (strcmp (name, ELF_STRING_ia64_archext) != 0)
923 return FALSE;
924 break;
925
926 default:
927 return FALSE;
928 }
929
930 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
931 return FALSE;
932
933 return TRUE;
934 }
935
936 /* Convert IA-64 specific section flags to bfd internal section flags. */
937
938 /* ??? There is no bfd internal flag equivalent to the SHF_IA_64_NORECOV
939 flag. */
940
941 static bfd_boolean
942 elfNN_ia64_section_flags (const Elf_Internal_Shdr *hdr)
943 {
944 if (hdr->sh_flags & SHF_IA_64_SHORT)
945 hdr->bfd_section->flags |= SEC_SMALL_DATA;
946
947 return TRUE;
948 }
949
950 /* Set the correct type for an IA-64 ELF section. We do this by the
951 section name, which is a hack, but ought to work. */
952
953 static bfd_boolean
954 elfNN_ia64_fake_sections (bfd *abfd, Elf_Internal_Shdr *hdr,
955 asection *sec)
956 {
957 const char *name;
958
959 name = bfd_section_name (sec);
960
961 if (is_unwind_section_name (abfd, name))
962 {
963 /* We don't have the sections numbered at this point, so sh_info
964 is set later, in elfNN_ia64_final_write_processing. */
965 hdr->sh_type = SHT_IA_64_UNWIND;
966 hdr->sh_flags |= SHF_LINK_ORDER;
967 }
968 else if (strcmp (name, ELF_STRING_ia64_archext) == 0)
969 hdr->sh_type = SHT_IA_64_EXT;
970 else if (strcmp (name, ".HP.opt_annot") == 0)
971 hdr->sh_type = SHT_IA_64_HP_OPT_ANOT;
972 else if (strcmp (name, ".reloc") == 0)
973 /* This is an ugly, but unfortunately necessary hack that is
974 needed when producing EFI binaries on IA-64. It tells
975 elf.c:elf_fake_sections() not to consider ".reloc" as a section
976 containing ELF relocation info. We need this hack in order to
977 be able to generate ELF binaries that can be translated into
978 EFI applications (which are essentially COFF objects). Those
979 files contain a COFF ".reloc" section inside an ELFNN object,
980 which would normally cause BFD to segfault because it would
981 attempt to interpret this section as containing relocation
982 entries for section "oc". With this hack enabled, ".reloc"
983 will be treated as a normal data section, which will avoid the
984 segfault. However, you won't be able to create an ELFNN binary
985 with a section named "oc" that needs relocations, but that's
986 the kind of ugly side-effects you get when detecting section
987 types based on their names... In practice, this limitation is
988 unlikely to bite. */
989 hdr->sh_type = SHT_PROGBITS;
990
991 if (sec->flags & SEC_SMALL_DATA)
992 hdr->sh_flags |= SHF_IA_64_SHORT;
993
994 /* Some HP linkers look for the SHF_IA_64_HP_TLS flag instead of SHF_TLS. */
995
996 if (elfNN_ia64_hpux_vec (abfd->xvec) && (sec->flags & SHF_TLS))
997 hdr->sh_flags |= SHF_IA_64_HP_TLS;
998
999 return TRUE;
1000 }
1001
1002 /* The final processing done just before writing out an IA-64 ELF
1003 object file. */
1004
1005 static bfd_boolean
1006 elfNN_ia64_final_write_processing (bfd *abfd)
1007 {
1008 Elf_Internal_Shdr *hdr;
1009 asection *s;
1010
1011 for (s = abfd->sections; s; s = s->next)
1012 {
1013 hdr = &elf_section_data (s)->this_hdr;
1014 switch (hdr->sh_type)
1015 {
1016 case SHT_IA_64_UNWIND:
1017 /* The IA-64 processor-specific ABI requires setting sh_link
1018 to the unwind section, whereas HP-UX requires sh_info to
1019 do so. For maximum compatibility, we'll set both for
1020 now... */
1021 hdr->sh_info = hdr->sh_link;
1022 break;
1023 }
1024 }
1025
1026 if (! elf_flags_init (abfd))
1027 {
1028 unsigned long flags = 0;
1029
1030 if (abfd->xvec->byteorder == BFD_ENDIAN_BIG)
1031 flags |= EF_IA_64_BE;
1032 if (bfd_get_mach (abfd) == bfd_mach_ia64_elf64)
1033 flags |= EF_IA_64_ABI64;
1034
1035 elf_elfheader(abfd)->e_flags = flags;
1036 elf_flags_init (abfd) = TRUE;
1037 }
1038 return _bfd_elf_final_write_processing (abfd);
1039 }
1040
1041 /* Hook called by the linker routine which adds symbols from an object
1042 file. We use it to put .comm items in .sbss, and not .bss. */
1043
1044 static bfd_boolean
1045 elfNN_ia64_add_symbol_hook (bfd *abfd,
1046 struct bfd_link_info *info,
1047 Elf_Internal_Sym *sym,
1048 const char **namep ATTRIBUTE_UNUSED,
1049 flagword *flagsp ATTRIBUTE_UNUSED,
1050 asection **secp,
1051 bfd_vma *valp)
1052 {
1053 if (sym->st_shndx == SHN_COMMON
1054 && !bfd_link_relocatable (info)
1055 && sym->st_size <= elf_gp_size (abfd))
1056 {
1057 /* Common symbols less than or equal to -G nn bytes are
1058 automatically put into .sbss. */
1059
1060 asection *scomm = bfd_get_section_by_name (abfd, ".scommon");
1061
1062 if (scomm == NULL)
1063 {
1064 scomm = bfd_make_section_with_flags (abfd, ".scommon",
1065 (SEC_ALLOC
1066 | SEC_IS_COMMON
1067 | SEC_LINKER_CREATED));
1068 if (scomm == NULL)
1069 return FALSE;
1070 }
1071
1072 *secp = scomm;
1073 *valp = sym->st_size;
1074 }
1075
1076 return TRUE;
1077 }
1078
1079 /* Return the number of additional phdrs we will need. */
1080
1081 static int
1082 elfNN_ia64_additional_program_headers (bfd *abfd,
1083 struct bfd_link_info *info ATTRIBUTE_UNUSED)
1084 {
1085 asection *s;
1086 int ret = 0;
1087
1088 /* See if we need a PT_IA_64_ARCHEXT segment. */
1089 s = bfd_get_section_by_name (abfd, ELF_STRING_ia64_archext);
1090 if (s && (s->flags & SEC_LOAD))
1091 ++ret;
1092
1093 /* Count how many PT_IA_64_UNWIND segments we need. */
1094 for (s = abfd->sections; s; s = s->next)
1095 if (is_unwind_section_name (abfd, s->name) && (s->flags & SEC_LOAD))
1096 ++ret;
1097
1098 return ret;
1099 }
1100
1101 static bfd_boolean
1102 elfNN_ia64_modify_segment_map (bfd *abfd,
1103 struct bfd_link_info *info ATTRIBUTE_UNUSED)
1104 {
1105 struct elf_segment_map *m, **pm;
1106 Elf_Internal_Shdr *hdr;
1107 asection *s;
1108
1109 /* If we need a PT_IA_64_ARCHEXT segment, it must come before
1110 all PT_LOAD segments. */
1111 s = bfd_get_section_by_name (abfd, ELF_STRING_ia64_archext);
1112 if (s && (s->flags & SEC_LOAD))
1113 {
1114 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
1115 if (m->p_type == PT_IA_64_ARCHEXT)
1116 break;
1117 if (m == NULL)
1118 {
1119 m = ((struct elf_segment_map *)
1120 bfd_zalloc (abfd, (bfd_size_type) sizeof *m));
1121 if (m == NULL)
1122 return FALSE;
1123
1124 m->p_type = PT_IA_64_ARCHEXT;
1125 m->count = 1;
1126 m->sections[0] = s;
1127
1128 /* We want to put it after the PHDR and INTERP segments. */
1129 pm = &elf_seg_map (abfd);
1130 while (*pm != NULL
1131 && ((*pm)->p_type == PT_PHDR
1132 || (*pm)->p_type == PT_INTERP))
1133 pm = &(*pm)->next;
1134
1135 m->next = *pm;
1136 *pm = m;
1137 }
1138 }
1139
1140 /* Install PT_IA_64_UNWIND segments, if needed. */
1141 for (s = abfd->sections; s; s = s->next)
1142 {
1143 hdr = &elf_section_data (s)->this_hdr;
1144 if (hdr->sh_type != SHT_IA_64_UNWIND)
1145 continue;
1146
1147 if (s && (s->flags & SEC_LOAD))
1148 {
1149 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
1150 if (m->p_type == PT_IA_64_UNWIND)
1151 {
1152 int i;
1153
1154 /* Look through all sections in the unwind segment
1155 for a match since there may be multiple sections
1156 to a segment. */
1157 for (i = m->count - 1; i >= 0; --i)
1158 if (m->sections[i] == s)
1159 break;
1160
1161 if (i >= 0)
1162 break;
1163 }
1164
1165 if (m == NULL)
1166 {
1167 m = ((struct elf_segment_map *)
1168 bfd_zalloc (abfd, (bfd_size_type) sizeof *m));
1169 if (m == NULL)
1170 return FALSE;
1171
1172 m->p_type = PT_IA_64_UNWIND;
1173 m->count = 1;
1174 m->sections[0] = s;
1175 m->next = NULL;
1176
1177 /* We want to put it last. */
1178 pm = &elf_seg_map (abfd);
1179 while (*pm != NULL)
1180 pm = &(*pm)->next;
1181 *pm = m;
1182 }
1183 }
1184 }
1185
1186 return TRUE;
1187 }
1188
1189 /* Turn on PF_IA_64_NORECOV if needed. This involves traversing all of
1190 the input sections for each output section in the segment and testing
1191 for SHF_IA_64_NORECOV on each. */
1192
1193 static bfd_boolean
1194 elfNN_ia64_modify_headers (bfd *abfd, struct bfd_link_info *info)
1195 {
1196 struct elf_obj_tdata *tdata = elf_tdata (abfd);
1197 struct elf_segment_map *m;
1198 Elf_Internal_Phdr *p;
1199
1200 for (p = tdata->phdr, m = elf_seg_map (abfd); m != NULL; m = m->next, p++)
1201 if (m->p_type == PT_LOAD)
1202 {
1203 int i;
1204 for (i = m->count - 1; i >= 0; --i)
1205 {
1206 struct bfd_link_order *order = m->sections[i]->map_head.link_order;
1207
1208 while (order != NULL)
1209 {
1210 if (order->type == bfd_indirect_link_order)
1211 {
1212 asection *is = order->u.indirect.section;
1213 bfd_vma flags = elf_section_data(is)->this_hdr.sh_flags;
1214 if (flags & SHF_IA_64_NORECOV)
1215 {
1216 p->p_flags |= PF_IA_64_NORECOV;
1217 goto found;
1218 }
1219 }
1220 order = order->next;
1221 }
1222 }
1223 found:;
1224 }
1225
1226 return _bfd_elf_modify_headers (abfd, info);
1227 }
1228
1229 /* According to the Tahoe assembler spec, all labels starting with a
1230 '.' are local. */
1231
1232 static bfd_boolean
1233 elfNN_ia64_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
1234 const char *name)
1235 {
1236 return name[0] == '.';
1237 }
1238
1239 /* Should we do dynamic things to this symbol? */
1240
1241 static bfd_boolean
1242 elfNN_ia64_dynamic_symbol_p (struct elf_link_hash_entry *h,
1243 struct bfd_link_info *info, int r_type)
1244 {
1245 bfd_boolean ignore_protected
1246 = ((r_type & 0xf8) == 0x40 /* FPTR relocs */
1247 || (r_type & 0xf8) == 0x50); /* LTOFF_FPTR relocs */
1248
1249 return _bfd_elf_dynamic_symbol_p (h, info, ignore_protected);
1250 }
1251 \f
1252 static struct bfd_hash_entry*
1253 elfNN_ia64_new_elf_hash_entry (struct bfd_hash_entry *entry,
1254 struct bfd_hash_table *table,
1255 const char *string)
1256 {
1257 struct elfNN_ia64_link_hash_entry *ret;
1258 ret = (struct elfNN_ia64_link_hash_entry *) entry;
1259
1260 /* Allocate the structure if it has not already been allocated by a
1261 subclass. */
1262 if (!ret)
1263 ret = bfd_hash_allocate (table, sizeof (*ret));
1264
1265 if (!ret)
1266 return 0;
1267
1268 /* Call the allocation method of the superclass. */
1269 ret = ((struct elfNN_ia64_link_hash_entry *)
1270 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
1271 table, string));
1272
1273 ret->info = NULL;
1274 ret->count = 0;
1275 ret->sorted_count = 0;
1276 ret->size = 0;
1277 return (struct bfd_hash_entry *) ret;
1278 }
1279
1280 static void
1281 elfNN_ia64_hash_copy_indirect (struct bfd_link_info *info,
1282 struct elf_link_hash_entry *xdir,
1283 struct elf_link_hash_entry *xind)
1284 {
1285 struct elfNN_ia64_link_hash_entry *dir, *ind;
1286
1287 dir = (struct elfNN_ia64_link_hash_entry *) xdir;
1288 ind = (struct elfNN_ia64_link_hash_entry *) xind;
1289
1290 /* Copy down any references that we may have already seen to the
1291 symbol which just became indirect. */
1292
1293 if (dir->root.versioned != versioned_hidden)
1294 dir->root.ref_dynamic |= ind->root.ref_dynamic;
1295 dir->root.ref_regular |= ind->root.ref_regular;
1296 dir->root.ref_regular_nonweak |= ind->root.ref_regular_nonweak;
1297 dir->root.needs_plt |= ind->root.needs_plt;
1298
1299 if (ind->root.root.type != bfd_link_hash_indirect)
1300 return;
1301
1302 /* Copy over the got and plt data. This would have been done
1303 by check_relocs. */
1304
1305 if (ind->info != NULL)
1306 {
1307 struct elfNN_ia64_dyn_sym_info *dyn_i;
1308 unsigned int count;
1309
1310 free (dir->info);
1311
1312 dir->info = ind->info;
1313 dir->count = ind->count;
1314 dir->sorted_count = ind->sorted_count;
1315 dir->size = ind->size;
1316
1317 ind->info = NULL;
1318 ind->count = 0;
1319 ind->sorted_count = 0;
1320 ind->size = 0;
1321
1322 /* Fix up the dyn_sym_info pointers to the global symbol. */
1323 for (count = dir->count, dyn_i = dir->info;
1324 count != 0;
1325 count--, dyn_i++)
1326 dyn_i->h = &dir->root;
1327 }
1328
1329 /* Copy over the dynindx. */
1330
1331 if (ind->root.dynindx != -1)
1332 {
1333 if (dir->root.dynindx != -1)
1334 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
1335 dir->root.dynstr_index);
1336 dir->root.dynindx = ind->root.dynindx;
1337 dir->root.dynstr_index = ind->root.dynstr_index;
1338 ind->root.dynindx = -1;
1339 ind->root.dynstr_index = 0;
1340 }
1341 }
1342
1343 static void
1344 elfNN_ia64_hash_hide_symbol (struct bfd_link_info *info,
1345 struct elf_link_hash_entry *xh,
1346 bfd_boolean force_local)
1347 {
1348 struct elfNN_ia64_link_hash_entry *h;
1349 struct elfNN_ia64_dyn_sym_info *dyn_i;
1350 unsigned int count;
1351
1352 h = (struct elfNN_ia64_link_hash_entry *)xh;
1353
1354 _bfd_elf_link_hash_hide_symbol (info, &h->root, force_local);
1355
1356 for (count = h->count, dyn_i = h->info;
1357 count != 0;
1358 count--, dyn_i++)
1359 {
1360 dyn_i->want_plt2 = 0;
1361 dyn_i->want_plt = 0;
1362 }
1363 }
1364
1365 /* Compute a hash of a local hash entry. */
1366
1367 static hashval_t
1368 elfNN_ia64_local_htab_hash (const void *ptr)
1369 {
1370 struct elfNN_ia64_local_hash_entry *entry
1371 = (struct elfNN_ia64_local_hash_entry *) ptr;
1372
1373 return ELF_LOCAL_SYMBOL_HASH (entry->id, entry->r_sym);
1374 }
1375
1376 /* Compare local hash entries. */
1377
1378 static int
1379 elfNN_ia64_local_htab_eq (const void *ptr1, const void *ptr2)
1380 {
1381 struct elfNN_ia64_local_hash_entry *entry1
1382 = (struct elfNN_ia64_local_hash_entry *) ptr1;
1383 struct elfNN_ia64_local_hash_entry *entry2
1384 = (struct elfNN_ia64_local_hash_entry *) ptr2;
1385
1386 return entry1->id == entry2->id && entry1->r_sym == entry2->r_sym;
1387 }
1388
1389 /* Free the global elfNN_ia64_dyn_sym_info array. */
1390
1391 static bfd_boolean
1392 elfNN_ia64_global_dyn_info_free (void **xentry,
1393 void * unused ATTRIBUTE_UNUSED)
1394 {
1395 struct elfNN_ia64_link_hash_entry *entry
1396 = (struct elfNN_ia64_link_hash_entry *) xentry;
1397
1398 free (entry->info);
1399 entry->info = NULL;
1400 entry->count = 0;
1401 entry->sorted_count = 0;
1402 entry->size = 0;
1403
1404 return TRUE;
1405 }
1406
1407 /* Free the local elfNN_ia64_dyn_sym_info array. */
1408
1409 static bfd_boolean
1410 elfNN_ia64_local_dyn_info_free (void **slot,
1411 void * unused ATTRIBUTE_UNUSED)
1412 {
1413 struct elfNN_ia64_local_hash_entry *entry
1414 = (struct elfNN_ia64_local_hash_entry *) *slot;
1415
1416 free (entry->info);
1417 entry->info = NULL;
1418 entry->count = 0;
1419 entry->sorted_count = 0;
1420 entry->size = 0;
1421
1422 return TRUE;
1423 }
1424
1425 /* Destroy IA-64 linker hash table. */
1426
1427 static void
1428 elfNN_ia64_link_hash_table_free (bfd *obfd)
1429 {
1430 struct elfNN_ia64_link_hash_table *ia64_info
1431 = (struct elfNN_ia64_link_hash_table *) obfd->link.hash;
1432 if (ia64_info->loc_hash_table)
1433 {
1434 htab_traverse (ia64_info->loc_hash_table,
1435 elfNN_ia64_local_dyn_info_free, NULL);
1436 htab_delete (ia64_info->loc_hash_table);
1437 }
1438 if (ia64_info->loc_hash_memory)
1439 objalloc_free ((struct objalloc *) ia64_info->loc_hash_memory);
1440 elf_link_hash_traverse (&ia64_info->root,
1441 elfNN_ia64_global_dyn_info_free, NULL);
1442 _bfd_elf_link_hash_table_free (obfd);
1443 }
1444
1445 /* Create the derived linker hash table. The IA-64 ELF port uses this
1446 derived hash table to keep information specific to the IA-64 ElF
1447 linker (without using static variables). */
1448
1449 static struct bfd_link_hash_table *
1450 elfNN_ia64_hash_table_create (bfd *abfd)
1451 {
1452 struct elfNN_ia64_link_hash_table *ret;
1453
1454 ret = bfd_zmalloc ((bfd_size_type) sizeof (*ret));
1455 if (!ret)
1456 return NULL;
1457
1458 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
1459 elfNN_ia64_new_elf_hash_entry,
1460 sizeof (struct elfNN_ia64_link_hash_entry),
1461 IA64_ELF_DATA))
1462 {
1463 free (ret);
1464 return NULL;
1465 }
1466
1467 ret->loc_hash_table = htab_try_create (1024, elfNN_ia64_local_htab_hash,
1468 elfNN_ia64_local_htab_eq, NULL);
1469 ret->loc_hash_memory = objalloc_create ();
1470 if (!ret->loc_hash_table || !ret->loc_hash_memory)
1471 {
1472 elfNN_ia64_link_hash_table_free (abfd);
1473 return NULL;
1474 }
1475 ret->root.root.hash_table_free = elfNN_ia64_link_hash_table_free;
1476 ret->root.dt_pltgot_required = TRUE;
1477
1478 return &ret->root.root;
1479 }
1480
1481 /* Traverse both local and global hash tables. */
1482
1483 struct elfNN_ia64_dyn_sym_traverse_data
1484 {
1485 bfd_boolean (*func) (struct elfNN_ia64_dyn_sym_info *, void *);
1486 void * data;
1487 };
1488
1489 static bfd_boolean
1490 elfNN_ia64_global_dyn_sym_thunk (struct bfd_hash_entry *xentry,
1491 void * xdata)
1492 {
1493 struct elfNN_ia64_link_hash_entry *entry
1494 = (struct elfNN_ia64_link_hash_entry *) xentry;
1495 struct elfNN_ia64_dyn_sym_traverse_data *data
1496 = (struct elfNN_ia64_dyn_sym_traverse_data *) xdata;
1497 struct elfNN_ia64_dyn_sym_info *dyn_i;
1498 unsigned int count;
1499
1500 for (count = entry->count, dyn_i = entry->info;
1501 count != 0;
1502 count--, dyn_i++)
1503 if (! (*data->func) (dyn_i, data->data))
1504 return FALSE;
1505 return TRUE;
1506 }
1507
1508 static bfd_boolean
1509 elfNN_ia64_local_dyn_sym_thunk (void **slot, void * xdata)
1510 {
1511 struct elfNN_ia64_local_hash_entry *entry
1512 = (struct elfNN_ia64_local_hash_entry *) *slot;
1513 struct elfNN_ia64_dyn_sym_traverse_data *data
1514 = (struct elfNN_ia64_dyn_sym_traverse_data *) xdata;
1515 struct elfNN_ia64_dyn_sym_info *dyn_i;
1516 unsigned int count;
1517
1518 for (count = entry->count, dyn_i = entry->info;
1519 count != 0;
1520 count--, dyn_i++)
1521 if (! (*data->func) (dyn_i, data->data))
1522 return FALSE;
1523 return TRUE;
1524 }
1525
1526 static void
1527 elfNN_ia64_dyn_sym_traverse (struct elfNN_ia64_link_hash_table *ia64_info,
1528 bfd_boolean (*func) (struct elfNN_ia64_dyn_sym_info *, void *),
1529 void * data)
1530 {
1531 struct elfNN_ia64_dyn_sym_traverse_data xdata;
1532
1533 xdata.func = func;
1534 xdata.data = data;
1535
1536 elf_link_hash_traverse (&ia64_info->root,
1537 elfNN_ia64_global_dyn_sym_thunk, &xdata);
1538 htab_traverse (ia64_info->loc_hash_table,
1539 elfNN_ia64_local_dyn_sym_thunk, &xdata);
1540 }
1541 \f
1542 static bfd_boolean
1543 elfNN_ia64_create_dynamic_sections (bfd *abfd,
1544 struct bfd_link_info *info)
1545 {
1546 struct elfNN_ia64_link_hash_table *ia64_info;
1547 asection *s;
1548
1549 if (! _bfd_elf_create_dynamic_sections (abfd, info))
1550 return FALSE;
1551
1552 ia64_info = elfNN_ia64_hash_table (info);
1553 if (ia64_info == NULL)
1554 return FALSE;
1555
1556 {
1557 flagword flags = bfd_section_flags (ia64_info->root.sgot);
1558 bfd_set_section_flags (ia64_info->root.sgot, SEC_SMALL_DATA | flags);
1559 /* The .got section is always aligned at 8 bytes. */
1560 if (!bfd_set_section_alignment (ia64_info->root.sgot, 3))
1561 return FALSE;
1562 }
1563
1564 if (!get_pltoff (abfd, info, ia64_info))
1565 return FALSE;
1566
1567 s = bfd_make_section_anyway_with_flags (abfd, ".rela.IA_64.pltoff",
1568 (SEC_ALLOC | SEC_LOAD
1569 | SEC_HAS_CONTENTS
1570 | SEC_IN_MEMORY
1571 | SEC_LINKER_CREATED
1572 | SEC_READONLY));
1573 if (s == NULL
1574 || !bfd_set_section_alignment (s, LOG_SECTION_ALIGN))
1575 return FALSE;
1576 ia64_info->rel_pltoff_sec = s;
1577
1578 return TRUE;
1579 }
1580
1581 /* Find and/or create a hash entry for local symbol. */
1582 static struct elfNN_ia64_local_hash_entry *
1583 get_local_sym_hash (struct elfNN_ia64_link_hash_table *ia64_info,
1584 bfd *abfd, const Elf_Internal_Rela *rel,
1585 bfd_boolean create)
1586 {
1587 struct elfNN_ia64_local_hash_entry e, *ret;
1588 asection *sec = abfd->sections;
1589 hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id,
1590 ELFNN_R_SYM (rel->r_info));
1591 void **slot;
1592
1593 e.id = sec->id;
1594 e.r_sym = ELFNN_R_SYM (rel->r_info);
1595 slot = htab_find_slot_with_hash (ia64_info->loc_hash_table, &e, h,
1596 create ? INSERT : NO_INSERT);
1597
1598 if (!slot)
1599 return NULL;
1600
1601 if (*slot)
1602 return (struct elfNN_ia64_local_hash_entry *) *slot;
1603
1604 ret = (struct elfNN_ia64_local_hash_entry *)
1605 objalloc_alloc ((struct objalloc *) ia64_info->loc_hash_memory,
1606 sizeof (struct elfNN_ia64_local_hash_entry));
1607 if (ret)
1608 {
1609 memset (ret, 0, sizeof (*ret));
1610 ret->id = sec->id;
1611 ret->r_sym = ELFNN_R_SYM (rel->r_info);
1612 *slot = ret;
1613 }
1614 return ret;
1615 }
1616
1617 /* Used to sort elfNN_ia64_dyn_sym_info array. */
1618
1619 static int
1620 addend_compare (const void *xp, const void *yp)
1621 {
1622 const struct elfNN_ia64_dyn_sym_info *x
1623 = (const struct elfNN_ia64_dyn_sym_info *) xp;
1624 const struct elfNN_ia64_dyn_sym_info *y
1625 = (const struct elfNN_ia64_dyn_sym_info *) yp;
1626
1627 return x->addend < y->addend ? -1 : x->addend > y->addend ? 1 : 0;
1628 }
1629
1630 /* Sort elfNN_ia64_dyn_sym_info array and remove duplicates. */
1631
1632 static unsigned int
1633 sort_dyn_sym_info (struct elfNN_ia64_dyn_sym_info *info,
1634 unsigned int count)
1635 {
1636 bfd_vma curr, prev, got_offset;
1637 unsigned int i, kept, dupes, diff, dest, src, len;
1638
1639 qsort (info, count, sizeof (*info), addend_compare);
1640
1641 /* Find the first duplicate. */
1642 prev = info [0].addend;
1643 got_offset = info [0].got_offset;
1644 for (i = 1; i < count; i++)
1645 {
1646 curr = info [i].addend;
1647 if (curr == prev)
1648 {
1649 /* For duplicates, make sure that GOT_OFFSET is valid. */
1650 if (got_offset == (bfd_vma) -1)
1651 got_offset = info [i].got_offset;
1652 break;
1653 }
1654 got_offset = info [i].got_offset;
1655 prev = curr;
1656 }
1657
1658 /* We may move a block of elements to here. */
1659 dest = i++;
1660
1661 /* Remove duplicates. */
1662 if (i < count)
1663 {
1664 while (i < count)
1665 {
1666 /* For duplicates, make sure that the kept one has a valid
1667 got_offset. */
1668 kept = dest - 1;
1669 if (got_offset != (bfd_vma) -1)
1670 info [kept].got_offset = got_offset;
1671
1672 curr = info [i].addend;
1673 got_offset = info [i].got_offset;
1674
1675 /* Move a block of elements whose first one is different from
1676 the previous. */
1677 if (curr == prev)
1678 {
1679 for (src = i + 1; src < count; src++)
1680 {
1681 if (info [src].addend != curr)
1682 break;
1683 /* For duplicates, make sure that GOT_OFFSET is
1684 valid. */
1685 if (got_offset == (bfd_vma) -1)
1686 got_offset = info [src].got_offset;
1687 }
1688
1689 /* Make sure that the kept one has a valid got_offset. */
1690 if (got_offset != (bfd_vma) -1)
1691 info [kept].got_offset = got_offset;
1692 }
1693 else
1694 src = i;
1695
1696 if (src >= count)
1697 break;
1698
1699 /* Find the next duplicate. SRC will be kept. */
1700 prev = info [src].addend;
1701 got_offset = info [src].got_offset;
1702 for (dupes = src + 1; dupes < count; dupes ++)
1703 {
1704 curr = info [dupes].addend;
1705 if (curr == prev)
1706 {
1707 /* Make sure that got_offset is valid. */
1708 if (got_offset == (bfd_vma) -1)
1709 got_offset = info [dupes].got_offset;
1710
1711 /* For duplicates, make sure that the kept one has
1712 a valid got_offset. */
1713 if (got_offset != (bfd_vma) -1)
1714 info [dupes - 1].got_offset = got_offset;
1715 break;
1716 }
1717 got_offset = info [dupes].got_offset;
1718 prev = curr;
1719 }
1720
1721 /* How much to move. */
1722 len = dupes - src;
1723 i = dupes + 1;
1724
1725 if (len == 1 && dupes < count)
1726 {
1727 /* If we only move 1 element, we combine it with the next
1728 one. There must be at least a duplicate. Find the
1729 next different one. */
1730 for (diff = dupes + 1, src++; diff < count; diff++, src++)
1731 {
1732 if (info [diff].addend != curr)
1733 break;
1734 /* Make sure that got_offset is valid. */
1735 if (got_offset == (bfd_vma) -1)
1736 got_offset = info [diff].got_offset;
1737 }
1738
1739 /* Makre sure that the last duplicated one has an valid
1740 offset. */
1741 BFD_ASSERT (curr == prev);
1742 if (got_offset != (bfd_vma) -1)
1743 info [diff - 1].got_offset = got_offset;
1744
1745 if (diff < count)
1746 {
1747 /* Find the next duplicate. Track the current valid
1748 offset. */
1749 prev = info [diff].addend;
1750 got_offset = info [diff].got_offset;
1751 for (dupes = diff + 1; dupes < count; dupes ++)
1752 {
1753 curr = info [dupes].addend;
1754 if (curr == prev)
1755 {
1756 /* For duplicates, make sure that GOT_OFFSET
1757 is valid. */
1758 if (got_offset == (bfd_vma) -1)
1759 got_offset = info [dupes].got_offset;
1760 break;
1761 }
1762 got_offset = info [dupes].got_offset;
1763 prev = curr;
1764 diff++;
1765 }
1766
1767 len = diff - src + 1;
1768 i = diff + 1;
1769 }
1770 }
1771
1772 memmove (&info [dest], &info [src], len * sizeof (*info));
1773
1774 dest += len;
1775 }
1776
1777 count = dest;
1778 }
1779 else
1780 {
1781 /* When we get here, either there is no duplicate at all or
1782 the only duplicate is the last element. */
1783 if (dest < count)
1784 {
1785 /* If the last element is a duplicate, make sure that the
1786 kept one has a valid got_offset. We also update count. */
1787 if (got_offset != (bfd_vma) -1)
1788 info [dest - 1].got_offset = got_offset;
1789 count = dest;
1790 }
1791 }
1792
1793 return count;
1794 }
1795
1796 /* Find and/or create a descriptor for dynamic symbol info. This will
1797 vary based on global or local symbol, and the addend to the reloc.
1798
1799 We don't sort when inserting. Also, we sort and eliminate
1800 duplicates if there is an unsorted section. Typically, this will
1801 only happen once, because we do all insertions before lookups. We
1802 then use bsearch to do a lookup. This also allows lookups to be
1803 fast. So we have fast insertion (O(log N) due to duplicate check),
1804 fast lookup (O(log N)) and one sort (O(N log N) expected time).
1805 Previously, all lookups were O(N) because of the use of the linked
1806 list and also all insertions were O(N) because of the check for
1807 duplicates. There are some complications here because the array
1808 size grows occasionally, which may add an O(N) factor, but this
1809 should be rare. Also, we free the excess array allocation, which
1810 requires a copy which is O(N), but this only happens once. */
1811
1812 static struct elfNN_ia64_dyn_sym_info *
1813 get_dyn_sym_info (struct elfNN_ia64_link_hash_table *ia64_info,
1814 struct elf_link_hash_entry *h, bfd *abfd,
1815 const Elf_Internal_Rela *rel, bfd_boolean create)
1816 {
1817 struct elfNN_ia64_dyn_sym_info **info_p, *info, *dyn_i, key;
1818 unsigned int *count_p, *sorted_count_p, *size_p;
1819 unsigned int count, sorted_count, size;
1820 bfd_vma addend = rel ? rel->r_addend : 0;
1821 bfd_size_type amt;
1822
1823 if (h)
1824 {
1825 struct elfNN_ia64_link_hash_entry *global_h;
1826
1827 global_h = (struct elfNN_ia64_link_hash_entry *) h;
1828 info_p = &global_h->info;
1829 count_p = &global_h->count;
1830 sorted_count_p = &global_h->sorted_count;
1831 size_p = &global_h->size;
1832 }
1833 else
1834 {
1835 struct elfNN_ia64_local_hash_entry *loc_h;
1836
1837 loc_h = get_local_sym_hash (ia64_info, abfd, rel, create);
1838 if (!loc_h)
1839 {
1840 BFD_ASSERT (!create);
1841 return NULL;
1842 }
1843
1844 info_p = &loc_h->info;
1845 count_p = &loc_h->count;
1846 sorted_count_p = &loc_h->sorted_count;
1847 size_p = &loc_h->size;
1848 }
1849
1850 count = *count_p;
1851 sorted_count = *sorted_count_p;
1852 size = *size_p;
1853 info = *info_p;
1854 if (create)
1855 {
1856 /* When we create the array, we don't check for duplicates,
1857 except in the previously sorted section if one exists, and
1858 against the last inserted entry. This allows insertions to
1859 be fast. */
1860 if (info)
1861 {
1862 if (sorted_count)
1863 {
1864 /* Try bsearch first on the sorted section. */
1865 key.addend = addend;
1866 dyn_i = bsearch (&key, info, sorted_count,
1867 sizeof (*info), addend_compare);
1868
1869 if (dyn_i)
1870 {
1871 return dyn_i;
1872 }
1873 }
1874
1875 /* Do a quick check for the last inserted entry. */
1876 dyn_i = info + count - 1;
1877 if (dyn_i->addend == addend)
1878 {
1879 return dyn_i;
1880 }
1881 }
1882
1883 if (size == 0)
1884 {
1885 /* It is the very first element. We create the array of size
1886 1. */
1887 size = 1;
1888 amt = size * sizeof (*info);
1889 info = bfd_malloc (amt);
1890 }
1891 else if (size <= count)
1892 {
1893 /* We double the array size every time when we reach the
1894 size limit. */
1895 size += size;
1896 amt = size * sizeof (*info);
1897 info = bfd_realloc (info, amt);
1898 }
1899 else
1900 goto has_space;
1901
1902 if (info == NULL)
1903 return NULL;
1904 *size_p = size;
1905 *info_p = info;
1906
1907 has_space:
1908 /* Append the new one to the array. */
1909 dyn_i = info + count;
1910 memset (dyn_i, 0, sizeof (*dyn_i));
1911 dyn_i->got_offset = (bfd_vma) -1;
1912 dyn_i->addend = addend;
1913
1914 /* We increment count only since the new ones are unsorted and
1915 may have duplicate. */
1916 (*count_p)++;
1917 }
1918 else
1919 {
1920 /* It is a lookup without insertion. Sort array if part of the
1921 array isn't sorted. */
1922 if (count != sorted_count)
1923 {
1924 count = sort_dyn_sym_info (info, count);
1925 *count_p = count;
1926 *sorted_count_p = count;
1927 }
1928
1929 /* Free unused memory. */
1930 if (size != count)
1931 {
1932 amt = count * sizeof (*info);
1933 info = bfd_malloc (amt);
1934 if (info != NULL)
1935 {
1936 memcpy (info, *info_p, amt);
1937 free (*info_p);
1938 *size_p = count;
1939 *info_p = info;
1940 }
1941 }
1942
1943 key.addend = addend;
1944 dyn_i = bsearch (&key, info, count,
1945 sizeof (*info), addend_compare);
1946 }
1947
1948 return dyn_i;
1949 }
1950
1951 static asection *
1952 get_got (bfd *abfd, struct bfd_link_info *info,
1953 struct elfNN_ia64_link_hash_table *ia64_info)
1954 {
1955 asection *got;
1956 bfd *dynobj;
1957
1958 got = ia64_info->root.sgot;
1959 if (!got)
1960 {
1961 flagword flags;
1962
1963 dynobj = ia64_info->root.dynobj;
1964 if (!dynobj)
1965 ia64_info->root.dynobj = dynobj = abfd;
1966 if (!_bfd_elf_create_got_section (dynobj, info))
1967 return NULL;
1968
1969 got = ia64_info->root.sgot;
1970
1971 /* The .got section is always aligned at 8 bytes. */
1972 if (!bfd_set_section_alignment (got, 3))
1973 return NULL;
1974
1975 flags = bfd_section_flags (got);
1976 if (!bfd_set_section_flags (got, SEC_SMALL_DATA | flags))
1977 return NULL;
1978 }
1979
1980 return got;
1981 }
1982
1983 /* Create function descriptor section (.opd). This section is called .opd
1984 because it contains "official procedure descriptors". The "official"
1985 refers to the fact that these descriptors are used when taking the address
1986 of a procedure, thus ensuring a unique address for each procedure. */
1987
1988 static asection *
1989 get_fptr (bfd *abfd, struct bfd_link_info *info,
1990 struct elfNN_ia64_link_hash_table *ia64_info)
1991 {
1992 asection *fptr;
1993 bfd *dynobj;
1994
1995 fptr = ia64_info->fptr_sec;
1996 if (!fptr)
1997 {
1998 dynobj = ia64_info->root.dynobj;
1999 if (!dynobj)
2000 ia64_info->root.dynobj = dynobj = abfd;
2001
2002 fptr = bfd_make_section_anyway_with_flags (dynobj, ".opd",
2003 (SEC_ALLOC
2004 | SEC_LOAD
2005 | SEC_HAS_CONTENTS
2006 | SEC_IN_MEMORY
2007 | (bfd_link_pie (info)
2008 ? 0 : SEC_READONLY)
2009 | SEC_LINKER_CREATED));
2010 if (!fptr
2011 || !bfd_set_section_alignment (fptr, 4))
2012 {
2013 BFD_ASSERT (0);
2014 return NULL;
2015 }
2016
2017 ia64_info->fptr_sec = fptr;
2018
2019 if (bfd_link_pie (info))
2020 {
2021 asection *fptr_rel;
2022 fptr_rel = bfd_make_section_anyway_with_flags (dynobj, ".rela.opd",
2023 (SEC_ALLOC | SEC_LOAD
2024 | SEC_HAS_CONTENTS
2025 | SEC_IN_MEMORY
2026 | SEC_LINKER_CREATED
2027 | SEC_READONLY));
2028 if (fptr_rel == NULL
2029 || !bfd_set_section_alignment (fptr_rel, LOG_SECTION_ALIGN))
2030 {
2031 BFD_ASSERT (0);
2032 return NULL;
2033 }
2034
2035 ia64_info->rel_fptr_sec = fptr_rel;
2036 }
2037 }
2038
2039 return fptr;
2040 }
2041
2042 static asection *
2043 get_pltoff (bfd *abfd, struct bfd_link_info *info ATTRIBUTE_UNUSED,
2044 struct elfNN_ia64_link_hash_table *ia64_info)
2045 {
2046 asection *pltoff;
2047 bfd *dynobj;
2048
2049 pltoff = ia64_info->pltoff_sec;
2050 if (!pltoff)
2051 {
2052 dynobj = ia64_info->root.dynobj;
2053 if (!dynobj)
2054 ia64_info->root.dynobj = dynobj = abfd;
2055
2056 pltoff = bfd_make_section_anyway_with_flags (dynobj,
2057 ELF_STRING_ia64_pltoff,
2058 (SEC_ALLOC
2059 | SEC_LOAD
2060 | SEC_HAS_CONTENTS
2061 | SEC_IN_MEMORY
2062 | SEC_SMALL_DATA
2063 | SEC_LINKER_CREATED));
2064 if (!pltoff
2065 || !bfd_set_section_alignment (pltoff, 4))
2066 {
2067 BFD_ASSERT (0);
2068 return NULL;
2069 }
2070
2071 ia64_info->pltoff_sec = pltoff;
2072 }
2073
2074 return pltoff;
2075 }
2076
2077 static asection *
2078 get_reloc_section (bfd *abfd,
2079 struct elfNN_ia64_link_hash_table *ia64_info,
2080 asection *sec, bfd_boolean create)
2081 {
2082 const char *srel_name;
2083 asection *srel;
2084 bfd *dynobj;
2085
2086 srel_name = (bfd_elf_string_from_elf_section
2087 (abfd, elf_elfheader(abfd)->e_shstrndx,
2088 _bfd_elf_single_rel_hdr (sec)->sh_name));
2089 if (srel_name == NULL)
2090 return NULL;
2091
2092 dynobj = ia64_info->root.dynobj;
2093 if (!dynobj)
2094 ia64_info->root.dynobj = dynobj = abfd;
2095
2096 srel = bfd_get_linker_section (dynobj, srel_name);
2097 if (srel == NULL && create)
2098 {
2099 srel = bfd_make_section_anyway_with_flags (dynobj, srel_name,
2100 (SEC_ALLOC | SEC_LOAD
2101 | SEC_HAS_CONTENTS
2102 | SEC_IN_MEMORY
2103 | SEC_LINKER_CREATED
2104 | SEC_READONLY));
2105 if (srel == NULL
2106 || !bfd_set_section_alignment (srel, LOG_SECTION_ALIGN))
2107 return NULL;
2108 }
2109
2110 return srel;
2111 }
2112
2113 static bfd_boolean
2114 count_dyn_reloc (bfd *abfd, struct elfNN_ia64_dyn_sym_info *dyn_i,
2115 asection *srel, int type, bfd_boolean reltext)
2116 {
2117 struct elfNN_ia64_dyn_reloc_entry *rent;
2118
2119 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
2120 if (rent->srel == srel && rent->type == type)
2121 break;
2122
2123 if (!rent)
2124 {
2125 rent = ((struct elfNN_ia64_dyn_reloc_entry *)
2126 bfd_alloc (abfd, (bfd_size_type) sizeof (*rent)));
2127 if (!rent)
2128 return FALSE;
2129
2130 rent->next = dyn_i->reloc_entries;
2131 rent->srel = srel;
2132 rent->type = type;
2133 rent->count = 0;
2134 dyn_i->reloc_entries = rent;
2135 }
2136 rent->reltext = reltext;
2137 rent->count++;
2138
2139 return TRUE;
2140 }
2141
2142 static bfd_boolean
2143 elfNN_ia64_check_relocs (bfd *abfd, struct bfd_link_info *info,
2144 asection *sec,
2145 const Elf_Internal_Rela *relocs)
2146 {
2147 struct elfNN_ia64_link_hash_table *ia64_info;
2148 const Elf_Internal_Rela *relend;
2149 Elf_Internal_Shdr *symtab_hdr;
2150 const Elf_Internal_Rela *rel;
2151 asection *got, *fptr, *srel, *pltoff;
2152 enum {
2153 NEED_GOT = 1,
2154 NEED_GOTX = 2,
2155 NEED_FPTR = 4,
2156 NEED_PLTOFF = 8,
2157 NEED_MIN_PLT = 16,
2158 NEED_FULL_PLT = 32,
2159 NEED_DYNREL = 64,
2160 NEED_LTOFF_FPTR = 128,
2161 NEED_TPREL = 256,
2162 NEED_DTPMOD = 512,
2163 NEED_DTPREL = 1024
2164 };
2165 int need_entry;
2166 struct elf_link_hash_entry *h;
2167 unsigned long r_symndx;
2168 bfd_boolean maybe_dynamic;
2169
2170 if (bfd_link_relocatable (info))
2171 return TRUE;
2172
2173 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2174 ia64_info = elfNN_ia64_hash_table (info);
2175 if (ia64_info == NULL)
2176 return FALSE;
2177
2178 got = fptr = srel = pltoff = NULL;
2179
2180 relend = relocs + sec->reloc_count;
2181
2182 /* We scan relocations first to create dynamic relocation arrays. We
2183 modified get_dyn_sym_info to allow fast insertion and support fast
2184 lookup in the next loop. */
2185 for (rel = relocs; rel < relend; ++rel)
2186 {
2187 r_symndx = ELFNN_R_SYM (rel->r_info);
2188 if (r_symndx >= symtab_hdr->sh_info)
2189 {
2190 long indx = r_symndx - symtab_hdr->sh_info;
2191 h = elf_sym_hashes (abfd)[indx];
2192 while (h->root.type == bfd_link_hash_indirect
2193 || h->root.type == bfd_link_hash_warning)
2194 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2195 }
2196 else
2197 h = NULL;
2198
2199 if (h && UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
2200 continue;
2201
2202 /* We can only get preliminary data on whether a symbol is
2203 locally or externally defined, as not all of the input files
2204 have yet been processed. Do something with what we know, as
2205 this may help reduce memory usage and processing time later. */
2206 maybe_dynamic = (h && ((!bfd_link_executable (info)
2207 && (!SYMBOLIC_BIND (info, h)
2208 || info->unresolved_syms_in_shared_libs == RM_IGNORE))
2209 || !h->def_regular
2210 || h->root.type == bfd_link_hash_defweak));
2211
2212 need_entry = 0;
2213 switch (ELFNN_R_TYPE (rel->r_info))
2214 {
2215 case R_IA64_TPREL64MSB:
2216 case R_IA64_TPREL64LSB:
2217 if (bfd_link_pic (info) || maybe_dynamic)
2218 need_entry = NEED_DYNREL;
2219 break;
2220
2221 case R_IA64_LTOFF_TPREL22:
2222 need_entry = NEED_TPREL;
2223 if (bfd_link_pic (info))
2224 info->flags |= DF_STATIC_TLS;
2225 break;
2226
2227 case R_IA64_DTPREL32MSB:
2228 case R_IA64_DTPREL32LSB:
2229 case R_IA64_DTPREL64MSB:
2230 case R_IA64_DTPREL64LSB:
2231 if (bfd_link_pic (info) || maybe_dynamic)
2232 need_entry = NEED_DYNREL;
2233 break;
2234
2235 case R_IA64_LTOFF_DTPREL22:
2236 need_entry = NEED_DTPREL;
2237 break;
2238
2239 case R_IA64_DTPMOD64MSB:
2240 case R_IA64_DTPMOD64LSB:
2241 if (bfd_link_pic (info) || maybe_dynamic)
2242 need_entry = NEED_DYNREL;
2243 break;
2244
2245 case R_IA64_LTOFF_DTPMOD22:
2246 need_entry = NEED_DTPMOD;
2247 break;
2248
2249 case R_IA64_LTOFF_FPTR22:
2250 case R_IA64_LTOFF_FPTR64I:
2251 case R_IA64_LTOFF_FPTR32MSB:
2252 case R_IA64_LTOFF_FPTR32LSB:
2253 case R_IA64_LTOFF_FPTR64MSB:
2254 case R_IA64_LTOFF_FPTR64LSB:
2255 need_entry = NEED_FPTR | NEED_GOT | NEED_LTOFF_FPTR;
2256 break;
2257
2258 case R_IA64_FPTR64I:
2259 case R_IA64_FPTR32MSB:
2260 case R_IA64_FPTR32LSB:
2261 case R_IA64_FPTR64MSB:
2262 case R_IA64_FPTR64LSB:
2263 if (bfd_link_pic (info) || h)
2264 need_entry = NEED_FPTR | NEED_DYNREL;
2265 else
2266 need_entry = NEED_FPTR;
2267 break;
2268
2269 case R_IA64_LTOFF22:
2270 case R_IA64_LTOFF64I:
2271 need_entry = NEED_GOT;
2272 break;
2273
2274 case R_IA64_LTOFF22X:
2275 need_entry = NEED_GOTX;
2276 break;
2277
2278 case R_IA64_PLTOFF22:
2279 case R_IA64_PLTOFF64I:
2280 case R_IA64_PLTOFF64MSB:
2281 case R_IA64_PLTOFF64LSB:
2282 need_entry = NEED_PLTOFF;
2283 if (h)
2284 {
2285 if (maybe_dynamic)
2286 need_entry |= NEED_MIN_PLT;
2287 }
2288 else
2289 {
2290 (*info->callbacks->warning)
2291 (info, _("@pltoff reloc against local symbol"), 0,
2292 abfd, 0, (bfd_vma) 0);
2293 }
2294 break;
2295
2296 case R_IA64_PCREL21B:
2297 case R_IA64_PCREL60B:
2298 /* Depending on where this symbol is defined, we may or may not
2299 need a full plt entry. Only skip if we know we'll not need
2300 the entry -- static or symbolic, and the symbol definition
2301 has already been seen. */
2302 if (maybe_dynamic && rel->r_addend == 0)
2303 need_entry = NEED_FULL_PLT;
2304 break;
2305
2306 case R_IA64_IMM14:
2307 case R_IA64_IMM22:
2308 case R_IA64_IMM64:
2309 case R_IA64_DIR32MSB:
2310 case R_IA64_DIR32LSB:
2311 case R_IA64_DIR64MSB:
2312 case R_IA64_DIR64LSB:
2313 /* Shared objects will always need at least a REL relocation. */
2314 if (bfd_link_pic (info) || maybe_dynamic)
2315 need_entry = NEED_DYNREL;
2316 break;
2317
2318 case R_IA64_IPLTMSB:
2319 case R_IA64_IPLTLSB:
2320 /* Shared objects will always need at least a REL relocation. */
2321 if (bfd_link_pic (info) || maybe_dynamic)
2322 need_entry = NEED_DYNREL;
2323 break;
2324
2325 case R_IA64_PCREL22:
2326 case R_IA64_PCREL64I:
2327 case R_IA64_PCREL32MSB:
2328 case R_IA64_PCREL32LSB:
2329 case R_IA64_PCREL64MSB:
2330 case R_IA64_PCREL64LSB:
2331 if (maybe_dynamic)
2332 need_entry = NEED_DYNREL;
2333 break;
2334 }
2335
2336 if (!need_entry)
2337 continue;
2338
2339 if ((need_entry & NEED_FPTR) != 0
2340 && rel->r_addend)
2341 {
2342 (*info->callbacks->warning)
2343 (info, _("non-zero addend in @fptr reloc"), 0,
2344 abfd, 0, (bfd_vma) 0);
2345 }
2346
2347 if (get_dyn_sym_info (ia64_info, h, abfd, rel, TRUE) == NULL)
2348 return FALSE;
2349 }
2350
2351 /* Now, we only do lookup without insertion, which is very fast
2352 with the modified get_dyn_sym_info. */
2353 for (rel = relocs; rel < relend; ++rel)
2354 {
2355 struct elfNN_ia64_dyn_sym_info *dyn_i;
2356 int dynrel_type = R_IA64_NONE;
2357
2358 r_symndx = ELFNN_R_SYM (rel->r_info);
2359 if (r_symndx >= symtab_hdr->sh_info)
2360 {
2361 /* We're dealing with a global symbol -- find its hash entry
2362 and mark it as being referenced. */
2363 long indx = r_symndx - symtab_hdr->sh_info;
2364 h = elf_sym_hashes (abfd)[indx];
2365 while (h->root.type == bfd_link_hash_indirect
2366 || h->root.type == bfd_link_hash_warning)
2367 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2368
2369 /* PR15323, ref flags aren't set for references in the same
2370 object. */
2371 h->ref_regular = 1;
2372 }
2373 else
2374 h = NULL;
2375
2376 if (h && UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
2377 continue;
2378
2379 /* We can only get preliminary data on whether a symbol is
2380 locally or externally defined, as not all of the input files
2381 have yet been processed. Do something with what we know, as
2382 this may help reduce memory usage and processing time later. */
2383 maybe_dynamic = (h && ((!bfd_link_executable (info)
2384 && (!SYMBOLIC_BIND (info, h)
2385 || info->unresolved_syms_in_shared_libs == RM_IGNORE))
2386 || !h->def_regular
2387 || h->root.type == bfd_link_hash_defweak));
2388
2389 need_entry = 0;
2390 switch (ELFNN_R_TYPE (rel->r_info))
2391 {
2392 case R_IA64_TPREL64MSB:
2393 case R_IA64_TPREL64LSB:
2394 if (bfd_link_pic (info) || maybe_dynamic)
2395 need_entry = NEED_DYNREL;
2396 dynrel_type = R_IA64_TPREL64LSB;
2397 if (bfd_link_pic (info))
2398 info->flags |= DF_STATIC_TLS;
2399 break;
2400
2401 case R_IA64_LTOFF_TPREL22:
2402 need_entry = NEED_TPREL;
2403 if (bfd_link_pic (info))
2404 info->flags |= DF_STATIC_TLS;
2405 break;
2406
2407 case R_IA64_DTPREL32MSB:
2408 case R_IA64_DTPREL32LSB:
2409 case R_IA64_DTPREL64MSB:
2410 case R_IA64_DTPREL64LSB:
2411 if (bfd_link_pic (info) || maybe_dynamic)
2412 need_entry = NEED_DYNREL;
2413 dynrel_type = R_IA64_DTPRELNNLSB;
2414 break;
2415
2416 case R_IA64_LTOFF_DTPREL22:
2417 need_entry = NEED_DTPREL;
2418 break;
2419
2420 case R_IA64_DTPMOD64MSB:
2421 case R_IA64_DTPMOD64LSB:
2422 if (bfd_link_pic (info) || maybe_dynamic)
2423 need_entry = NEED_DYNREL;
2424 dynrel_type = R_IA64_DTPMOD64LSB;
2425 break;
2426
2427 case R_IA64_LTOFF_DTPMOD22:
2428 need_entry = NEED_DTPMOD;
2429 break;
2430
2431 case R_IA64_LTOFF_FPTR22:
2432 case R_IA64_LTOFF_FPTR64I:
2433 case R_IA64_LTOFF_FPTR32MSB:
2434 case R_IA64_LTOFF_FPTR32LSB:
2435 case R_IA64_LTOFF_FPTR64MSB:
2436 case R_IA64_LTOFF_FPTR64LSB:
2437 need_entry = NEED_FPTR | NEED_GOT | NEED_LTOFF_FPTR;
2438 break;
2439
2440 case R_IA64_FPTR64I:
2441 case R_IA64_FPTR32MSB:
2442 case R_IA64_FPTR32LSB:
2443 case R_IA64_FPTR64MSB:
2444 case R_IA64_FPTR64LSB:
2445 if (bfd_link_pic (info) || h)
2446 need_entry = NEED_FPTR | NEED_DYNREL;
2447 else
2448 need_entry = NEED_FPTR;
2449 dynrel_type = R_IA64_FPTRNNLSB;
2450 break;
2451
2452 case R_IA64_LTOFF22:
2453 case R_IA64_LTOFF64I:
2454 need_entry = NEED_GOT;
2455 break;
2456
2457 case R_IA64_LTOFF22X:
2458 need_entry = NEED_GOTX;
2459 break;
2460
2461 case R_IA64_PLTOFF22:
2462 case R_IA64_PLTOFF64I:
2463 case R_IA64_PLTOFF64MSB:
2464 case R_IA64_PLTOFF64LSB:
2465 need_entry = NEED_PLTOFF;
2466 if (h)
2467 {
2468 if (maybe_dynamic)
2469 need_entry |= NEED_MIN_PLT;
2470 }
2471 break;
2472
2473 case R_IA64_PCREL21B:
2474 case R_IA64_PCREL60B:
2475 /* Depending on where this symbol is defined, we may or may not
2476 need a full plt entry. Only skip if we know we'll not need
2477 the entry -- static or symbolic, and the symbol definition
2478 has already been seen. */
2479 if (maybe_dynamic && rel->r_addend == 0)
2480 need_entry = NEED_FULL_PLT;
2481 break;
2482
2483 case R_IA64_IMM14:
2484 case R_IA64_IMM22:
2485 case R_IA64_IMM64:
2486 case R_IA64_DIR32MSB:
2487 case R_IA64_DIR32LSB:
2488 case R_IA64_DIR64MSB:
2489 case R_IA64_DIR64LSB:
2490 /* Shared objects will always need at least a REL relocation. */
2491 if (bfd_link_pic (info) || maybe_dynamic)
2492 need_entry = NEED_DYNREL;
2493 dynrel_type = R_IA64_DIRNNLSB;
2494 break;
2495
2496 case R_IA64_IPLTMSB:
2497 case R_IA64_IPLTLSB:
2498 /* Shared objects will always need at least a REL relocation. */
2499 if (bfd_link_pic (info) || maybe_dynamic)
2500 need_entry = NEED_DYNREL;
2501 dynrel_type = R_IA64_IPLTLSB;
2502 break;
2503
2504 case R_IA64_PCREL22:
2505 case R_IA64_PCREL64I:
2506 case R_IA64_PCREL32MSB:
2507 case R_IA64_PCREL32LSB:
2508 case R_IA64_PCREL64MSB:
2509 case R_IA64_PCREL64LSB:
2510 if (maybe_dynamic)
2511 need_entry = NEED_DYNREL;
2512 dynrel_type = R_IA64_PCRELNNLSB;
2513 break;
2514 }
2515
2516 if (!need_entry)
2517 continue;
2518
2519 dyn_i = get_dyn_sym_info (ia64_info, h, abfd, rel, FALSE);
2520
2521 /* Record whether or not this is a local symbol. */
2522 dyn_i->h = h;
2523
2524 /* Create what's needed. */
2525 if (need_entry & (NEED_GOT | NEED_GOTX | NEED_TPREL
2526 | NEED_DTPMOD | NEED_DTPREL))
2527 {
2528 if (!got)
2529 {
2530 got = get_got (abfd, info, ia64_info);
2531 if (!got)
2532 return FALSE;
2533 }
2534 if (need_entry & NEED_GOT)
2535 dyn_i->want_got = 1;
2536 if (need_entry & NEED_GOTX)
2537 dyn_i->want_gotx = 1;
2538 if (need_entry & NEED_TPREL)
2539 dyn_i->want_tprel = 1;
2540 if (need_entry & NEED_DTPMOD)
2541 dyn_i->want_dtpmod = 1;
2542 if (need_entry & NEED_DTPREL)
2543 dyn_i->want_dtprel = 1;
2544 }
2545 if (need_entry & NEED_FPTR)
2546 {
2547 if (!fptr)
2548 {
2549 fptr = get_fptr (abfd, info, ia64_info);
2550 if (!fptr)
2551 return FALSE;
2552 }
2553
2554 /* FPTRs for shared libraries are allocated by the dynamic
2555 linker. Make sure this local symbol will appear in the
2556 dynamic symbol table. */
2557 if (!h && bfd_link_pic (info))
2558 {
2559 if (! (bfd_elf_link_record_local_dynamic_symbol
2560 (info, abfd, (long) r_symndx)))
2561 return FALSE;
2562 }
2563
2564 dyn_i->want_fptr = 1;
2565 }
2566 if (need_entry & NEED_LTOFF_FPTR)
2567 dyn_i->want_ltoff_fptr = 1;
2568 if (need_entry & (NEED_MIN_PLT | NEED_FULL_PLT))
2569 {
2570 if (!ia64_info->root.dynobj)
2571 ia64_info->root.dynobj = abfd;
2572 h->needs_plt = 1;
2573 dyn_i->want_plt = 1;
2574 }
2575 if (need_entry & NEED_FULL_PLT)
2576 dyn_i->want_plt2 = 1;
2577 if (need_entry & NEED_PLTOFF)
2578 {
2579 /* This is needed here, in case @pltoff is used in a non-shared
2580 link. */
2581 if (!pltoff)
2582 {
2583 pltoff = get_pltoff (abfd, info, ia64_info);
2584 if (!pltoff)
2585 return FALSE;
2586 }
2587
2588 dyn_i->want_pltoff = 1;
2589 }
2590 if ((need_entry & NEED_DYNREL) && (sec->flags & SEC_ALLOC))
2591 {
2592 if (!srel)
2593 {
2594 srel = get_reloc_section (abfd, ia64_info, sec, TRUE);
2595 if (!srel)
2596 return FALSE;
2597 }
2598 if (!count_dyn_reloc (abfd, dyn_i, srel, dynrel_type,
2599 (sec->flags & SEC_READONLY) != 0))
2600 return FALSE;
2601 }
2602 }
2603
2604 return TRUE;
2605 }
2606
2607 /* For cleanliness, and potentially faster dynamic loading, allocate
2608 external GOT entries first. */
2609
2610 static bfd_boolean
2611 allocate_global_data_got (struct elfNN_ia64_dyn_sym_info *dyn_i,
2612 void * data)
2613 {
2614 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2615
2616 if ((dyn_i->want_got || dyn_i->want_gotx)
2617 && ! dyn_i->want_fptr
2618 && elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, 0))
2619 {
2620 dyn_i->got_offset = x->ofs;
2621 x->ofs += 8;
2622 }
2623 if (dyn_i->want_tprel)
2624 {
2625 dyn_i->tprel_offset = x->ofs;
2626 x->ofs += 8;
2627 }
2628 if (dyn_i->want_dtpmod)
2629 {
2630 if (elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, 0))
2631 {
2632 dyn_i->dtpmod_offset = x->ofs;
2633 x->ofs += 8;
2634 }
2635 else
2636 {
2637 struct elfNN_ia64_link_hash_table *ia64_info;
2638
2639 ia64_info = elfNN_ia64_hash_table (x->info);
2640 if (ia64_info == NULL)
2641 return FALSE;
2642
2643 if (ia64_info->self_dtpmod_offset == (bfd_vma) -1)
2644 {
2645 ia64_info->self_dtpmod_offset = x->ofs;
2646 x->ofs += 8;
2647 }
2648 dyn_i->dtpmod_offset = ia64_info->self_dtpmod_offset;
2649 }
2650 }
2651 if (dyn_i->want_dtprel)
2652 {
2653 dyn_i->dtprel_offset = x->ofs;
2654 x->ofs += 8;
2655 }
2656 return TRUE;
2657 }
2658
2659 /* Next, allocate all the GOT entries used by LTOFF_FPTR relocs. */
2660
2661 static bfd_boolean
2662 allocate_global_fptr_got (struct elfNN_ia64_dyn_sym_info *dyn_i,
2663 void * data)
2664 {
2665 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2666
2667 if (dyn_i->want_got
2668 && dyn_i->want_fptr
2669 && elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, R_IA64_FPTRNNLSB))
2670 {
2671 dyn_i->got_offset = x->ofs;
2672 x->ofs += 8;
2673 }
2674 return TRUE;
2675 }
2676
2677 /* Lastly, allocate all the GOT entries for local data. */
2678
2679 static bfd_boolean
2680 allocate_local_got (struct elfNN_ia64_dyn_sym_info *dyn_i,
2681 void * data)
2682 {
2683 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2684
2685 if ((dyn_i->want_got || dyn_i->want_gotx)
2686 && !elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, 0))
2687 {
2688 dyn_i->got_offset = x->ofs;
2689 x->ofs += 8;
2690 }
2691 return TRUE;
2692 }
2693
2694 /* Search for the index of a global symbol in it's defining object file. */
2695
2696 static long
2697 global_sym_index (struct elf_link_hash_entry *h)
2698 {
2699 struct elf_link_hash_entry **p;
2700 bfd *obj;
2701
2702 BFD_ASSERT (h->root.type == bfd_link_hash_defined
2703 || h->root.type == bfd_link_hash_defweak);
2704
2705 obj = h->root.u.def.section->owner;
2706 for (p = elf_sym_hashes (obj); *p != h; ++p)
2707 continue;
2708
2709 return p - elf_sym_hashes (obj) + elf_tdata (obj)->symtab_hdr.sh_info;
2710 }
2711
2712 /* Allocate function descriptors. We can do these for every function
2713 in a main executable that is not exported. */
2714
2715 static bfd_boolean
2716 allocate_fptr (struct elfNN_ia64_dyn_sym_info *dyn_i, void * data)
2717 {
2718 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2719
2720 if (dyn_i->want_fptr)
2721 {
2722 struct elf_link_hash_entry *h = dyn_i->h;
2723
2724 if (h)
2725 while (h->root.type == bfd_link_hash_indirect
2726 || h->root.type == bfd_link_hash_warning)
2727 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2728
2729 if (!bfd_link_executable (x->info)
2730 && (!h
2731 || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2732 && !UNDEFWEAK_NO_DYNAMIC_RELOC (x->info, h))
2733 || (h->root.type != bfd_link_hash_undefweak
2734 && h->root.type != bfd_link_hash_undefined)))
2735 {
2736 if (h && h->dynindx == -1)
2737 {
2738 BFD_ASSERT ((h->root.type == bfd_link_hash_defined)
2739 || (h->root.type == bfd_link_hash_defweak));
2740
2741 if (!bfd_elf_link_record_local_dynamic_symbol
2742 (x->info, h->root.u.def.section->owner,
2743 global_sym_index (h)))
2744 return FALSE;
2745 }
2746
2747 dyn_i->want_fptr = 0;
2748 }
2749 else if (h == NULL || h->dynindx == -1)
2750 {
2751 dyn_i->fptr_offset = x->ofs;
2752 x->ofs += 16;
2753 }
2754 else
2755 dyn_i->want_fptr = 0;
2756 }
2757 return TRUE;
2758 }
2759
2760 /* Allocate all the minimal PLT entries. */
2761
2762 static bfd_boolean
2763 allocate_plt_entries (struct elfNN_ia64_dyn_sym_info *dyn_i,
2764 void * data)
2765 {
2766 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2767
2768 if (dyn_i->want_plt)
2769 {
2770 struct elf_link_hash_entry *h = dyn_i->h;
2771
2772 if (h)
2773 while (h->root.type == bfd_link_hash_indirect
2774 || h->root.type == bfd_link_hash_warning)
2775 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2776
2777 /* ??? Versioned symbols seem to lose NEEDS_PLT. */
2778 if (elfNN_ia64_dynamic_symbol_p (h, x->info, 0))
2779 {
2780 bfd_size_type offset = x->ofs;
2781 if (offset == 0)
2782 offset = PLT_HEADER_SIZE;
2783 dyn_i->plt_offset = offset;
2784 x->ofs = offset + PLT_MIN_ENTRY_SIZE;
2785
2786 dyn_i->want_pltoff = 1;
2787 }
2788 else
2789 {
2790 dyn_i->want_plt = 0;
2791 dyn_i->want_plt2 = 0;
2792 }
2793 }
2794 return TRUE;
2795 }
2796
2797 /* Allocate all the full PLT entries. */
2798
2799 static bfd_boolean
2800 allocate_plt2_entries (struct elfNN_ia64_dyn_sym_info *dyn_i,
2801 void * data)
2802 {
2803 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2804
2805 if (dyn_i->want_plt2)
2806 {
2807 struct elf_link_hash_entry *h = dyn_i->h;
2808 bfd_size_type ofs = x->ofs;
2809
2810 dyn_i->plt2_offset = ofs;
2811 x->ofs = ofs + PLT_FULL_ENTRY_SIZE;
2812
2813 while (h->root.type == bfd_link_hash_indirect
2814 || h->root.type == bfd_link_hash_warning)
2815 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2816 dyn_i->h->plt.offset = ofs;
2817 }
2818 return TRUE;
2819 }
2820
2821 /* Allocate all the PLTOFF entries requested by relocations and
2822 plt entries. We can't share space with allocated FPTR entries,
2823 because the latter are not necessarily addressable by the GP.
2824 ??? Relaxation might be able to determine that they are. */
2825
2826 static bfd_boolean
2827 allocate_pltoff_entries (struct elfNN_ia64_dyn_sym_info *dyn_i,
2828 void * data)
2829 {
2830 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2831
2832 if (dyn_i->want_pltoff)
2833 {
2834 dyn_i->pltoff_offset = x->ofs;
2835 x->ofs += 16;
2836 }
2837 return TRUE;
2838 }
2839
2840 /* Allocate dynamic relocations for those symbols that turned out
2841 to be dynamic. */
2842
2843 static bfd_boolean
2844 allocate_dynrel_entries (struct elfNN_ia64_dyn_sym_info *dyn_i,
2845 void * data)
2846 {
2847 struct elfNN_ia64_allocate_data *x = (struct elfNN_ia64_allocate_data *)data;
2848 struct elfNN_ia64_link_hash_table *ia64_info;
2849 struct elfNN_ia64_dyn_reloc_entry *rent;
2850 bfd_boolean dynamic_symbol, shared, resolved_zero;
2851
2852 ia64_info = elfNN_ia64_hash_table (x->info);
2853 if (ia64_info == NULL)
2854 return FALSE;
2855
2856 /* Note that this can't be used in relation to FPTR relocs below. */
2857 dynamic_symbol = elfNN_ia64_dynamic_symbol_p (dyn_i->h, x->info, 0);
2858
2859 shared = bfd_link_pic (x->info);
2860 resolved_zero = (dyn_i->h
2861 && UNDEFWEAK_NO_DYNAMIC_RELOC (x->info,
2862 dyn_i->h));
2863
2864 /* Take care of the GOT and PLT relocations. */
2865
2866 if ((!resolved_zero
2867 && (dynamic_symbol || shared)
2868 && (dyn_i->want_got || dyn_i->want_gotx))
2869 || (dyn_i->want_ltoff_fptr
2870 && dyn_i->h
2871 && dyn_i->h->dynindx != -1))
2872 {
2873 if (!dyn_i->want_ltoff_fptr
2874 || !bfd_link_pie (x->info)
2875 || dyn_i->h == NULL
2876 || dyn_i->h->root.type != bfd_link_hash_undefweak)
2877 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
2878 }
2879 if ((dynamic_symbol || shared) && dyn_i->want_tprel)
2880 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
2881 if (dynamic_symbol && dyn_i->want_dtpmod)
2882 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
2883 if (dynamic_symbol && dyn_i->want_dtprel)
2884 ia64_info->root.srelgot->size += sizeof (ElfNN_External_Rela);
2885
2886 if (x->only_got)
2887 return TRUE;
2888
2889 if (ia64_info->rel_fptr_sec && dyn_i->want_fptr)
2890 {
2891 if (dyn_i->h == NULL || dyn_i->h->root.type != bfd_link_hash_undefweak)
2892 ia64_info->rel_fptr_sec->size += sizeof (ElfNN_External_Rela);
2893 }
2894
2895 if (!resolved_zero && dyn_i->want_pltoff)
2896 {
2897 bfd_size_type t = 0;
2898
2899 /* Dynamic symbols get one IPLT relocation. Local symbols in
2900 shared libraries get two REL relocations. Local symbols in
2901 main applications get nothing. */
2902 if (dynamic_symbol)
2903 t = sizeof (ElfNN_External_Rela);
2904 else if (shared)
2905 t = 2 * sizeof (ElfNN_External_Rela);
2906
2907 ia64_info->rel_pltoff_sec->size += t;
2908 }
2909
2910 /* Take care of the normal data relocations. */
2911
2912 for (rent = dyn_i->reloc_entries; rent; rent = rent->next)
2913 {
2914 int count = rent->count;
2915
2916 switch (rent->type)
2917 {
2918 case R_IA64_FPTR32LSB:
2919 case R_IA64_FPTR64LSB:
2920 /* Allocate one iff !want_fptr and not PIE, which by this point
2921 will be true only if we're actually allocating one statically
2922 in the main executable. Position independent executables
2923 need a relative reloc. */
2924 if (dyn_i->want_fptr && !bfd_link_pie (x->info))
2925 continue;
2926 break;
2927 case R_IA64_PCREL32LSB:
2928 case R_IA64_PCREL64LSB:
2929 if (!dynamic_symbol)
2930 continue;
2931 break;
2932 case R_IA64_DIR32LSB:
2933 case R_IA64_DIR64LSB:
2934 if (!dynamic_symbol && !shared)
2935 continue;
2936 break;
2937 case R_IA64_IPLTLSB:
2938 if (!dynamic_symbol && !shared)
2939 continue;
2940 /* Use two REL relocations for IPLT relocations
2941 against local symbols. */
2942 if (!dynamic_symbol)
2943 count *= 2;
2944 break;
2945 case R_IA64_DTPREL32LSB:
2946 case R_IA64_TPREL64LSB:
2947 case R_IA64_DTPREL64LSB:
2948 case R_IA64_DTPMOD64LSB:
2949 break;
2950 default:
2951 abort ();
2952 }
2953 if (rent->reltext)
2954 x->info->flags |= DF_TEXTREL;
2955 rent->srel->size += sizeof (ElfNN_External_Rela) * count;
2956 }
2957
2958 return TRUE;
2959 }
2960
2961 static bfd_boolean
2962 elfNN_ia64_adjust_dynamic_symbol (struct bfd_link_info *info ATTRIBUTE_UNUSED,
2963 struct elf_link_hash_entry *h)
2964 {
2965 /* ??? Undefined symbols with PLT entries should be re-defined
2966 to be the PLT entry. */
2967
2968 /* If this is a weak symbol, and there is a real definition, the
2969 processor independent code will have arranged for us to see the
2970 real definition first, and we can just use the same value. */
2971 if (h->is_weakalias)
2972 {
2973 struct elf_link_hash_entry *def = weakdef (h);
2974 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
2975 h->root.u.def.section = def->root.u.def.section;
2976 h->root.u.def.value = def->root.u.def.value;
2977 return TRUE;
2978 }
2979
2980 /* If this is a reference to a symbol defined by a dynamic object which
2981 is not a function, we might allocate the symbol in our .dynbss section
2982 and allocate a COPY dynamic relocation.
2983
2984 But IA-64 code is canonically PIC, so as a rule we can avoid this sort
2985 of hackery. */
2986
2987 return TRUE;
2988 }
2989
2990 static bfd_boolean
2991 elfNN_ia64_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
2992 struct bfd_link_info *info)
2993 {
2994 struct elfNN_ia64_allocate_data data;
2995 struct elfNN_ia64_link_hash_table *ia64_info;
2996 asection *sec;
2997 bfd *dynobj;
2998
2999 ia64_info = elfNN_ia64_hash_table (info);
3000 if (ia64_info == NULL)
3001 return FALSE;
3002 dynobj = ia64_info->root.dynobj;
3003 ia64_info->self_dtpmod_offset = (bfd_vma) -1;
3004 BFD_ASSERT(dynobj != NULL);
3005 data.info = info;
3006
3007 /* Set the contents of the .interp section to the interpreter. */
3008 if (ia64_info->root.dynamic_sections_created
3009 && bfd_link_executable (info) && !info->nointerp)
3010 {
3011 sec = bfd_get_linker_section (dynobj, ".interp");
3012 BFD_ASSERT (sec != NULL);
3013 sec->contents = (bfd_byte *) ELF_DYNAMIC_INTERPRETER;
3014 sec->size = strlen (ELF_DYNAMIC_INTERPRETER) + 1;
3015 }
3016
3017 /* Allocate the GOT entries. */
3018
3019 if (ia64_info->root.sgot)
3020 {
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;
3026 }
3027
3028 /* Allocate the FPTR entries. */
3029
3030 if (ia64_info->fptr_sec)
3031 {
3032 data.ofs = 0;
3033 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_fptr, &data);
3034 ia64_info->fptr_sec->size = data.ofs;
3035 }
3036
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. */
3041
3042 data.ofs = 0;
3043 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_plt_entries, &data);
3044
3045 ia64_info->minplt_entries = 0;
3046 if (data.ofs)
3047 {
3048 ia64_info->minplt_entries
3049 = (data.ofs - PLT_HEADER_SIZE) / PLT_MIN_ENTRY_SIZE;
3050 }
3051
3052 /* Align the pointer for the plt2 entries. */
3053 data.ofs = (data.ofs + 31) & (bfd_vma) -32;
3054
3055 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_plt2_entries, &data);
3056 if (data.ofs != 0 || ia64_info->root.dynamic_sections_created)
3057 {
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. */
3061
3062 BFD_ASSERT (ia64_info->root.dynamic_sections_created);
3063
3064 ia64_info->root.splt->size = data.ofs;
3065
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;
3069 }
3070
3071 /* Allocate the PLTOFF entries. */
3072
3073 if (ia64_info->pltoff_sec)
3074 {
3075 data.ofs = 0;
3076 elfNN_ia64_dyn_sym_traverse (ia64_info, allocate_pltoff_entries, &data);
3077 ia64_info->pltoff_sec->size = data.ofs;
3078 }
3079
3080 if (ia64_info->root.dynamic_sections_created)
3081 {
3082 /* Allocate space for the dynamic relocations that turned out to be
3083 required. */
3084
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);
3089 }
3090
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)
3094 {
3095 bfd_boolean strip;
3096
3097 if (!(sec->flags & SEC_LINKER_CREATED))
3098 continue;
3099
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. */
3107
3108 strip = (sec->size == 0);
3109
3110 if (sec == ia64_info->root.sgot)
3111 strip = FALSE;
3112 else if (sec == ia64_info->root.srelgot)
3113 {
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;
3120 }
3121 else if (sec == ia64_info->fptr_sec)
3122 {
3123 if (strip)
3124 ia64_info->fptr_sec = NULL;
3125 }
3126 else if (sec == ia64_info->rel_fptr_sec)
3127 {
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;
3134 }
3135 else if (sec == ia64_info->root.splt)
3136 {
3137 if (strip)
3138 ia64_info->root.splt = NULL;
3139 }
3140 else if (sec == ia64_info->pltoff_sec)
3141 {
3142 if (strip)
3143 ia64_info->pltoff_sec = NULL;
3144 }
3145 else if (sec == ia64_info->rel_pltoff_sec)
3146 {
3147 if (strip)
3148 ia64_info->rel_pltoff_sec = NULL;
3149 else
3150 {
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;
3155 }
3156 }
3157 else
3158 {
3159 const char *name;
3160
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);
3164
3165 if (strcmp (name, ".got.plt") == 0)
3166 strip = FALSE;
3167 else if (CONST_STRNEQ (name, ".rel"))
3168 {
3169 if (!strip)
3170 {
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;
3174 }
3175 }
3176 else
3177 continue;
3178 }
3179
3180 if (strip)
3181 sec->flags |= SEC_EXCLUDE;
3182 else
3183 {
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 }
3189 }
3190
3191 if (ia64_info->root.dynamic_sections_created)
3192 {
3193 /* Add some entries to the .dynamic section. We fill in the values
3194 later (in finish_dynamic_sections) but we must add the entries now
3195 so that we get the correct size for the .dynamic section. */
3196
3197 #define add_dynamic_entry(TAG, VAL) \
3198 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
3199
3200 if (!_bfd_elf_add_dynamic_tags (output_bfd, info, TRUE))
3201 return FALSE;
3202
3203 if (!add_dynamic_entry (DT_IA_64_PLT_RESERVE, 0))
3204 return FALSE;
3205 }
3206
3207 /* ??? Perhaps force __gp local. */
3208
3209 return TRUE;
3210 }
3211
3212 static void
3213 elfNN_ia64_install_dyn_reloc (bfd *abfd, struct bfd_link_info *info,
3214 asection *sec, asection *srel,
3215 bfd_vma offset, unsigned int type,
3216 long dynindx, bfd_vma addend)
3217 {
3218 Elf_Internal_Rela outrel;
3219 bfd_byte *loc;
3220
3221 BFD_ASSERT (dynindx != -1);
3222 outrel.r_info = ELFNN_R_INFO (dynindx, type);
3223 outrel.r_addend = addend;
3224 outrel.r_offset = _bfd_elf_section_offset (abfd, info, sec, offset);
3225 if (outrel.r_offset >= (bfd_vma) -2)
3226 {
3227 /* Run for the hills. We shouldn't be outputting a relocation
3228 for this. So do what everyone else does and output a no-op. */
3229 outrel.r_info = ELFNN_R_INFO (0, R_IA64_NONE);
3230 outrel.r_addend = 0;
3231 outrel.r_offset = 0;
3232 }
3233 else
3234 outrel.r_offset += sec->output_section->vma + sec->output_offset;
3235
3236 loc = srel->contents;
3237 loc += srel->reloc_count++ * sizeof (ElfNN_External_Rela);
3238 bfd_elfNN_swap_reloca_out (abfd, &outrel, loc);
3239 BFD_ASSERT (sizeof (ElfNN_External_Rela) * srel->reloc_count <= srel->size);
3240 }
3241
3242 /* Store an entry for target address TARGET_ADDR in the linkage table
3243 and return the gp-relative address of the linkage table entry. */
3244
3245 static bfd_vma
3246 set_got_entry (bfd *abfd, struct bfd_link_info *info,
3247 struct elfNN_ia64_dyn_sym_info *dyn_i,
3248 long dynindx, bfd_vma addend, bfd_vma value,
3249 unsigned int dyn_r_type)
3250 {
3251 struct elfNN_ia64_link_hash_table *ia64_info;
3252 asection *got_sec;
3253 bfd_boolean done;
3254 bfd_vma got_offset;
3255
3256 ia64_info = elfNN_ia64_hash_table (info);
3257 if (ia64_info == NULL)
3258 return 0;
3259
3260 got_sec = ia64_info->root.sgot;
3261
3262 switch (dyn_r_type)
3263 {
3264 case R_IA64_TPREL64LSB:
3265 done = dyn_i->tprel_done;
3266 dyn_i->tprel_done = TRUE;
3267 got_offset = dyn_i->tprel_offset;
3268 break;
3269 case R_IA64_DTPMOD64LSB:
3270 if (dyn_i->dtpmod_offset != ia64_info->self_dtpmod_offset)
3271 {
3272 done = dyn_i->dtpmod_done;
3273 dyn_i->dtpmod_done = TRUE;
3274 }
3275 else
3276 {
3277 done = ia64_info->self_dtpmod_done;
3278 ia64_info->self_dtpmod_done = TRUE;
3279 dynindx = 0;
3280 }
3281 got_offset = dyn_i->dtpmod_offset;
3282 break;
3283 case R_IA64_DTPREL32LSB:
3284 case R_IA64_DTPREL64LSB:
3285 done = dyn_i->dtprel_done;
3286 dyn_i->dtprel_done = TRUE;
3287 got_offset = dyn_i->dtprel_offset;
3288 break;
3289 default:
3290 done = dyn_i->got_done;
3291 dyn_i->got_done = TRUE;
3292 got_offset = dyn_i->got_offset;
3293 break;
3294 }
3295
3296 BFD_ASSERT ((got_offset & 7) == 0);
3297
3298 if (! done)
3299 {
3300 /* Store the target address in the linkage table entry. */
3301 bfd_put_64 (abfd, value, got_sec->contents + got_offset);
3302
3303 /* Install a dynamic relocation if needed. */
3304 if (((bfd_link_pic (info)
3305 && (!dyn_i->h
3306 || (ELF_ST_VISIBILITY (dyn_i->h->other) == STV_DEFAULT
3307 && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, dyn_i->h))
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))
3319 {
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)
3325 {
3326 dyn_r_type = R_IA64_RELNNLSB;
3327 dynindx = 0;
3328 addend = value;
3329 }
3330
3331 if (bfd_big_endian (abfd))
3332 {
3333 switch (dyn_r_type)
3334 {
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;
3368 }
3369 }
3370
3371 elfNN_ia64_install_dyn_reloc (abfd, NULL, got_sec,
3372 ia64_info->root.srelgot,
3373 got_offset, dyn_r_type,
3374 dynindx, addend);
3375 }
3376 }
3377
3378 /* Return the address of the linkage table entry. */
3379 value = (got_sec->output_section->vma
3380 + got_sec->output_offset
3381 + got_offset);
3382
3383 return value;
3384 }
3385
3386 /* Fill in a function descriptor consisting of the function's code
3387 address and its global pointer. Return the descriptor's address. */
3388
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)
3393 {
3394 struct elfNN_ia64_link_hash_table *ia64_info;
3395 asection *fptr_sec;
3396
3397 ia64_info = elfNN_ia64_hash_table (info);
3398 if (ia64_info == NULL)
3399 return 0;
3400
3401 fptr_sec = ia64_info->fptr_sec;
3402
3403 if (!dyn_i->fptr_done)
3404 {
3405 dyn_i->fptr_done = 1;
3406
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)
3412 {
3413 Elf_Internal_Rela outrel;
3414 bfd_byte *loc;
3415
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);
3428 }
3429 }
3430
3431 /* Return the descriptor's address. */
3432 value = (fptr_sec->output_section->vma
3433 + fptr_sec->output_offset
3434 + dyn_i->fptr_offset);
3435
3436 return value;
3437 }
3438
3439 /* Fill in a PLTOFF entry consisting of the function's code address
3440 and its global pointer. Return the descriptor's address. */
3441
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, bfd_boolean is_plt)
3446 {
3447 struct elfNN_ia64_link_hash_table *ia64_info;
3448 asection *pltoff_sec;
3449
3450 ia64_info = elfNN_ia64_hash_table (info);
3451 if (ia64_info == NULL)
3452 return 0;
3453
3454 pltoff_sec = ia64_info->pltoff_sec;
3455
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)
3460 {
3461 bfd_vma gp = _bfd_get_gp_value (abfd);
3462
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);
3466
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 && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, dyn_i->h))
3473 || dyn_i->h->root.type != bfd_link_hash_undefweak))
3474 {
3475 unsigned int dyn_r_type;
3476
3477 if (bfd_big_endian (abfd))
3478 dyn_r_type = R_IA64_RELNNMSB;
3479 else
3480 dyn_r_type = R_IA64_RELNNLSB;
3481
3482 elfNN_ia64_install_dyn_reloc (abfd, NULL, pltoff_sec,
3483 ia64_info->rel_pltoff_sec,
3484 dyn_i->pltoff_offset,
3485 dyn_r_type, 0, value);
3486 elfNN_ia64_install_dyn_reloc (abfd, NULL, pltoff_sec,
3487 ia64_info->rel_pltoff_sec,
3488 dyn_i->pltoff_offset + ARCH_SIZE / 8,
3489 dyn_r_type, 0, gp);
3490 }
3491
3492 dyn_i->pltoff_done = 1;
3493 }
3494
3495 /* Return the descriptor's address. */
3496 value = (pltoff_sec->output_section->vma
3497 + pltoff_sec->output_offset
3498 + dyn_i->pltoff_offset);
3499
3500 return value;
3501 }
3502
3503 /* Return the base VMA address which should be subtracted from real addresses
3504 when resolving @tprel() relocation.
3505 Main program TLS (whose template starts at PT_TLS p_vaddr)
3506 is assigned offset round(2 * size of pointer, PT_TLS p_align). */
3507
3508 static bfd_vma
3509 elfNN_ia64_tprel_base (struct bfd_link_info *info)
3510 {
3511 asection *tls_sec = elf_hash_table (info)->tls_sec;
3512 return tls_sec->vma - align_power ((bfd_vma) ARCH_SIZE / 4,
3513 tls_sec->alignment_power);
3514 }
3515
3516 /* Return the base VMA address which should be subtracted from real addresses
3517 when resolving @dtprel() relocation.
3518 This is PT_TLS segment p_vaddr. */
3519
3520 static bfd_vma
3521 elfNN_ia64_dtprel_base (struct bfd_link_info *info)
3522 {
3523 return elf_hash_table (info)->tls_sec->vma;
3524 }
3525
3526 /* Called through qsort to sort the .IA_64.unwind section during a
3527 non-relocatable link. Set elfNN_ia64_unwind_entry_compare_bfd
3528 to the output bfd so we can do proper endianness frobbing. */
3529
3530 static bfd *elfNN_ia64_unwind_entry_compare_bfd;
3531
3532 static int
3533 elfNN_ia64_unwind_entry_compare (const void * a, const void * b)
3534 {
3535 bfd_vma av, bv;
3536
3537 av = bfd_get_64 (elfNN_ia64_unwind_entry_compare_bfd, a);
3538 bv = bfd_get_64 (elfNN_ia64_unwind_entry_compare_bfd, b);
3539
3540 return (av < bv ? -1 : av > bv ? 1 : 0);
3541 }
3542
3543 /* Make sure we've got ourselves a nice fat __gp value. */
3544 static bfd_boolean
3545 elfNN_ia64_choose_gp (bfd *abfd, struct bfd_link_info *info, bfd_boolean final)
3546 {
3547 bfd_vma min_vma = (bfd_vma) -1, max_vma = 0;
3548 bfd_vma min_short_vma = min_vma, max_short_vma = 0;
3549 struct elf_link_hash_entry *gp;
3550 bfd_vma gp_val;
3551 asection *os;
3552 struct elfNN_ia64_link_hash_table *ia64_info;
3553
3554 ia64_info = elfNN_ia64_hash_table (info);
3555 if (ia64_info == NULL)
3556 return FALSE;
3557
3558 /* Find the min and max vma of all sections marked short. Also collect
3559 min and max vma of any type, for use in selecting a nice gp. */
3560 for (os = abfd->sections; os ; os = os->next)
3561 {
3562 bfd_vma lo, hi;
3563
3564 if ((os->flags & SEC_ALLOC) == 0)
3565 continue;
3566
3567 lo = os->vma;
3568 /* When this function is called from elfNN_ia64_final_link
3569 the correct value to use is os->size. When called from
3570 elfNN_ia64_relax_section we are in the middle of section
3571 sizing; some sections will already have os->size set, others
3572 will have os->size zero and os->rawsize the previous size. */
3573 hi = os->vma + (!final && os->rawsize ? os->rawsize : os->size);
3574 if (hi < lo)
3575 hi = (bfd_vma) -1;
3576
3577 if (min_vma > lo)
3578 min_vma = lo;
3579 if (max_vma < hi)
3580 max_vma = hi;
3581 if (os->flags & SEC_SMALL_DATA)
3582 {
3583 if (min_short_vma > lo)
3584 min_short_vma = lo;
3585 if (max_short_vma < hi)
3586 max_short_vma = hi;
3587 }
3588 }
3589
3590 if (ia64_info->min_short_sec)
3591 {
3592 if (min_short_vma
3593 > (ia64_info->min_short_sec->vma
3594 + ia64_info->min_short_offset))
3595 min_short_vma = (ia64_info->min_short_sec->vma
3596 + ia64_info->min_short_offset);
3597 if (max_short_vma
3598 < (ia64_info->max_short_sec->vma
3599 + ia64_info->max_short_offset))
3600 max_short_vma = (ia64_info->max_short_sec->vma
3601 + ia64_info->max_short_offset);
3602 }
3603
3604 /* See if the user wants to force a value. */
3605 gp = elf_link_hash_lookup (elf_hash_table (info), "__gp", FALSE,
3606 FALSE, FALSE);
3607
3608 if (gp
3609 && (gp->root.type == bfd_link_hash_defined
3610 || gp->root.type == bfd_link_hash_defweak))
3611 {
3612 asection *gp_sec = gp->root.u.def.section;
3613 gp_val = (gp->root.u.def.value
3614 + gp_sec->output_section->vma
3615 + gp_sec->output_offset);
3616 }
3617 else
3618 {
3619 /* Pick a sensible value. */
3620
3621 if (ia64_info->min_short_sec)
3622 {
3623 bfd_vma short_range = max_short_vma - min_short_vma;
3624
3625 /* If min_short_sec is set, pick one in the middle bewteen
3626 min_short_vma and max_short_vma. */
3627 if (short_range >= 0x400000)
3628 goto overflow;
3629 gp_val = min_short_vma + short_range / 2;
3630 }
3631 else
3632 {
3633 asection *got_sec = ia64_info->root.sgot;
3634
3635 /* Start with just the address of the .got. */
3636 if (got_sec)
3637 gp_val = got_sec->output_section->vma;
3638 else if (max_short_vma != 0)
3639 gp_val = min_short_vma;
3640 else if (max_vma - min_vma < 0x200000)
3641 gp_val = min_vma;
3642 else
3643 gp_val = max_vma - 0x200000 + 8;
3644 }
3645
3646 /* If it is possible to address the entire image, but we
3647 don't with the choice above, adjust. */
3648 if (max_vma - min_vma < 0x400000
3649 && (max_vma - gp_val >= 0x200000
3650 || gp_val - min_vma > 0x200000))
3651 gp_val = min_vma + 0x200000;
3652 else if (max_short_vma != 0)
3653 {
3654 /* If we don't cover all the short data, adjust. */
3655 if (max_short_vma - gp_val >= 0x200000)
3656 gp_val = min_short_vma + 0x200000;
3657
3658 /* If we're addressing stuff past the end, adjust back. */
3659 if (gp_val > max_vma)
3660 gp_val = max_vma - 0x200000 + 8;
3661 }
3662 }
3663
3664 /* Validate whether all SHF_IA_64_SHORT sections are within
3665 range of the chosen GP. */
3666
3667 if (max_short_vma != 0)
3668 {
3669 if (max_short_vma - min_short_vma >= 0x400000)
3670 {
3671 overflow:
3672 _bfd_error_handler
3673 /* xgettext:c-format */
3674 (_("%pB: short data segment overflowed (%#" PRIx64 " >= 0x400000)"),
3675 abfd, (uint64_t) (max_short_vma - min_short_vma));
3676 return FALSE;
3677 }
3678 else if ((gp_val > min_short_vma
3679 && gp_val - min_short_vma > 0x200000)
3680 || (gp_val < max_short_vma
3681 && max_short_vma - gp_val >= 0x200000))
3682 {
3683 _bfd_error_handler
3684 (_("%pB: __gp does not cover short data segment"), abfd);
3685 return FALSE;
3686 }
3687 }
3688
3689 _bfd_set_gp_value (abfd, gp_val);
3690
3691 return TRUE;
3692 }
3693
3694 static bfd_boolean
3695 elfNN_ia64_final_link (bfd *abfd, struct bfd_link_info *info)
3696 {
3697 struct elfNN_ia64_link_hash_table *ia64_info;
3698 asection *unwind_output_sec;
3699
3700 ia64_info = elfNN_ia64_hash_table (info);
3701 if (ia64_info == NULL)
3702 return FALSE;
3703
3704 /* Make sure we've got ourselves a nice fat __gp value. */
3705 if (!bfd_link_relocatable (info))
3706 {
3707 bfd_vma gp_val;
3708 struct elf_link_hash_entry *gp;
3709
3710 /* We assume after gp is set, section size will only decrease. We
3711 need to adjust gp for it. */
3712 _bfd_set_gp_value (abfd, 0);
3713 if (! elfNN_ia64_choose_gp (abfd, info, TRUE))
3714 return FALSE;
3715 gp_val = _bfd_get_gp_value (abfd);
3716
3717 gp = elf_link_hash_lookup (elf_hash_table (info), "__gp", FALSE,
3718 FALSE, FALSE);
3719 if (gp)
3720 {
3721 gp->root.type = bfd_link_hash_defined;
3722 gp->root.u.def.value = gp_val;
3723 gp->root.u.def.section = bfd_abs_section_ptr;
3724 }
3725 }
3726
3727 /* If we're producing a final executable, we need to sort the contents
3728 of the .IA_64.unwind section. Force this section to be relocated
3729 into memory rather than written immediately to the output file. */
3730 unwind_output_sec = NULL;
3731 if (!bfd_link_relocatable (info))
3732 {
3733 asection *s = bfd_get_section_by_name (abfd, ELF_STRING_ia64_unwind);
3734 if (s)
3735 {
3736 unwind_output_sec = s->output_section;
3737 unwind_output_sec->contents
3738 = bfd_malloc (unwind_output_sec->size);
3739 if (unwind_output_sec->contents == NULL)
3740 return FALSE;
3741 }
3742 }
3743
3744 /* Invoke the regular ELF backend linker to do all the work. */
3745 if (!bfd_elf_final_link (abfd, info))
3746 return FALSE;
3747
3748 if (unwind_output_sec)
3749 {
3750 elfNN_ia64_unwind_entry_compare_bfd = abfd;
3751 qsort (unwind_output_sec->contents,
3752 (size_t) (unwind_output_sec->size / 24),
3753 24,
3754 elfNN_ia64_unwind_entry_compare);
3755
3756 if (! bfd_set_section_contents (abfd, unwind_output_sec,
3757 unwind_output_sec->contents, (bfd_vma) 0,
3758 unwind_output_sec->size))
3759 return FALSE;
3760 }
3761
3762 return TRUE;
3763 }
3764
3765 static bfd_boolean
3766 elfNN_ia64_relocate_section (bfd *output_bfd,
3767 struct bfd_link_info *info,
3768 bfd *input_bfd,
3769 asection *input_section,
3770 bfd_byte *contents,
3771 Elf_Internal_Rela *relocs,
3772 Elf_Internal_Sym *local_syms,
3773 asection **local_sections)
3774 {
3775 struct elfNN_ia64_link_hash_table *ia64_info;
3776 Elf_Internal_Shdr *symtab_hdr;
3777 Elf_Internal_Rela *rel;
3778 Elf_Internal_Rela *relend;
3779 asection *srel;
3780 bfd_boolean ret_val = TRUE; /* for non-fatal errors */
3781 bfd_vma gp_val;
3782
3783 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
3784 ia64_info = elfNN_ia64_hash_table (info);
3785 if (ia64_info == NULL)
3786 return FALSE;
3787
3788 /* Infect various flags from the input section to the output section. */
3789 if (bfd_link_relocatable (info))
3790 {
3791 bfd_vma flags;
3792
3793 flags = elf_section_data(input_section)->this_hdr.sh_flags;
3794 flags &= SHF_IA_64_NORECOV;
3795
3796 elf_section_data(input_section->output_section)
3797 ->this_hdr.sh_flags |= flags;
3798 }
3799
3800 gp_val = _bfd_get_gp_value (output_bfd);
3801 srel = get_reloc_section (input_bfd, ia64_info, input_section, FALSE);
3802
3803 rel = relocs;
3804 relend = relocs + input_section->reloc_count;
3805 for (; rel < relend; ++rel)
3806 {
3807 struct elf_link_hash_entry *h;
3808 struct elfNN_ia64_dyn_sym_info *dyn_i;
3809 bfd_reloc_status_type r;
3810 reloc_howto_type *howto;
3811 unsigned long r_symndx;
3812 Elf_Internal_Sym *sym;
3813 unsigned int r_type;
3814 bfd_vma value;
3815 asection *sym_sec;
3816 bfd_byte *hit_addr;
3817 bfd_boolean dynamic_symbol_p;
3818 bfd_boolean undef_weak_ref;
3819
3820 r_type = ELFNN_R_TYPE (rel->r_info);
3821 if (r_type > R_IA64_MAX_RELOC_CODE)
3822 {
3823 /* xgettext:c-format */
3824 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
3825 input_bfd, (int) r_type);
3826 bfd_set_error (bfd_error_bad_value);
3827 ret_val = FALSE;
3828 continue;
3829 }
3830
3831 howto = ia64_elf_lookup_howto (r_type);
3832 if (howto == NULL)
3833 {
3834 ret_val = FALSE;
3835 continue;
3836 }
3837
3838 r_symndx = ELFNN_R_SYM (rel->r_info);
3839 h = NULL;
3840 sym = NULL;
3841 sym_sec = NULL;
3842 undef_weak_ref = FALSE;
3843
3844 if (r_symndx < symtab_hdr->sh_info)
3845 {
3846 /* Reloc against local symbol. */
3847 asection *msec;
3848 sym = local_syms + r_symndx;
3849 sym_sec = local_sections[r_symndx];
3850 msec = sym_sec;
3851 value = _bfd_elf_rela_local_sym (output_bfd, sym, &msec, rel);
3852 if (!bfd_link_relocatable (info)
3853 && (sym_sec->flags & SEC_MERGE) != 0
3854 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
3855 && sym_sec->sec_info_type == SEC_INFO_TYPE_MERGE)
3856 {
3857 struct elfNN_ia64_local_hash_entry *loc_h;
3858
3859 loc_h = get_local_sym_hash (ia64_info, input_bfd, rel, FALSE);
3860 if (loc_h && ! loc_h->sec_merge_done)
3861 {
3862 struct elfNN_ia64_dyn_sym_info *dynent;
3863 unsigned int count;
3864
3865 for (count = loc_h->count, dynent = loc_h->info;
3866 count != 0;
3867 count--, dynent++)
3868 {
3869 msec = sym_sec;
3870 dynent->addend =
3871 _bfd_merged_section_offset (output_bfd, &msec,
3872 elf_section_data (msec)->
3873 sec_info,
3874 sym->st_value
3875 + dynent->addend);
3876 dynent->addend -= sym->st_value;
3877 dynent->addend += msec->output_section->vma
3878 + msec->output_offset
3879 - sym_sec->output_section->vma
3880 - sym_sec->output_offset;
3881 }
3882
3883 /* We may have introduced duplicated entries. We need
3884 to remove them properly. */
3885 count = sort_dyn_sym_info (loc_h->info, loc_h->count);
3886 if (count != loc_h->count)
3887 {
3888 loc_h->count = count;
3889 loc_h->sorted_count = count;
3890 }
3891
3892 loc_h->sec_merge_done = 1;
3893 }
3894 }
3895 }
3896 else
3897 {
3898 bfd_boolean unresolved_reloc;
3899 bfd_boolean warned, ignored;
3900 struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (input_bfd);
3901
3902 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
3903 r_symndx, symtab_hdr, sym_hashes,
3904 h, sym_sec, value,
3905 unresolved_reloc, warned, ignored);
3906
3907 if (h->root.type == bfd_link_hash_undefweak)
3908 undef_weak_ref = TRUE;
3909 else if (warned || (ignored && bfd_link_executable (info)))
3910 continue;
3911 }
3912
3913 if (sym_sec != NULL && discarded_section (sym_sec))
3914 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
3915 rel, 1, relend, howto, 0, contents);
3916
3917 if (bfd_link_relocatable (info))
3918 continue;
3919
3920 hit_addr = contents + rel->r_offset;
3921 value += rel->r_addend;
3922 dynamic_symbol_p = elfNN_ia64_dynamic_symbol_p (h, info, r_type);
3923
3924 switch (r_type)
3925 {
3926 case R_IA64_NONE:
3927 case R_IA64_LDXMOV:
3928 continue;
3929
3930 case R_IA64_IMM14:
3931 case R_IA64_IMM22:
3932 case R_IA64_IMM64:
3933 case R_IA64_DIR32MSB:
3934 case R_IA64_DIR32LSB:
3935 case R_IA64_DIR64MSB:
3936 case R_IA64_DIR64LSB:
3937 /* Install a dynamic relocation for this reloc. */
3938 if ((dynamic_symbol_p || bfd_link_pic (info))
3939 && !(h && UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
3940 && r_symndx != STN_UNDEF
3941 && (input_section->flags & SEC_ALLOC) != 0)
3942 {
3943 unsigned int dyn_r_type;
3944 long dynindx;
3945 bfd_vma addend;
3946
3947 BFD_ASSERT (srel != NULL);
3948
3949 switch (r_type)
3950 {
3951 case R_IA64_IMM14:
3952 case R_IA64_IMM22:
3953 case R_IA64_IMM64:
3954 /* ??? People shouldn't be doing non-pic code in
3955 shared libraries nor dynamic executables. */
3956 _bfd_error_handler
3957 /* xgettext:c-format */
3958 (_("%pB: non-pic code with imm relocation against dynamic symbol `%s'"),
3959 input_bfd,
3960 h ? h->root.root.string
3961 : bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
3962 sym_sec));
3963 ret_val = FALSE;
3964 continue;
3965
3966 default:
3967 break;
3968 }
3969
3970 /* If we don't need dynamic symbol lookup, find a
3971 matching RELATIVE relocation. */
3972 dyn_r_type = r_type;
3973 if (dynamic_symbol_p)
3974 {
3975 dynindx = h->dynindx;
3976 addend = rel->r_addend;
3977 value = 0;
3978 }
3979 else
3980 {
3981 switch (r_type)
3982 {
3983 case R_IA64_DIR32MSB:
3984 dyn_r_type = R_IA64_REL32MSB;
3985 break;
3986 case R_IA64_DIR32LSB:
3987 dyn_r_type = R_IA64_REL32LSB;
3988 break;
3989 case R_IA64_DIR64MSB:
3990 dyn_r_type = R_IA64_REL64MSB;
3991 break;
3992 case R_IA64_DIR64LSB:
3993 dyn_r_type = R_IA64_REL64LSB;
3994 break;
3995
3996 default:
3997 break;
3998 }
3999 dynindx = 0;
4000 addend = value;
4001 }
4002
4003 elfNN_ia64_install_dyn_reloc (output_bfd, info, input_section,
4004 srel, rel->r_offset, dyn_r_type,
4005 dynindx, addend);
4006 }
4007 /* Fall through. */
4008
4009 case R_IA64_LTV32MSB:
4010 case R_IA64_LTV32LSB:
4011 case R_IA64_LTV64MSB:
4012 case R_IA64_LTV64LSB:
4013 r = ia64_elf_install_value (hit_addr, value, r_type);
4014 break;
4015
4016 case R_IA64_GPREL22:
4017 case R_IA64_GPREL64I:
4018 case R_IA64_GPREL32MSB:
4019 case R_IA64_GPREL32LSB:
4020 case R_IA64_GPREL64MSB:
4021 case R_IA64_GPREL64LSB:
4022 if (dynamic_symbol_p)
4023 {
4024 _bfd_error_handler
4025 /* xgettext:c-format */
4026 (_("%pB: @gprel relocation against dynamic symbol %s"),
4027 input_bfd,
4028 h ? h->root.root.string
4029 : bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4030 sym_sec));
4031 ret_val = FALSE;
4032 continue;
4033 }
4034 value -= gp_val;
4035 r = ia64_elf_install_value (hit_addr, value, r_type);
4036 break;
4037
4038 case R_IA64_LTOFF22:
4039 case R_IA64_LTOFF22X:
4040 case R_IA64_LTOFF64I:
4041 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, FALSE);
4042 value = set_got_entry (input_bfd, info, dyn_i, (h ? h->dynindx : -1),
4043 rel->r_addend, value, R_IA64_DIRNNLSB);
4044 value -= gp_val;
4045 r = ia64_elf_install_value (hit_addr, value, r_type);
4046 break;
4047
4048 case R_IA64_PLTOFF22:
4049 case R_IA64_PLTOFF64I:
4050 case R_IA64_PLTOFF64MSB:
4051 case R_IA64_PLTOFF64LSB:
4052 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, FALSE);
4053 value = set_pltoff_entry (output_bfd, info, dyn_i, value, FALSE);
4054 value -= gp_val;
4055 r = ia64_elf_install_value (hit_addr, value, r_type);
4056 break;
4057
4058 case R_IA64_FPTR64I:
4059 case R_IA64_FPTR32MSB:
4060 case R_IA64_FPTR32LSB:
4061 case R_IA64_FPTR64MSB:
4062 case R_IA64_FPTR64LSB:
4063 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, FALSE);
4064 if (dyn_i->want_fptr)
4065 {
4066 if (!undef_weak_ref)
4067 value = set_fptr_entry (output_bfd, info, dyn_i, value);
4068 }
4069 if (!dyn_i->want_fptr || bfd_link_pie (info))
4070 {
4071 long dynindx;
4072 unsigned int dyn_r_type = r_type;
4073 bfd_vma addend = rel->r_addend;
4074
4075 /* Otherwise, we expect the dynamic linker to create
4076 the entry. */
4077
4078 if (dyn_i->want_fptr)
4079 {
4080 if (r_type == R_IA64_FPTR64I)
4081 {
4082 /* We can't represent this without a dynamic symbol.
4083 Adjust the relocation to be against an output
4084 section symbol, which are always present in the
4085 dynamic symbol table. */
4086 /* ??? People shouldn't be doing non-pic code in
4087 shared libraries. Hork. */
4088 _bfd_error_handler
4089 (_("%pB: linking non-pic code in a position independent executable"),
4090 input_bfd);
4091 ret_val = FALSE;
4092 continue;
4093 }
4094 dynindx = 0;
4095 addend = value;
4096 dyn_r_type = r_type + R_IA64_RELNNLSB - R_IA64_FPTRNNLSB;
4097 }
4098 else if (h)
4099 {
4100 if (h->dynindx != -1)
4101 dynindx = h->dynindx;
4102 else
4103 dynindx = (_bfd_elf_link_lookup_local_dynindx
4104 (info, h->root.u.def.section->owner,
4105 global_sym_index (h)));
4106 value = 0;
4107 }
4108 else
4109 {
4110 dynindx = (_bfd_elf_link_lookup_local_dynindx
4111 (info, input_bfd, (long) r_symndx));
4112 value = 0;
4113 }
4114
4115 elfNN_ia64_install_dyn_reloc (output_bfd, info, input_section,
4116 srel, rel->r_offset, dyn_r_type,
4117 dynindx, addend);
4118 }
4119
4120 r = ia64_elf_install_value (hit_addr, value, r_type);
4121 break;
4122
4123 case R_IA64_LTOFF_FPTR22:
4124 case R_IA64_LTOFF_FPTR64I:
4125 case R_IA64_LTOFF_FPTR32MSB:
4126 case R_IA64_LTOFF_FPTR32LSB:
4127 case R_IA64_LTOFF_FPTR64MSB:
4128 case R_IA64_LTOFF_FPTR64LSB:
4129 {
4130 long dynindx;
4131
4132 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, FALSE);
4133 if (dyn_i->want_fptr)
4134 {
4135 BFD_ASSERT (h == NULL || h->dynindx == -1);
4136 if (!undef_weak_ref)
4137 value = set_fptr_entry (output_bfd, info, dyn_i, value);
4138 dynindx = -1;
4139 }
4140 else
4141 {
4142 /* Otherwise, we expect the dynamic linker to create
4143 the entry. */
4144 if (h)
4145 {
4146 if (h->dynindx != -1)
4147 dynindx = h->dynindx;
4148 else
4149 dynindx = (_bfd_elf_link_lookup_local_dynindx
4150 (info, h->root.u.def.section->owner,
4151 global_sym_index (h)));
4152 }
4153 else
4154 dynindx = (_bfd_elf_link_lookup_local_dynindx
4155 (info, input_bfd, (long) r_symndx));
4156 value = 0;
4157 }
4158
4159 value = set_got_entry (output_bfd, info, dyn_i, dynindx,
4160 rel->r_addend, value, R_IA64_FPTRNNLSB);
4161 value -= gp_val;
4162 r = ia64_elf_install_value (hit_addr, value, r_type);
4163 }
4164 break;
4165
4166 case R_IA64_PCREL32MSB:
4167 case R_IA64_PCREL32LSB:
4168 case R_IA64_PCREL64MSB:
4169 case R_IA64_PCREL64LSB:
4170 /* Install a dynamic relocation for this reloc. */
4171 if (dynamic_symbol_p && r_symndx != STN_UNDEF)
4172 {
4173 BFD_ASSERT (srel != NULL);
4174
4175 elfNN_ia64_install_dyn_reloc (output_bfd, info, input_section,
4176 srel, rel->r_offset, r_type,
4177 h->dynindx, rel->r_addend);
4178 }
4179 goto finish_pcrel;
4180
4181 case R_IA64_PCREL21B:
4182 case R_IA64_PCREL60B:
4183 /* We should have created a PLT entry for any dynamic symbol. */
4184 dyn_i = NULL;
4185 if (h)
4186 dyn_i = get_dyn_sym_info (ia64_info, h, NULL, NULL, FALSE);
4187
4188 if (dyn_i && dyn_i->want_plt2)
4189 {
4190 /* Should have caught this earlier. */
4191 BFD_ASSERT (rel->r_addend == 0);
4192
4193 value = (ia64_info->root.splt->output_section->vma
4194 + ia64_info->root.splt->output_offset
4195 + dyn_i->plt2_offset);
4196 }
4197 else
4198 {
4199 /* Since there's no PLT entry, Validate that this is
4200 locally defined. */
4201 BFD_ASSERT (undef_weak_ref || sym_sec->output_section != NULL);
4202
4203 /* If the symbol is undef_weak, we shouldn't be trying
4204 to call it. There's every chance that we'd wind up
4205 with an out-of-range fixup here. Don't bother setting
4206 any value at all. */
4207 if (undef_weak_ref)
4208 continue;
4209 }
4210 goto finish_pcrel;
4211
4212 case R_IA64_PCREL21BI:
4213 case R_IA64_PCREL21F:
4214 case R_IA64_PCREL21M:
4215 case R_IA64_PCREL22:
4216 case R_IA64_PCREL64I:
4217 /* The PCREL21BI reloc is specifically not intended for use with
4218 dynamic relocs. PCREL21F and PCREL21M are used for speculation
4219 fixup code, and thus probably ought not be dynamic. The
4220 PCREL22 and PCREL64I relocs aren't emitted as dynamic relocs. */
4221 if (dynamic_symbol_p)
4222 {
4223 const char *msg;
4224
4225 if (r_type == R_IA64_PCREL21BI)
4226 /* xgettext:c-format */
4227 msg = _("%pB: @internal branch to dynamic symbol %s");
4228 else if (r_type == R_IA64_PCREL21F || r_type == R_IA64_PCREL21M)
4229 /* xgettext:c-format */
4230 msg = _("%pB: speculation fixup to dynamic symbol %s");
4231 else
4232 /* xgettext:c-format */
4233 msg = _("%pB: @pcrel relocation against dynamic symbol %s");
4234 _bfd_error_handler (msg, input_bfd,
4235 h ? h->root.root.string
4236 : bfd_elf_sym_name (input_bfd,
4237 symtab_hdr,
4238 sym,
4239 sym_sec));
4240 ret_val = FALSE;
4241 continue;
4242 }
4243 goto finish_pcrel;
4244
4245 finish_pcrel:
4246 /* Make pc-relative. */
4247 value -= (input_section->output_section->vma
4248 + input_section->output_offset
4249 + rel->r_offset) & ~ (bfd_vma) 0x3;
4250 r = ia64_elf_install_value (hit_addr, value, r_type);
4251 break;
4252
4253 case R_IA64_SEGREL32MSB:
4254 case R_IA64_SEGREL32LSB:
4255 case R_IA64_SEGREL64MSB:
4256 case R_IA64_SEGREL64LSB:
4257 {
4258 /* Find the segment that contains the output_section. */
4259 Elf_Internal_Phdr *p = _bfd_elf_find_segment_containing_section
4260 (output_bfd, input_section->output_section);
4261
4262 if (p == NULL)
4263 {
4264 r = bfd_reloc_notsupported;
4265 }
4266 else
4267 {
4268 /* The VMA of the segment is the vaddr of the associated
4269 program header. */
4270 if (value > p->p_vaddr)
4271 value -= p->p_vaddr;
4272 else
4273 value = 0;
4274 r = ia64_elf_install_value (hit_addr, value, r_type);
4275 }
4276 break;
4277 }
4278
4279 case R_IA64_SECREL32MSB:
4280 case R_IA64_SECREL32LSB:
4281 case R_IA64_SECREL64MSB:
4282 case R_IA64_SECREL64LSB:
4283 /* Make output-section relative to section where the symbol
4284 is defined. PR 475 */
4285 if (sym_sec)
4286 value -= sym_sec->output_section->vma;
4287 r = ia64_elf_install_value (hit_addr, value, r_type);
4288 break;
4289
4290 case R_IA64_IPLTMSB:
4291 case R_IA64_IPLTLSB:
4292 /* Install a dynamic relocation for this reloc. */
4293 if ((dynamic_symbol_p || bfd_link_pic (info))
4294 && (input_section->flags & SEC_ALLOC) != 0)
4295 {
4296 BFD_ASSERT (srel != NULL);
4297
4298 /* If we don't need dynamic symbol lookup, install two
4299 RELATIVE relocations. */
4300 if (!dynamic_symbol_p)
4301 {
4302 unsigned int dyn_r_type;
4303
4304 if (r_type == R_IA64_IPLTMSB)
4305 dyn_r_type = R_IA64_REL64MSB;
4306 else
4307 dyn_r_type = R_IA64_REL64LSB;
4308
4309 elfNN_ia64_install_dyn_reloc (output_bfd, info,
4310 input_section,
4311 srel, rel->r_offset,
4312 dyn_r_type, 0, value);
4313 elfNN_ia64_install_dyn_reloc (output_bfd, info,
4314 input_section,
4315 srel, rel->r_offset + 8,
4316 dyn_r_type, 0, gp_val);
4317 }
4318 else
4319 elfNN_ia64_install_dyn_reloc (output_bfd, info, input_section,
4320 srel, rel->r_offset, r_type,
4321 h->dynindx, rel->r_addend);
4322 }
4323
4324 if (r_type == R_IA64_IPLTMSB)
4325 r_type = R_IA64_DIR64MSB;
4326 else
4327 r_type = R_IA64_DIR64LSB;
4328 ia64_elf_install_value (hit_addr, value, r_type);
4329 r = ia64_elf_install_value (hit_addr + 8, gp_val, r_type);
4330 break;
4331
4332 case R_IA64_TPREL14:
4333 case R_IA64_TPREL22:
4334 case R_IA64_TPREL64I:
4335 if (elf_hash_table (info)->tls_sec == NULL)
4336 goto missing_tls_sec;
4337 value -= elfNN_ia64_tprel_base (info);
4338 r = ia64_elf_install_value (hit_addr, value, r_type);
4339 break;
4340
4341 case R_IA64_DTPREL14:
4342 case R_IA64_DTPREL22:
4343 case R_IA64_DTPREL64I:
4344 case R_IA64_DTPREL32LSB:
4345 case R_IA64_DTPREL32MSB:
4346 case R_IA64_DTPREL64LSB:
4347 case R_IA64_DTPREL64MSB:
4348 if (elf_hash_table (info)->tls_sec == NULL)
4349 goto missing_tls_sec;
4350 value -= elfNN_ia64_dtprel_base (info);
4351 r = ia64_elf_install_value (hit_addr, value, r_type);
4352 break;
4353
4354 case R_IA64_LTOFF_TPREL22:
4355 case R_IA64_LTOFF_DTPMOD22:
4356 case R_IA64_LTOFF_DTPREL22:
4357 {
4358 int got_r_type;
4359 long dynindx = h ? h->dynindx : -1;
4360 bfd_vma r_addend = rel->r_addend;
4361
4362 switch (r_type)
4363 {
4364 default:
4365 case R_IA64_LTOFF_TPREL22:
4366 if (!dynamic_symbol_p)
4367 {
4368 if (elf_hash_table (info)->tls_sec == NULL)
4369 goto missing_tls_sec;
4370 if (!bfd_link_pic (info))
4371 value -= elfNN_ia64_tprel_base (info);
4372 else
4373 {
4374 r_addend += value - elfNN_ia64_dtprel_base (info);
4375 dynindx = 0;
4376 }
4377 }
4378 got_r_type = R_IA64_TPREL64LSB;
4379 break;
4380 case R_IA64_LTOFF_DTPMOD22:
4381 if (!dynamic_symbol_p && !bfd_link_pic (info))
4382 value = 1;
4383 got_r_type = R_IA64_DTPMOD64LSB;
4384 break;
4385 case R_IA64_LTOFF_DTPREL22:
4386 if (!dynamic_symbol_p)
4387 {
4388 if (elf_hash_table (info)->tls_sec == NULL)
4389 goto missing_tls_sec;
4390 value -= elfNN_ia64_dtprel_base (info);
4391 }
4392 got_r_type = R_IA64_DTPRELNNLSB;
4393 break;
4394 }
4395 dyn_i = get_dyn_sym_info (ia64_info, h, input_bfd, rel, FALSE);
4396 value = set_got_entry (input_bfd, info, dyn_i, dynindx, r_addend,
4397 value, got_r_type);
4398 value -= gp_val;
4399 r = ia64_elf_install_value (hit_addr, value, r_type);
4400 }
4401 break;
4402
4403 default:
4404 r = bfd_reloc_notsupported;
4405 break;
4406 }
4407
4408 switch (r)
4409 {
4410 case bfd_reloc_ok:
4411 break;
4412
4413 case bfd_reloc_undefined:
4414 /* This can happen for global table relative relocs if
4415 __gp is undefined. This is a panic situation so we
4416 don't try to continue. */
4417 (*info->callbacks->undefined_symbol)
4418 (info, "__gp", input_bfd, input_section, rel->r_offset, 1);
4419 return FALSE;
4420
4421 case bfd_reloc_notsupported:
4422 {
4423 const char *name;
4424
4425 if (h)
4426 name = h->root.root.string;
4427 else
4428 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4429 sym_sec);
4430 (*info->callbacks->warning) (info, _("unsupported reloc"),
4431 name, input_bfd,
4432 input_section, rel->r_offset);
4433 ret_val = FALSE;
4434 }
4435 break;
4436
4437 case bfd_reloc_dangerous:
4438 case bfd_reloc_outofrange:
4439 case bfd_reloc_overflow:
4440 default:
4441 missing_tls_sec:
4442 {
4443 const char *name;
4444
4445 if (h)
4446 name = h->root.root.string;
4447 else
4448 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4449 sym_sec);
4450
4451 switch (r_type)
4452 {
4453 case R_IA64_TPREL14:
4454 case R_IA64_TPREL22:
4455 case R_IA64_TPREL64I:
4456 case R_IA64_DTPREL14:
4457 case R_IA64_DTPREL22:
4458 case R_IA64_DTPREL64I:
4459 case R_IA64_DTPREL32LSB:
4460 case R_IA64_DTPREL32MSB:
4461 case R_IA64_DTPREL64LSB:
4462 case R_IA64_DTPREL64MSB:
4463 case R_IA64_LTOFF_TPREL22:
4464 case R_IA64_LTOFF_DTPMOD22:
4465 case R_IA64_LTOFF_DTPREL22:
4466 _bfd_error_handler
4467 /* xgettext:c-format */
4468 (_("%pB: missing TLS section for relocation %s against `%s'"
4469 " at %#" PRIx64 " in section `%pA'."),
4470 input_bfd, howto->name, name,
4471 (uint64_t) rel->r_offset, input_section);
4472 break;
4473
4474 case R_IA64_PCREL21B:
4475 case R_IA64_PCREL21BI:
4476 case R_IA64_PCREL21M:
4477 case R_IA64_PCREL21F:
4478 if (is_elf_hash_table (info->hash))
4479 {
4480 /* Relaxtion is always performed for ELF output.
4481 Overflow failures for those relocations mean
4482 that the section is too big to relax. */
4483 _bfd_error_handler
4484 /* xgettext:c-format */
4485 (_("%pB: Can't relax br (%s) to `%s' at %#" PRIx64
4486 " in section `%pA' with size %#" PRIx64
4487 " (> 0x1000000)."),
4488 input_bfd, howto->name, name, (uint64_t) rel->r_offset,
4489 input_section, (uint64_t) input_section->size);
4490 break;
4491 }
4492 /* Fall through. */
4493 default:
4494 (*info->callbacks->reloc_overflow) (info,
4495 &h->root,
4496 name,
4497 howto->name,
4498 (bfd_vma) 0,
4499 input_bfd,
4500 input_section,
4501 rel->r_offset);
4502 break;
4503 }
4504
4505 ret_val = FALSE;
4506 }
4507 break;
4508 }
4509 }
4510
4511 return ret_val;
4512 }
4513
4514 static bfd_boolean
4515 elfNN_ia64_finish_dynamic_symbol (bfd *output_bfd,
4516 struct bfd_link_info *info,
4517 struct elf_link_hash_entry *h,
4518 Elf_Internal_Sym *sym)
4519 {
4520 struct elfNN_ia64_link_hash_table *ia64_info;
4521 struct elfNN_ia64_dyn_sym_info *dyn_i;
4522
4523 ia64_info = elfNN_ia64_hash_table (info);
4524 if (ia64_info == NULL)
4525 return FALSE;
4526
4527 dyn_i = get_dyn_sym_info (ia64_info, h, NULL, NULL, FALSE);
4528
4529 /* Fill in the PLT data, if required. */
4530 if (dyn_i && dyn_i->want_plt)
4531 {
4532 Elf_Internal_Rela outrel;
4533 bfd_byte *loc;
4534 asection *plt_sec;
4535 bfd_vma plt_addr, pltoff_addr, gp_val, plt_index;
4536
4537 gp_val = _bfd_get_gp_value (output_bfd);
4538
4539 /* Initialize the minimal PLT entry. */
4540
4541 plt_index = (dyn_i->plt_offset - PLT_HEADER_SIZE) / PLT_MIN_ENTRY_SIZE;
4542 plt_sec = ia64_info->root.splt;
4543 loc = plt_sec->contents + dyn_i->plt_offset;
4544
4545 memcpy (loc, plt_min_entry, PLT_MIN_ENTRY_SIZE);
4546 ia64_elf_install_value (loc, plt_index, R_IA64_IMM22);
4547 ia64_elf_install_value (loc+2, -dyn_i->plt_offset, R_IA64_PCREL21B);
4548
4549 plt_addr = (plt_sec->output_section->vma
4550 + plt_sec->output_offset
4551 + dyn_i->plt_offset);
4552 pltoff_addr = set_pltoff_entry (output_bfd, info, dyn_i, plt_addr, TRUE);
4553
4554 /* Initialize the FULL PLT entry, if needed. */
4555 if (dyn_i->want_plt2)
4556 {
4557 loc = plt_sec->contents + dyn_i->plt2_offset;
4558
4559 memcpy (loc, plt_full_entry, PLT_FULL_ENTRY_SIZE);
4560 ia64_elf_install_value (loc, pltoff_addr - gp_val, R_IA64_IMM22);
4561
4562 /* Mark the symbol as undefined, rather than as defined in the
4563 plt section. Leave the value alone. */
4564 /* ??? We didn't redefine it in adjust_dynamic_symbol in the
4565 first place. But perhaps elflink.c did some for us. */
4566 if (!h->def_regular)
4567 sym->st_shndx = SHN_UNDEF;
4568 }
4569
4570 /* Create the dynamic relocation. */
4571 outrel.r_offset = pltoff_addr;
4572 if (bfd_little_endian (output_bfd))
4573 outrel.r_info = ELFNN_R_INFO (h->dynindx, R_IA64_IPLTLSB);
4574 else
4575 outrel.r_info = ELFNN_R_INFO (h->dynindx, R_IA64_IPLTMSB);
4576 outrel.r_addend = 0;
4577
4578 /* This is fun. In the .IA_64.pltoff section, we've got entries
4579 that correspond both to real PLT entries, and those that
4580 happened to resolve to local symbols but need to be created
4581 to satisfy @pltoff relocations. The .rela.IA_64.pltoff
4582 relocations for the real PLT should come at the end of the
4583 section, so that they can be indexed by plt entry at runtime.
4584
4585 We emitted all of the relocations for the non-PLT @pltoff
4586 entries during relocate_section. So we can consider the
4587 existing sec->reloc_count to be the base of the array of
4588 PLT relocations. */
4589
4590 loc = ia64_info->rel_pltoff_sec->contents;
4591 loc += ((ia64_info->rel_pltoff_sec->reloc_count + plt_index)
4592 * sizeof (ElfNN_External_Rela));
4593 bfd_elfNN_swap_reloca_out (output_bfd, &outrel, loc);
4594 }
4595
4596 /* Mark some specially defined symbols as absolute. */
4597 if (h == ia64_info->root.hdynamic
4598 || h == ia64_info->root.hgot
4599 || h == ia64_info->root.hplt)
4600 sym->st_shndx = SHN_ABS;
4601
4602 return TRUE;
4603 }
4604
4605 static bfd_boolean
4606 elfNN_ia64_finish_dynamic_sections (bfd *abfd,
4607 struct bfd_link_info *info)
4608 {
4609 struct elfNN_ia64_link_hash_table *ia64_info;
4610 bfd *dynobj;
4611
4612 ia64_info = elfNN_ia64_hash_table (info);
4613 if (ia64_info == NULL)
4614 return FALSE;
4615
4616 dynobj = ia64_info->root.dynobj;
4617
4618 if (ia64_info->root.dynamic_sections_created)
4619 {
4620 ElfNN_External_Dyn *dyncon, *dynconend;
4621 asection *sdyn, *sgotplt;
4622 bfd_vma gp_val;
4623
4624 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
4625 sgotplt = ia64_info->root.sgotplt;
4626 BFD_ASSERT (sdyn != NULL);
4627 dyncon = (ElfNN_External_Dyn *) sdyn->contents;
4628 dynconend = (ElfNN_External_Dyn *) (sdyn->contents + sdyn->size);
4629
4630 gp_val = _bfd_get_gp_value (abfd);
4631
4632 for (; dyncon < dynconend; dyncon++)
4633 {
4634 Elf_Internal_Dyn dyn;
4635
4636 bfd_elfNN_swap_dyn_in (dynobj, dyncon, &dyn);
4637
4638 switch (dyn.d_tag)
4639 {
4640 case DT_PLTGOT:
4641 dyn.d_un.d_ptr = gp_val;
4642 break;
4643
4644 case DT_PLTRELSZ:
4645 dyn.d_un.d_val = (ia64_info->minplt_entries
4646 * sizeof (ElfNN_External_Rela));
4647 break;
4648
4649 case DT_JMPREL:
4650 /* See the comment above in finish_dynamic_symbol. */
4651 dyn.d_un.d_ptr = (ia64_info->rel_pltoff_sec->output_section->vma
4652 + ia64_info->rel_pltoff_sec->output_offset
4653 + (ia64_info->rel_pltoff_sec->reloc_count
4654 * sizeof (ElfNN_External_Rela)));
4655 break;
4656
4657 case DT_IA_64_PLT_RESERVE:
4658 dyn.d_un.d_ptr = (sgotplt->output_section->vma
4659 + sgotplt->output_offset);
4660 break;
4661 }
4662
4663 bfd_elfNN_swap_dyn_out (abfd, &dyn, dyncon);
4664 }
4665
4666 /* Initialize the PLT0 entry. */
4667 if (ia64_info->root.splt)
4668 {
4669 bfd_byte *loc = ia64_info->root.splt->contents;
4670 bfd_vma pltres;
4671
4672 memcpy (loc, plt_header, PLT_HEADER_SIZE);
4673
4674 pltres = (sgotplt->output_section->vma
4675 + sgotplt->output_offset
4676 - gp_val);
4677
4678 ia64_elf_install_value (loc+1, pltres, R_IA64_GPREL22);
4679 }
4680 }
4681
4682 return TRUE;
4683 }
4684 \f
4685 /* ELF file flag handling: */
4686
4687 /* Function to keep IA-64 specific file flags. */
4688 static bfd_boolean
4689 elfNN_ia64_set_private_flags (bfd *abfd, flagword flags)
4690 {
4691 BFD_ASSERT (!elf_flags_init (abfd)
4692 || elf_elfheader (abfd)->e_flags == flags);
4693
4694 elf_elfheader (abfd)->e_flags = flags;
4695 elf_flags_init (abfd) = TRUE;
4696 return TRUE;
4697 }
4698
4699 /* Merge backend specific data from an object file to the output
4700 object file when linking. */
4701
4702 static bfd_boolean
4703 elfNN_ia64_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
4704 {
4705 bfd *obfd = info->output_bfd;
4706 flagword out_flags;
4707 flagword in_flags;
4708 bfd_boolean ok = TRUE;
4709
4710 /* FIXME: What should be checked when linking shared libraries? */
4711 if ((ibfd->flags & DYNAMIC) != 0)
4712 return TRUE;
4713
4714 if (!is_ia64_elf (ibfd) || !is_ia64_elf (obfd))
4715 return TRUE;
4716
4717 in_flags = elf_elfheader (ibfd)->e_flags;
4718 out_flags = elf_elfheader (obfd)->e_flags;
4719
4720 if (! elf_flags_init (obfd))
4721 {
4722 elf_flags_init (obfd) = TRUE;
4723 elf_elfheader (obfd)->e_flags = in_flags;
4724
4725 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
4726 && bfd_get_arch_info (obfd)->the_default)
4727 {
4728 return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
4729 bfd_get_mach (ibfd));
4730 }
4731
4732 return TRUE;
4733 }
4734
4735 /* Check flag compatibility. */
4736 if (in_flags == out_flags)
4737 return TRUE;
4738
4739 /* Output has EF_IA_64_REDUCEDFP set only if all inputs have it set. */
4740 if (!(in_flags & EF_IA_64_REDUCEDFP) && (out_flags & EF_IA_64_REDUCEDFP))
4741 elf_elfheader (obfd)->e_flags &= ~EF_IA_64_REDUCEDFP;
4742
4743 if ((in_flags & EF_IA_64_TRAPNIL) != (out_flags & EF_IA_64_TRAPNIL))
4744 {
4745 _bfd_error_handler
4746 (_("%pB: linking trap-on-NULL-dereference with non-trapping files"),
4747 ibfd);
4748
4749 bfd_set_error (bfd_error_bad_value);
4750 ok = FALSE;
4751 }
4752 if ((in_flags & EF_IA_64_BE) != (out_flags & EF_IA_64_BE))
4753 {
4754 _bfd_error_handler
4755 (_("%pB: linking big-endian files with little-endian files"),
4756 ibfd);
4757
4758 bfd_set_error (bfd_error_bad_value);
4759 ok = FALSE;
4760 }
4761 if ((in_flags & EF_IA_64_ABI64) != (out_flags & EF_IA_64_ABI64))
4762 {
4763 _bfd_error_handler
4764 (_("%pB: linking 64-bit files with 32-bit files"),
4765 ibfd);
4766
4767 bfd_set_error (bfd_error_bad_value);
4768 ok = FALSE;
4769 }
4770 if ((in_flags & EF_IA_64_CONS_GP) != (out_flags & EF_IA_64_CONS_GP))
4771 {
4772 _bfd_error_handler
4773 (_("%pB: linking constant-gp files with non-constant-gp files"),
4774 ibfd);
4775
4776 bfd_set_error (bfd_error_bad_value);
4777 ok = FALSE;
4778 }
4779 if ((in_flags & EF_IA_64_NOFUNCDESC_CONS_GP)
4780 != (out_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
4781 {
4782 _bfd_error_handler
4783 (_("%pB: linking auto-pic files with non-auto-pic files"),
4784 ibfd);
4785
4786 bfd_set_error (bfd_error_bad_value);
4787 ok = FALSE;
4788 }
4789
4790 return ok;
4791 }
4792
4793 static bfd_boolean
4794 elfNN_ia64_print_private_bfd_data (bfd *abfd, void * ptr)
4795 {
4796 FILE *file = (FILE *) ptr;
4797 flagword flags = elf_elfheader (abfd)->e_flags;
4798
4799 BFD_ASSERT (abfd != NULL && ptr != NULL);
4800
4801 fprintf (file, "private flags = %s%s%s%s%s%s%s%s\n",
4802 (flags & EF_IA_64_TRAPNIL) ? "TRAPNIL, " : "",
4803 (flags & EF_IA_64_EXT) ? "EXT, " : "",
4804 (flags & EF_IA_64_BE) ? "BE, " : "LE, ",
4805 (flags & EF_IA_64_REDUCEDFP) ? "REDUCEDFP, " : "",
4806 (flags & EF_IA_64_CONS_GP) ? "CONS_GP, " : "",
4807 (flags & EF_IA_64_NOFUNCDESC_CONS_GP) ? "NOFUNCDESC_CONS_GP, " : "",
4808 (flags & EF_IA_64_ABSOLUTE) ? "ABSOLUTE, " : "",
4809 (flags & EF_IA_64_ABI64) ? "ABI64" : "ABI32");
4810
4811 _bfd_elf_print_private_bfd_data (abfd, ptr);
4812 return TRUE;
4813 }
4814
4815 static enum elf_reloc_type_class
4816 elfNN_ia64_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
4817 const asection *rel_sec ATTRIBUTE_UNUSED,
4818 const Elf_Internal_Rela *rela)
4819 {
4820 switch ((int) ELFNN_R_TYPE (rela->r_info))
4821 {
4822 case R_IA64_REL32MSB:
4823 case R_IA64_REL32LSB:
4824 case R_IA64_REL64MSB:
4825 case R_IA64_REL64LSB:
4826 return reloc_class_relative;
4827 case R_IA64_IPLTMSB:
4828 case R_IA64_IPLTLSB:
4829 return reloc_class_plt;
4830 case R_IA64_COPY:
4831 return reloc_class_copy;
4832 default:
4833 return reloc_class_normal;
4834 }
4835 }
4836
4837 static const struct bfd_elf_special_section elfNN_ia64_special_sections[] =
4838 {
4839 { STRING_COMMA_LEN (".sbss"), -1, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_IA_64_SHORT },
4840 { STRING_COMMA_LEN (".sdata"), -1, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_IA_64_SHORT },
4841 { NULL, 0, 0, 0, 0 }
4842 };
4843
4844 static bfd_boolean
4845 elfNN_ia64_object_p (bfd *abfd)
4846 {
4847 asection *sec;
4848 asection *group, *unwi, *unw;
4849 flagword flags;
4850 const char *name;
4851 char *unwi_name, *unw_name;
4852 size_t amt;
4853
4854 if (abfd->flags & DYNAMIC)
4855 return TRUE;
4856
4857 /* Flags for fake group section. */
4858 flags = (SEC_LINKER_CREATED | SEC_GROUP | SEC_LINK_ONCE
4859 | SEC_EXCLUDE);
4860
4861 /* We add a fake section group for each .gnu.linkonce.t.* section,
4862 which isn't in a section group, and its unwind sections. */
4863 for (sec = abfd->sections; sec != NULL; sec = sec->next)
4864 {
4865 if (elf_sec_group (sec) == NULL
4866 && ((sec->flags & (SEC_LINK_ONCE | SEC_CODE | SEC_GROUP))
4867 == (SEC_LINK_ONCE | SEC_CODE))
4868 && CONST_STRNEQ (sec->name, ".gnu.linkonce.t."))
4869 {
4870 name = sec->name + 16;
4871
4872 amt = strlen (name) + sizeof (".gnu.linkonce.ia64unwi.");
4873 unwi_name = bfd_alloc (abfd, amt);
4874 if (!unwi_name)
4875 return FALSE;
4876
4877 strcpy (stpcpy (unwi_name, ".gnu.linkonce.ia64unwi."), name);
4878 unwi = bfd_get_section_by_name (abfd, unwi_name);
4879
4880 amt = strlen (name) + sizeof (".gnu.linkonce.ia64unw.");
4881 unw_name = bfd_alloc (abfd, amt);
4882 if (!unw_name)
4883 return FALSE;
4884
4885 strcpy (stpcpy (unw_name, ".gnu.linkonce.ia64unw."), name);
4886 unw = bfd_get_section_by_name (abfd, unw_name);
4887
4888 /* We need to create a fake group section for it and its
4889 unwind sections. */
4890 group = bfd_make_section_anyway_with_flags (abfd, name,
4891 flags);
4892 if (group == NULL)
4893 return FALSE;
4894
4895 /* Move the fake group section to the beginning. */
4896 bfd_section_list_remove (abfd, group);
4897 bfd_section_list_prepend (abfd, group);
4898
4899 elf_next_in_group (group) = sec;
4900
4901 elf_group_name (sec) = name;
4902 elf_next_in_group (sec) = sec;
4903 elf_sec_group (sec) = group;
4904
4905 if (unwi)
4906 {
4907 elf_group_name (unwi) = name;
4908 elf_next_in_group (unwi) = sec;
4909 elf_next_in_group (sec) = unwi;
4910 elf_sec_group (unwi) = group;
4911 }
4912
4913 if (unw)
4914 {
4915 elf_group_name (unw) = name;
4916 if (unwi)
4917 {
4918 elf_next_in_group (unw) = elf_next_in_group (unwi);
4919 elf_next_in_group (unwi) = unw;
4920 }
4921 else
4922 {
4923 elf_next_in_group (unw) = sec;
4924 elf_next_in_group (sec) = unw;
4925 }
4926 elf_sec_group (unw) = group;
4927 }
4928
4929 /* Fake SHT_GROUP section header. */
4930 elf_section_data (group)->this_hdr.bfd_section = group;
4931 elf_section_data (group)->this_hdr.sh_type = SHT_GROUP;
4932 }
4933 }
4934 return TRUE;
4935 }
4936
4937 static bfd_boolean
4938 elfNN_ia64_hpux_vec (const bfd_target *vec)
4939 {
4940 extern const bfd_target ia64_elfNN_hpux_be_vec;
4941 return (vec == &ia64_elfNN_hpux_be_vec);
4942 }
4943
4944 static bfd_boolean
4945 elfNN_hpux_init_file_header (bfd *abfd, struct bfd_link_info *info)
4946 {
4947 Elf_Internal_Ehdr *i_ehdrp;
4948
4949 if (!_bfd_elf_init_file_header (abfd, info))
4950 return FALSE;
4951
4952 i_ehdrp = elf_elfheader (abfd);
4953 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
4954 i_ehdrp->e_ident[EI_ABIVERSION] = 1;
4955 return TRUE;
4956 }
4957
4958 static bfd_boolean
4959 elfNN_hpux_backend_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED,
4960 asection *sec, int *retval)
4961 {
4962 if (bfd_is_com_section (sec))
4963 {
4964 *retval = SHN_IA_64_ANSI_COMMON;
4965 return TRUE;
4966 }
4967 return FALSE;
4968 }
4969
4970 static void
4971 elfNN_hpux_backend_symbol_processing (bfd *abfd ATTRIBUTE_UNUSED,
4972 asymbol *asym)
4973 {
4974 elf_symbol_type *elfsym = (elf_symbol_type *) asym;
4975
4976 switch (elfsym->internal_elf_sym.st_shndx)
4977 {
4978 case SHN_IA_64_ANSI_COMMON:
4979 asym->section = bfd_com_section_ptr;
4980 asym->value = elfsym->internal_elf_sym.st_size;
4981 asym->flags &= ~BSF_GLOBAL;
4982 break;
4983 }
4984 }
4985
4986 static void
4987 ignore_errors (const char *fmt ATTRIBUTE_UNUSED, ...)
4988 {
4989 }
4990 \f
4991 #define TARGET_LITTLE_SYM ia64_elfNN_le_vec
4992 #define TARGET_LITTLE_NAME "elfNN-ia64-little"
4993 #define TARGET_BIG_SYM ia64_elfNN_be_vec
4994 #define TARGET_BIG_NAME "elfNN-ia64-big"
4995 #define ELF_ARCH bfd_arch_ia64
4996 #define ELF_TARGET_ID IA64_ELF_DATA
4997 #define ELF_MACHINE_CODE EM_IA_64
4998 #define ELF_MACHINE_ALT1 1999 /* EAS2.3 */
4999 #define ELF_MACHINE_ALT2 1998 /* EAS2.2 */
5000 #define ELF_MAXPAGESIZE 0x10000 /* 64KB */
5001 #define ELF_COMMONPAGESIZE 0x4000 /* 16KB */
5002
5003 #define elf_backend_section_from_shdr \
5004 elfNN_ia64_section_from_shdr
5005 #define elf_backend_section_flags \
5006 elfNN_ia64_section_flags
5007 #define elf_backend_fake_sections \
5008 elfNN_ia64_fake_sections
5009 #define elf_backend_final_write_processing \
5010 elfNN_ia64_final_write_processing
5011 #define elf_backend_add_symbol_hook \
5012 elfNN_ia64_add_symbol_hook
5013 #define elf_backend_additional_program_headers \
5014 elfNN_ia64_additional_program_headers
5015 #define elf_backend_modify_segment_map \
5016 elfNN_ia64_modify_segment_map
5017 #define elf_backend_modify_headers \
5018 elfNN_ia64_modify_headers
5019 #define elf_info_to_howto \
5020 elfNN_ia64_info_to_howto
5021
5022 #define bfd_elfNN_bfd_reloc_type_lookup \
5023 ia64_elf_reloc_type_lookup
5024 #define bfd_elfNN_bfd_reloc_name_lookup \
5025 ia64_elf_reloc_name_lookup
5026 #define bfd_elfNN_bfd_is_local_label_name \
5027 elfNN_ia64_is_local_label_name
5028 #define bfd_elfNN_bfd_relax_section \
5029 elfNN_ia64_relax_section
5030
5031 #define elf_backend_object_p \
5032 elfNN_ia64_object_p
5033
5034 /* Stuff for the BFD linker: */
5035 #define bfd_elfNN_bfd_link_hash_table_create \
5036 elfNN_ia64_hash_table_create
5037 #define elf_backend_create_dynamic_sections \
5038 elfNN_ia64_create_dynamic_sections
5039 #define elf_backend_check_relocs \
5040 elfNN_ia64_check_relocs
5041 #define elf_backend_adjust_dynamic_symbol \
5042 elfNN_ia64_adjust_dynamic_symbol
5043 #define elf_backend_size_dynamic_sections \
5044 elfNN_ia64_size_dynamic_sections
5045 #define elf_backend_omit_section_dynsym \
5046 _bfd_elf_omit_section_dynsym_all
5047 #define elf_backend_relocate_section \
5048 elfNN_ia64_relocate_section
5049 #define elf_backend_finish_dynamic_symbol \
5050 elfNN_ia64_finish_dynamic_symbol
5051 #define elf_backend_finish_dynamic_sections \
5052 elfNN_ia64_finish_dynamic_sections
5053 #define bfd_elfNN_bfd_final_link \
5054 elfNN_ia64_final_link
5055
5056 #define bfd_elfNN_bfd_merge_private_bfd_data \
5057 elfNN_ia64_merge_private_bfd_data
5058 #define bfd_elfNN_bfd_set_private_flags \
5059 elfNN_ia64_set_private_flags
5060 #define bfd_elfNN_bfd_print_private_bfd_data \
5061 elfNN_ia64_print_private_bfd_data
5062
5063 #define elf_backend_plt_readonly 1
5064 #define elf_backend_can_gc_sections 1
5065 #define elf_backend_want_plt_sym 0
5066 #define elf_backend_plt_alignment 5
5067 #define elf_backend_got_header_size 0
5068 #define elf_backend_want_got_plt 1
5069 #define elf_backend_may_use_rel_p 1
5070 #define elf_backend_may_use_rela_p 1
5071 #define elf_backend_default_use_rela_p 1
5072 #define elf_backend_want_dynbss 0
5073 #define elf_backend_copy_indirect_symbol elfNN_ia64_hash_copy_indirect
5074 #define elf_backend_hide_symbol elfNN_ia64_hash_hide_symbol
5075 #define elf_backend_fixup_symbol _bfd_elf_link_hash_fixup_symbol
5076 #define elf_backend_reloc_type_class elfNN_ia64_reloc_type_class
5077 #define elf_backend_rela_normal 1
5078 #define elf_backend_dtrel_excludes_plt 1
5079 #define elf_backend_special_sections elfNN_ia64_special_sections
5080 #define elf_backend_default_execstack 0
5081
5082 /* FIXME: PR 290: The Intel C compiler generates SHT_IA_64_UNWIND with
5083 SHF_LINK_ORDER. But it doesn't set the sh_link or sh_info fields.
5084 We don't want to flood users with so many error messages. We turn
5085 off the warning for now. It will be turned on later when the Intel
5086 compiler is fixed. */
5087 #define elf_backend_link_order_error_handler ignore_errors
5088
5089 #include "elfNN-target.h"
5090
5091 /* HPUX-specific vectors. */
5092
5093 #undef TARGET_LITTLE_SYM
5094 #undef TARGET_LITTLE_NAME
5095 #undef TARGET_BIG_SYM
5096 #define TARGET_BIG_SYM ia64_elfNN_hpux_be_vec
5097 #undef TARGET_BIG_NAME
5098 #define TARGET_BIG_NAME "elfNN-ia64-hpux-big"
5099
5100 /* These are HP-UX specific functions. */
5101
5102 #undef elf_backend_init_file_header
5103 #define elf_backend_init_file_header elfNN_hpux_init_file_header
5104
5105 #undef elf_backend_section_from_bfd_section
5106 #define elf_backend_section_from_bfd_section elfNN_hpux_backend_section_from_bfd_section
5107
5108 #undef elf_backend_symbol_processing
5109 #define elf_backend_symbol_processing elfNN_hpux_backend_symbol_processing
5110
5111 #undef elf_backend_want_p_paddr_set_to_zero
5112 #define elf_backend_want_p_paddr_set_to_zero 1
5113
5114 #undef ELF_COMMONPAGESIZE
5115 #undef ELF_OSABI
5116 #define ELF_OSABI ELFOSABI_HPUX
5117
5118 #undef elfNN_bed
5119 #define elfNN_bed elfNN_ia64_hpux_bed
5120
5121 #include "elfNN-target.h"
This page took 0.135006 seconds and 4 git commands to generate.