Include -z nocopyreloc in usage
[deliverable/binutils-gdb.git] / bfd / elf32-hppa.c
1 /* BFD back-end for HP PA-RISC ELF files.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2001
3 Free Software Foundation, Inc.
4
5 Original code by
6 Center for Software Science
7 Department of Computer Science
8 University of Utah
9 Largely rewritten by Alan Modra <alan@linuxcare.com.au>
10
11 This file is part of BFD, the Binary File Descriptor library.
12
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
26
27 #include "bfd.h"
28 #include "sysdep.h"
29 #include "libbfd.h"
30 #include "elf-bfd.h"
31 #include "elf/hppa.h"
32 #include "libhppa.h"
33 #include "elf32-hppa.h"
34 #define ARCH_SIZE 32
35 #include "elf-hppa.h"
36 #include "elf32-hppa.h"
37
38 /* In order to gain some understanding of code in this file without
39 knowing all the intricate details of the linker, note the
40 following:
41
42 Functions named elf32_hppa_* are called by external routines, other
43 functions are only called locally. elf32_hppa_* functions appear
44 in this file more or less in the order in which they are called
45 from external routines. eg. elf32_hppa_check_relocs is called
46 early in the link process, elf32_hppa_finish_dynamic_sections is
47 one of the last functions. */
48
49 /* We use two hash tables to hold information for linking PA ELF objects.
50
51 The first is the elf32_hppa_link_hash_table which is derived
52 from the standard ELF linker hash table. We use this as a place to
53 attach other hash tables and static information.
54
55 The second is the stub hash table which is derived from the
56 base BFD hash table. The stub hash table holds the information
57 necessary to build the linker stubs during a link.
58
59 There are a number of different stubs generated by the linker.
60
61 Long branch stub:
62 : ldil LR'X,%r1
63 : be,n RR'X(%sr4,%r1)
64
65 PIC long branch stub:
66 : b,l .+8,%r1
67 : addil LR'X - ($PIC_pcrel$0 - 4),%r1
68 : be,n RR'X - ($PIC_pcrel$0 - 8)(%sr4,%r1)
69
70 Import stub to call shared library routine from normal object file
71 (single sub-space version)
72 : addil LR'lt_ptr+ltoff,%dp ; get procedure entry point
73 : ldw RR'lt_ptr+ltoff(%r1),%r21
74 : bv %r0(%r21)
75 : ldw RR'lt_ptr+ltoff+4(%r1),%r19 ; get new dlt value.
76
77 Import stub to call shared library routine from shared library
78 (single sub-space version)
79 : addil LR'ltoff,%r19 ; get procedure entry point
80 : ldw RR'ltoff(%r1),%r21
81 : bv %r0(%r21)
82 : ldw RR'ltoff+4(%r1),%r19 ; get new dlt value.
83
84 Import stub to call shared library routine from normal object file
85 (multiple sub-space support)
86 : addil LR'lt_ptr+ltoff,%dp ; get procedure entry point
87 : ldw RR'lt_ptr+ltoff(%r1),%r21
88 : ldw RR'lt_ptr+ltoff+4(%r1),%r19 ; get new dlt value.
89 : ldsid (%r21),%r1
90 : mtsp %r1,%sr0
91 : be 0(%sr0,%r21) ; branch to target
92 : stw %rp,-24(%sp) ; save rp
93
94 Import stub to call shared library routine from shared library
95 (multiple sub-space support)
96 : addil LR'ltoff,%r19 ; get procedure entry point
97 : ldw RR'ltoff(%r1),%r21
98 : ldw RR'ltoff+4(%r1),%r19 ; get new dlt value.
99 : ldsid (%r21),%r1
100 : mtsp %r1,%sr0
101 : be 0(%sr0,%r21) ; branch to target
102 : stw %rp,-24(%sp) ; save rp
103
104 Export stub to return from shared lib routine (multiple sub-space support)
105 One of these is created for each exported procedure in a shared
106 library (and stored in the shared lib). Shared lib routines are
107 called via the first instruction in the export stub so that we can
108 do an inter-space return. Not required for single sub-space.
109 : bl,n X,%rp ; trap the return
110 : nop
111 : ldw -24(%sp),%rp ; restore the original rp
112 : ldsid (%rp),%r1
113 : mtsp %r1,%sr0
114 : be,n 0(%sr0,%rp) ; inter-space return */
115
116 #define PLT_ENTRY_SIZE 8
117 #define PLABEL_PLT_ENTRY_SIZE PLT_ENTRY_SIZE
118 #define GOT_ENTRY_SIZE 4
119 #define ELF_DYNAMIC_INTERPRETER "/lib/ld.so.1"
120
121 static const bfd_byte plt_stub[] =
122 {
123 0x0e, 0x80, 0x10, 0x96, /* 1: ldw 0(%r20),%r22 */
124 0xea, 0xc0, 0xc0, 0x00, /* bv %r0(%r22) */
125 0x0e, 0x88, 0x10, 0x95, /* ldw 4(%r20),%r21 */
126 #define PLT_STUB_ENTRY (3*4)
127 0xea, 0x9f, 0x1f, 0xdd, /* b,l 1b,%r20 */
128 0xd6, 0x80, 0x1c, 0x1e, /* depi 0,31,2,%r20 */
129 0x00, 0xc0, 0xff, 0xee, /* 9: .word fixup_func */
130 0xde, 0xad, 0xbe, 0xef /* .word fixup_ltp */
131 };
132
133 /* Section name for stubs is the associated section name plus this
134 string. */
135 #define STUB_SUFFIX ".stub"
136
137 /* We don't need to copy certain PC- or GP-relative dynamic relocs
138 into a shared object's dynamic section. All the relocs of the
139 limited class we are interested in, are absolute. */
140 #ifndef RELATIVE_DYNRELOCS
141 #define RELATIVE_DYNRELOCS 0
142 #define IS_ABSOLUTE_RELOC(r_type) 1
143 #endif
144
145 enum elf32_hppa_stub_type {
146 hppa_stub_long_branch,
147 hppa_stub_long_branch_shared,
148 hppa_stub_import,
149 hppa_stub_import_shared,
150 hppa_stub_export,
151 hppa_stub_none
152 };
153
154 struct elf32_hppa_stub_hash_entry {
155
156 /* Base hash table entry structure. */
157 struct bfd_hash_entry root;
158
159 /* The stub section. */
160 asection *stub_sec;
161
162 /* Offset within stub_sec of the beginning of this stub. */
163 bfd_vma stub_offset;
164
165 /* Given the symbol's value and its section we can determine its final
166 value when building the stubs (so the stub knows where to jump. */
167 bfd_vma target_value;
168 asection *target_section;
169
170 enum elf32_hppa_stub_type stub_type;
171
172 /* The symbol table entry, if any, that this was derived from. */
173 struct elf32_hppa_link_hash_entry *h;
174
175 /* Where this stub is being called from, or, in the case of combined
176 stub sections, the first input section in the group. */
177 asection *id_sec;
178 };
179
180 struct elf32_hppa_link_hash_entry {
181
182 struct elf_link_hash_entry elf;
183
184 /* A pointer to the most recently used stub hash entry against this
185 symbol. */
186 struct elf32_hppa_stub_hash_entry *stub_cache;
187
188 /* Used to count relocations for delayed sizing of relocation
189 sections. */
190 struct elf32_hppa_dyn_reloc_entry {
191
192 /* Next relocation in the chain. */
193 struct elf32_hppa_dyn_reloc_entry *next;
194
195 /* The input section of the reloc. */
196 asection *sec;
197
198 /* Number of relocs copied in this section. */
199 bfd_size_type count;
200
201 #if RELATIVE_DYNRELOCS
202 /* Number of relative relocs copied for the input section. */
203 bfd_size_type relative_count;
204 #endif
205 } *dyn_relocs;
206
207 /* Set during a static link if we detect a function is PIC. */
208 unsigned int maybe_pic_call:1;
209
210 /* Set if the only reason we need a .plt entry is for a non-PIC to
211 PIC function call. */
212 unsigned int pic_call:1;
213
214 /* Set if this symbol is used by a plabel reloc. */
215 unsigned int plabel:1;
216
217 /* Set if this symbol is an init or fini function and thus should
218 use an absolute reloc. */
219 unsigned int plt_abs:1;
220 };
221
222 struct elf32_hppa_link_hash_table {
223
224 /* The main hash table. */
225 struct elf_link_hash_table elf;
226
227 /* The stub hash table. */
228 struct bfd_hash_table stub_hash_table;
229
230 /* Linker stub bfd. */
231 bfd *stub_bfd;
232
233 /* Linker call-backs. */
234 asection * (*add_stub_section) PARAMS ((const char *, asection *));
235 void (*layout_sections_again) PARAMS ((void));
236
237 /* Array to keep track of which stub sections have been created, and
238 information on stub grouping. */
239 struct map_stub {
240 /* This is the section to which stubs in the group will be
241 attached. */
242 asection *link_sec;
243 /* The stub section. */
244 asection *stub_sec;
245 } *stub_group;
246
247 /* Short-cuts to get to dynamic linker sections. */
248 asection *sgot;
249 asection *srelgot;
250 asection *splt;
251 asection *srelplt;
252 asection *sdynbss;
253 asection *srelbss;
254
255 /* Used during a final link to store the base of the text and data
256 segments so that we can perform SEGREL relocations. */
257 bfd_vma text_segment_base;
258 bfd_vma data_segment_base;
259
260 /* Whether we support multiple sub-spaces for shared libs. */
261 unsigned int multi_subspace:1;
262
263 /* Flags set when PCREL12F and PCREL17F branches detected. Used to
264 select suitable defaults for the stub group size. */
265 unsigned int has_12bit_branch:1;
266 unsigned int has_17bit_branch:1;
267
268 /* Set if we need a .plt stub to support lazy dynamic linking. */
269 unsigned int need_plt_stub:1;
270 };
271
272 /* Various hash macros and functions. */
273 #define hppa_link_hash_table(p) \
274 ((struct elf32_hppa_link_hash_table *) ((p)->hash))
275
276 #define hppa_stub_hash_lookup(table, string, create, copy) \
277 ((struct elf32_hppa_stub_hash_entry *) \
278 bfd_hash_lookup ((table), (string), (create), (copy)))
279
280 static struct bfd_hash_entry *stub_hash_newfunc
281 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
282
283 static struct bfd_hash_entry *hppa_link_hash_newfunc
284 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
285
286 static struct bfd_link_hash_table *elf32_hppa_link_hash_table_create
287 PARAMS ((bfd *));
288
289 /* Stub handling functions. */
290 static char *hppa_stub_name
291 PARAMS ((const asection *, const asection *,
292 const struct elf32_hppa_link_hash_entry *,
293 const Elf_Internal_Rela *));
294
295 static struct elf32_hppa_stub_hash_entry *hppa_get_stub_entry
296 PARAMS ((const asection *, const asection *,
297 struct elf32_hppa_link_hash_entry *,
298 const Elf_Internal_Rela *,
299 struct elf32_hppa_link_hash_table *));
300
301 static struct elf32_hppa_stub_hash_entry *hppa_add_stub
302 PARAMS ((const char *, asection *, struct elf32_hppa_link_hash_table *));
303
304 static enum elf32_hppa_stub_type hppa_type_of_stub
305 PARAMS ((asection *, const Elf_Internal_Rela *,
306 struct elf32_hppa_link_hash_entry *, bfd_vma));
307
308 static boolean hppa_build_one_stub
309 PARAMS ((struct bfd_hash_entry *, PTR));
310
311 static boolean hppa_size_one_stub
312 PARAMS ((struct bfd_hash_entry *, PTR));
313
314 /* BFD and elf backend functions. */
315 static boolean elf32_hppa_object_p PARAMS ((bfd *));
316
317 static boolean elf32_hppa_add_symbol_hook
318 PARAMS ((bfd *, struct bfd_link_info *, const Elf_Internal_Sym *,
319 const char **, flagword *, asection **, bfd_vma *));
320
321 static boolean elf32_hppa_create_dynamic_sections
322 PARAMS ((bfd *, struct bfd_link_info *));
323
324 static void elf32_hppa_copy_indirect_symbol
325 PARAMS ((struct elf_link_hash_entry *, struct elf_link_hash_entry *));
326
327 static boolean elf32_hppa_check_relocs
328 PARAMS ((bfd *, struct bfd_link_info *,
329 asection *, const Elf_Internal_Rela *));
330
331 static asection *elf32_hppa_gc_mark_hook
332 PARAMS ((bfd *, struct bfd_link_info *, Elf_Internal_Rela *,
333 struct elf_link_hash_entry *, Elf_Internal_Sym *));
334
335 static boolean elf32_hppa_gc_sweep_hook
336 PARAMS ((bfd *, struct bfd_link_info *,
337 asection *, const Elf_Internal_Rela *));
338
339 static void elf32_hppa_hide_symbol
340 PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
341
342 static boolean elf32_hppa_adjust_dynamic_symbol
343 PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
344
345 static boolean hppa_handle_PIC_calls
346 PARAMS ((struct elf_link_hash_entry *, PTR));
347
348 static boolean allocate_dynrelocs
349 PARAMS ((struct elf_link_hash_entry *, PTR));
350
351 static boolean readonly_dynrelocs
352 PARAMS ((struct elf_link_hash_entry *, PTR));
353
354 static boolean clobber_millicode_symbols
355 PARAMS ((struct elf_link_hash_entry *, struct bfd_link_info *));
356
357 static boolean elf32_hppa_size_dynamic_sections
358 PARAMS ((bfd *, struct bfd_link_info *));
359
360 static boolean elf32_hppa_final_link
361 PARAMS ((bfd *, struct bfd_link_info *));
362
363 static void hppa_record_segment_addr
364 PARAMS ((bfd *, asection *, PTR));
365
366 static bfd_reloc_status_type final_link_relocate
367 PARAMS ((asection *, bfd_byte *, const Elf_Internal_Rela *,
368 bfd_vma, struct elf32_hppa_link_hash_table *, asection *,
369 struct elf32_hppa_link_hash_entry *));
370
371 static boolean elf32_hppa_relocate_section
372 PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *,
373 bfd_byte *, Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
374
375 static int hppa_unwind_entry_compare
376 PARAMS ((const PTR, const PTR));
377
378 static boolean elf32_hppa_finish_dynamic_symbol
379 PARAMS ((bfd *, struct bfd_link_info *,
380 struct elf_link_hash_entry *, Elf_Internal_Sym *));
381
382 static enum elf_reloc_type_class elf32_hppa_reloc_type_class
383 PARAMS ((const Elf_Internal_Rela *));
384
385 static boolean elf32_hppa_finish_dynamic_sections
386 PARAMS ((bfd *, struct bfd_link_info *));
387
388 static void elf32_hppa_post_process_headers
389 PARAMS ((bfd *, struct bfd_link_info *));
390
391 static int elf32_hppa_elf_get_symbol_type
392 PARAMS ((Elf_Internal_Sym *, int));
393
394 /* Assorted hash table functions. */
395
396 /* Initialize an entry in the stub hash table. */
397
398 static struct bfd_hash_entry *
399 stub_hash_newfunc (entry, table, string)
400 struct bfd_hash_entry *entry;
401 struct bfd_hash_table *table;
402 const char *string;
403 {
404 /* Allocate the structure if it has not already been allocated by a
405 subclass. */
406 if (entry == NULL)
407 {
408 entry = bfd_hash_allocate (table,
409 sizeof (struct elf32_hppa_stub_hash_entry));
410 if (entry == NULL)
411 return entry;
412 }
413
414 /* Call the allocation method of the superclass. */
415 entry = bfd_hash_newfunc (entry, table, string);
416 if (entry != NULL)
417 {
418 struct elf32_hppa_stub_hash_entry *eh;
419
420 /* Initialize the local fields. */
421 eh = (struct elf32_hppa_stub_hash_entry *) entry;
422 eh->stub_sec = NULL;
423 eh->stub_offset = 0;
424 eh->target_value = 0;
425 eh->target_section = NULL;
426 eh->stub_type = hppa_stub_long_branch;
427 eh->h = NULL;
428 eh->id_sec = NULL;
429 }
430
431 return entry;
432 }
433
434 /* Initialize an entry in the link hash table. */
435
436 static struct bfd_hash_entry *
437 hppa_link_hash_newfunc (entry, table, string)
438 struct bfd_hash_entry *entry;
439 struct bfd_hash_table *table;
440 const char *string;
441 {
442 /* Allocate the structure if it has not already been allocated by a
443 subclass. */
444 if (entry == NULL)
445 {
446 entry = bfd_hash_allocate (table,
447 sizeof (struct elf32_hppa_link_hash_entry));
448 if (entry == NULL)
449 return entry;
450 }
451
452 /* Call the allocation method of the superclass. */
453 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
454 if (entry != NULL)
455 {
456 struct elf32_hppa_link_hash_entry *eh;
457
458 /* Initialize the local fields. */
459 eh = (struct elf32_hppa_link_hash_entry *) entry;
460 eh->stub_cache = NULL;
461 eh->dyn_relocs = NULL;
462 eh->maybe_pic_call = 0;
463 eh->pic_call = 0;
464 eh->plabel = 0;
465 eh->plt_abs = 0;
466 }
467
468 return entry;
469 }
470
471 /* Create the derived linker hash table. The PA ELF port uses the derived
472 hash table to keep information specific to the PA ELF linker (without
473 using static variables). */
474
475 static struct bfd_link_hash_table *
476 elf32_hppa_link_hash_table_create (abfd)
477 bfd *abfd;
478 {
479 struct elf32_hppa_link_hash_table *ret;
480 bfd_size_type amt = sizeof (*ret);
481
482 ret = (struct elf32_hppa_link_hash_table *) bfd_alloc (abfd, amt);
483 if (ret == NULL)
484 return NULL;
485
486 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd, hppa_link_hash_newfunc))
487 {
488 bfd_release (abfd, ret);
489 return NULL;
490 }
491
492 /* Init the stub hash table too. */
493 if (!bfd_hash_table_init (&ret->stub_hash_table, stub_hash_newfunc))
494 return NULL;
495
496 ret->stub_bfd = NULL;
497 ret->add_stub_section = NULL;
498 ret->layout_sections_again = NULL;
499 ret->stub_group = NULL;
500 ret->sgot = NULL;
501 ret->srelgot = NULL;
502 ret->splt = NULL;
503 ret->srelplt = NULL;
504 ret->sdynbss = NULL;
505 ret->srelbss = NULL;
506 ret->text_segment_base = (bfd_vma) -1;
507 ret->data_segment_base = (bfd_vma) -1;
508 ret->multi_subspace = 0;
509 ret->has_12bit_branch = 0;
510 ret->has_17bit_branch = 0;
511 ret->need_plt_stub = 0;
512
513 return &ret->elf.root;
514 }
515
516 /* Build a name for an entry in the stub hash table. */
517
518 static char *
519 hppa_stub_name (input_section, sym_sec, hash, rel)
520 const asection *input_section;
521 const asection *sym_sec;
522 const struct elf32_hppa_link_hash_entry *hash;
523 const Elf_Internal_Rela *rel;
524 {
525 char *stub_name;
526 bfd_size_type len;
527
528 if (hash)
529 {
530 len = 8 + 1 + strlen (hash->elf.root.root.string) + 1 + 8 + 1;
531 stub_name = bfd_malloc (len);
532 if (stub_name != NULL)
533 {
534 sprintf (stub_name, "%08x_%s+%x",
535 input_section->id & 0xffffffff,
536 hash->elf.root.root.string,
537 (int) rel->r_addend & 0xffffffff);
538 }
539 }
540 else
541 {
542 len = 8 + 1 + 8 + 1 + 8 + 1 + 8 + 1;
543 stub_name = bfd_malloc (len);
544 if (stub_name != NULL)
545 {
546 sprintf (stub_name, "%08x_%x:%x+%x",
547 input_section->id & 0xffffffff,
548 sym_sec->id & 0xffffffff,
549 (int) ELF32_R_SYM (rel->r_info) & 0xffffffff,
550 (int) rel->r_addend & 0xffffffff);
551 }
552 }
553 return stub_name;
554 }
555
556 /* Look up an entry in the stub hash. Stub entries are cached because
557 creating the stub name takes a bit of time. */
558
559 static struct elf32_hppa_stub_hash_entry *
560 hppa_get_stub_entry (input_section, sym_sec, hash, rel, htab)
561 const asection *input_section;
562 const asection *sym_sec;
563 struct elf32_hppa_link_hash_entry *hash;
564 const Elf_Internal_Rela *rel;
565 struct elf32_hppa_link_hash_table *htab;
566 {
567 struct elf32_hppa_stub_hash_entry *stub_entry;
568 const asection *id_sec;
569
570 /* If this input section is part of a group of sections sharing one
571 stub section, then use the id of the first section in the group.
572 Stub names need to include a section id, as there may well be
573 more than one stub used to reach say, printf, and we need to
574 distinguish between them. */
575 id_sec = htab->stub_group[input_section->id].link_sec;
576
577 if (hash != NULL && hash->stub_cache != NULL
578 && hash->stub_cache->h == hash
579 && hash->stub_cache->id_sec == id_sec)
580 {
581 stub_entry = hash->stub_cache;
582 }
583 else
584 {
585 char *stub_name;
586
587 stub_name = hppa_stub_name (id_sec, sym_sec, hash, rel);
588 if (stub_name == NULL)
589 return NULL;
590
591 stub_entry = hppa_stub_hash_lookup (&htab->stub_hash_table,
592 stub_name, false, false);
593 if (stub_entry == NULL)
594 {
595 if (hash == NULL || hash->elf.root.type != bfd_link_hash_undefweak)
596 (*_bfd_error_handler) (_("%s(%s+0x%lx): cannot find stub entry %s"),
597 bfd_archive_filename (input_section->owner),
598 input_section->name,
599 (long) rel->r_offset,
600 stub_name);
601 }
602 else
603 {
604 if (hash != NULL)
605 hash->stub_cache = stub_entry;
606 }
607
608 free (stub_name);
609 }
610
611 return stub_entry;
612 }
613
614 /* Add a new stub entry to the stub hash. Not all fields of the new
615 stub entry are initialised. */
616
617 static struct elf32_hppa_stub_hash_entry *
618 hppa_add_stub (stub_name, section, htab)
619 const char *stub_name;
620 asection *section;
621 struct elf32_hppa_link_hash_table *htab;
622 {
623 asection *link_sec;
624 asection *stub_sec;
625 struct elf32_hppa_stub_hash_entry *stub_entry;
626
627 link_sec = htab->stub_group[section->id].link_sec;
628 stub_sec = htab->stub_group[section->id].stub_sec;
629 if (stub_sec == NULL)
630 {
631 stub_sec = htab->stub_group[link_sec->id].stub_sec;
632 if (stub_sec == NULL)
633 {
634 bfd_size_type len;
635 char *s_name;
636
637 len = strlen (link_sec->name) + sizeof (STUB_SUFFIX);
638 s_name = bfd_alloc (htab->stub_bfd, len);
639 if (s_name == NULL)
640 return NULL;
641
642 strcpy (s_name, link_sec->name);
643 strcpy (s_name + len - sizeof (STUB_SUFFIX), STUB_SUFFIX);
644 stub_sec = (*htab->add_stub_section) (s_name, link_sec);
645 if (stub_sec == NULL)
646 return NULL;
647 htab->stub_group[link_sec->id].stub_sec = stub_sec;
648 }
649 htab->stub_group[section->id].stub_sec = stub_sec;
650 }
651
652 /* Enter this entry into the linker stub hash table. */
653 stub_entry = hppa_stub_hash_lookup (&htab->stub_hash_table, stub_name,
654 true, false);
655 if (stub_entry == NULL)
656 {
657 (*_bfd_error_handler) (_("%s: cannot create stub entry %s"),
658 bfd_archive_filename (section->owner),
659 stub_name);
660 return NULL;
661 }
662
663 stub_entry->stub_sec = stub_sec;
664 stub_entry->stub_offset = 0;
665 stub_entry->id_sec = link_sec;
666 return stub_entry;
667 }
668
669 /* Determine the type of stub needed, if any, for a call. */
670
671 static enum elf32_hppa_stub_type
672 hppa_type_of_stub (input_sec, rel, hash, destination)
673 asection *input_sec;
674 const Elf_Internal_Rela *rel;
675 struct elf32_hppa_link_hash_entry *hash;
676 bfd_vma destination;
677 {
678 bfd_vma location;
679 bfd_vma branch_offset;
680 bfd_vma max_branch_offset;
681 unsigned int r_type;
682
683 if (hash != NULL
684 && (((hash->elf.root.type == bfd_link_hash_defined
685 || hash->elf.root.type == bfd_link_hash_defweak)
686 && hash->elf.root.u.def.section->output_section == NULL)
687 || (hash->elf.root.type == bfd_link_hash_defweak
688 && hash->elf.dynindx != -1
689 && hash->elf.plt.offset != (bfd_vma) -1)
690 || hash->elf.root.type == bfd_link_hash_undefweak
691 || hash->elf.root.type == bfd_link_hash_undefined
692 || (hash->maybe_pic_call && !(input_sec->flags & SEC_HAS_GOT_REF))))
693 {
694 /* If output_section is NULL, then it's a symbol defined in a
695 shared library. We will need an import stub. Decide between
696 hppa_stub_import and hppa_stub_import_shared later. For
697 shared links we need stubs for undefined or weak syms too;
698 They will presumably be resolved by the dynamic linker. */
699 return hppa_stub_import;
700 }
701
702 /* Determine where the call point is. */
703 location = (input_sec->output_offset
704 + input_sec->output_section->vma
705 + rel->r_offset);
706
707 branch_offset = destination - location - 8;
708 r_type = ELF32_R_TYPE (rel->r_info);
709
710 /* Determine if a long branch stub is needed. parisc branch offsets
711 are relative to the second instruction past the branch, ie. +8
712 bytes on from the branch instruction location. The offset is
713 signed and counts in units of 4 bytes. */
714 if (r_type == (unsigned int) R_PARISC_PCREL17F)
715 {
716 max_branch_offset = (1 << (17-1)) << 2;
717 }
718 else if (r_type == (unsigned int) R_PARISC_PCREL12F)
719 {
720 max_branch_offset = (1 << (12-1)) << 2;
721 }
722 else /* R_PARISC_PCREL22F. */
723 {
724 max_branch_offset = (1 << (22-1)) << 2;
725 }
726
727 if (branch_offset + max_branch_offset >= 2*max_branch_offset)
728 return hppa_stub_long_branch;
729
730 return hppa_stub_none;
731 }
732
733 /* Build one linker stub as defined by the stub hash table entry GEN_ENTRY.
734 IN_ARG contains the link info pointer. */
735
736 #define LDIL_R1 0x20200000 /* ldil LR'XXX,%r1 */
737 #define BE_SR4_R1 0xe0202002 /* be,n RR'XXX(%sr4,%r1) */
738
739 #define BL_R1 0xe8200000 /* b,l .+8,%r1 */
740 #define ADDIL_R1 0x28200000 /* addil LR'XXX,%r1,%r1 */
741 #define DEPI_R1 0xd4201c1e /* depi 0,31,2,%r1 */
742
743 #define ADDIL_DP 0x2b600000 /* addil LR'XXX,%dp,%r1 */
744 #define LDW_R1_R21 0x48350000 /* ldw RR'XXX(%sr0,%r1),%r21 */
745 #define BV_R0_R21 0xeaa0c000 /* bv %r0(%r21) */
746 #define LDW_R1_R19 0x48330000 /* ldw RR'XXX(%sr0,%r1),%r19 */
747
748 #define ADDIL_R19 0x2a600000 /* addil LR'XXX,%r19,%r1 */
749 #define LDW_R1_DP 0x483b0000 /* ldw RR'XXX(%sr0,%r1),%dp */
750
751 #define LDSID_R21_R1 0x02a010a1 /* ldsid (%sr0,%r21),%r1 */
752 #define MTSP_R1 0x00011820 /* mtsp %r1,%sr0 */
753 #define BE_SR0_R21 0xe2a00000 /* be 0(%sr0,%r21) */
754 #define STW_RP 0x6bc23fd1 /* stw %rp,-24(%sr0,%sp) */
755
756 #define BL_RP 0xe8400002 /* b,l,n XXX,%rp */
757 #define NOP 0x08000240 /* nop */
758 #define LDW_RP 0x4bc23fd1 /* ldw -24(%sr0,%sp),%rp */
759 #define LDSID_RP_R1 0x004010a1 /* ldsid (%sr0,%rp),%r1 */
760 #define BE_SR0_RP 0xe0400002 /* be,n 0(%sr0,%rp) */
761
762 #ifndef R19_STUBS
763 #define R19_STUBS 1
764 #endif
765
766 #if R19_STUBS
767 #define LDW_R1_DLT LDW_R1_R19
768 #else
769 #define LDW_R1_DLT LDW_R1_DP
770 #endif
771
772 static boolean
773 hppa_build_one_stub (gen_entry, in_arg)
774 struct bfd_hash_entry *gen_entry;
775 PTR in_arg;
776 {
777 struct elf32_hppa_stub_hash_entry *stub_entry;
778 struct bfd_link_info *info;
779 struct elf32_hppa_link_hash_table *htab;
780 asection *stub_sec;
781 bfd *stub_bfd;
782 bfd_byte *loc;
783 bfd_vma sym_value;
784 bfd_vma insn;
785 bfd_vma off;
786 int val;
787 int size;
788
789 /* Massage our args to the form they really have. */
790 stub_entry = (struct elf32_hppa_stub_hash_entry *) gen_entry;
791 info = (struct bfd_link_info *) in_arg;
792
793 htab = hppa_link_hash_table (info);
794 stub_sec = stub_entry->stub_sec;
795
796 /* Make a note of the offset within the stubs for this entry. */
797 stub_entry->stub_offset = stub_sec->_raw_size;
798 loc = stub_sec->contents + stub_entry->stub_offset;
799
800 stub_bfd = stub_sec->owner;
801
802 switch (stub_entry->stub_type)
803 {
804 case hppa_stub_long_branch:
805 /* Create the long branch. A long branch is formed with "ldil"
806 loading the upper bits of the target address into a register,
807 then branching with "be" which adds in the lower bits.
808 The "be" has its delay slot nullified. */
809 sym_value = (stub_entry->target_value
810 + stub_entry->target_section->output_offset
811 + stub_entry->target_section->output_section->vma);
812
813 val = hppa_field_adjust (sym_value, (bfd_signed_vma) 0, e_lrsel);
814 insn = hppa_rebuild_insn ((int) LDIL_R1, val, 21);
815 bfd_put_32 (stub_bfd, insn, loc);
816
817 val = hppa_field_adjust (sym_value, (bfd_signed_vma) 0, e_rrsel) >> 2;
818 insn = hppa_rebuild_insn ((int) BE_SR4_R1, val, 17);
819 bfd_put_32 (stub_bfd, insn, loc + 4);
820
821 size = 8;
822 break;
823
824 case hppa_stub_long_branch_shared:
825 /* Branches are relative. This is where we are going to. */
826 sym_value = (stub_entry->target_value
827 + stub_entry->target_section->output_offset
828 + stub_entry->target_section->output_section->vma);
829
830 /* And this is where we are coming from, more or less. */
831 sym_value -= (stub_entry->stub_offset
832 + stub_sec->output_offset
833 + stub_sec->output_section->vma);
834
835 bfd_put_32 (stub_bfd, (bfd_vma) BL_R1, loc);
836 val = hppa_field_adjust (sym_value, (bfd_signed_vma) -8, e_lrsel);
837 insn = hppa_rebuild_insn ((int) ADDIL_R1, val, 21);
838 bfd_put_32 (stub_bfd, insn, loc + 4);
839
840 val = hppa_field_adjust (sym_value, (bfd_signed_vma) -8, e_rrsel) >> 2;
841 insn = hppa_rebuild_insn ((int) BE_SR4_R1, val, 17);
842 bfd_put_32 (stub_bfd, insn, loc + 8);
843 size = 12;
844 break;
845
846 case hppa_stub_import:
847 case hppa_stub_import_shared:
848 off = stub_entry->h->elf.plt.offset;
849 if (off >= (bfd_vma) -2)
850 abort ();
851
852 off &= ~ (bfd_vma) 1;
853 sym_value = (off
854 + htab->splt->output_offset
855 + htab->splt->output_section->vma
856 - elf_gp (htab->splt->output_section->owner));
857
858 insn = ADDIL_DP;
859 #if R19_STUBS
860 if (stub_entry->stub_type == hppa_stub_import_shared)
861 insn = ADDIL_R19;
862 #endif
863 val = hppa_field_adjust (sym_value, (bfd_signed_vma) 0, e_lrsel),
864 insn = hppa_rebuild_insn ((int) insn, val, 21);
865 bfd_put_32 (stub_bfd, insn, loc);
866
867 /* It is critical to use lrsel/rrsel here because we are using
868 two different offsets (+0 and +4) from sym_value. If we use
869 lsel/rsel then with unfortunate sym_values we will round
870 sym_value+4 up to the next 2k block leading to a mis-match
871 between the lsel and rsel value. */
872 val = hppa_field_adjust (sym_value, (bfd_signed_vma) 0, e_rrsel);
873 insn = hppa_rebuild_insn ((int) LDW_R1_R21, val, 14);
874 bfd_put_32 (stub_bfd, insn, loc + 4);
875
876 if (htab->multi_subspace)
877 {
878 val = hppa_field_adjust (sym_value, (bfd_signed_vma) 4, e_rrsel);
879 insn = hppa_rebuild_insn ((int) LDW_R1_DLT, val, 14);
880 bfd_put_32 (stub_bfd, insn, loc + 8);
881
882 bfd_put_32 (stub_bfd, (bfd_vma) LDSID_R21_R1, loc + 12);
883 bfd_put_32 (stub_bfd, (bfd_vma) MTSP_R1, loc + 16);
884 bfd_put_32 (stub_bfd, (bfd_vma) BE_SR0_R21, loc + 20);
885 bfd_put_32 (stub_bfd, (bfd_vma) STW_RP, loc + 24);
886
887 size = 28;
888 }
889 else
890 {
891 bfd_put_32 (stub_bfd, (bfd_vma) BV_R0_R21, loc + 8);
892 val = hppa_field_adjust (sym_value, (bfd_signed_vma) 4, e_rrsel);
893 insn = hppa_rebuild_insn ((int) LDW_R1_DLT, val, 14);
894 bfd_put_32 (stub_bfd, insn, loc + 12);
895
896 size = 16;
897 }
898
899 if (!info->shared
900 && stub_entry->h != NULL
901 && stub_entry->h->pic_call)
902 {
903 /* Build the .plt entry needed to call a PIC function from
904 statically linked code. We don't need any relocs. */
905 bfd *dynobj;
906 struct elf32_hppa_link_hash_entry *eh;
907 bfd_vma value;
908
909 dynobj = htab->elf.dynobj;
910 eh = (struct elf32_hppa_link_hash_entry *) stub_entry->h;
911
912 if (eh->elf.root.type != bfd_link_hash_defined
913 && eh->elf.root.type != bfd_link_hash_defweak)
914 abort ();
915
916 value = (eh->elf.root.u.def.value
917 + eh->elf.root.u.def.section->output_offset
918 + eh->elf.root.u.def.section->output_section->vma);
919
920 /* Fill in the entry in the procedure linkage table.
921
922 The format of a plt entry is
923 <funcaddr>
924 <__gp>. */
925
926 bfd_put_32 (htab->splt->owner, value,
927 htab->splt->contents + off);
928 value = elf_gp (htab->splt->output_section->owner);
929 bfd_put_32 (htab->splt->owner, value,
930 htab->splt->contents + off + 4);
931 }
932 break;
933
934 case hppa_stub_export:
935 /* Branches are relative. This is where we are going to. */
936 sym_value = (stub_entry->target_value
937 + stub_entry->target_section->output_offset
938 + stub_entry->target_section->output_section->vma);
939
940 /* And this is where we are coming from. */
941 sym_value -= (stub_entry->stub_offset
942 + stub_sec->output_offset
943 + stub_sec->output_section->vma);
944
945 if (sym_value - 8 + 0x40000 >= 0x80000)
946 {
947 (*_bfd_error_handler)
948 (_("%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections"),
949 bfd_archive_filename (stub_entry->target_section->owner),
950 stub_sec->name,
951 (long) stub_entry->stub_offset,
952 stub_entry->root.string);
953 bfd_set_error (bfd_error_bad_value);
954 return false;
955 }
956
957 val = hppa_field_adjust (sym_value, (bfd_signed_vma) -8, e_fsel) >> 2;
958 insn = hppa_rebuild_insn ((int) BL_RP, val, 17);
959 bfd_put_32 (stub_bfd, insn, loc);
960
961 bfd_put_32 (stub_bfd, (bfd_vma) NOP, loc + 4);
962 bfd_put_32 (stub_bfd, (bfd_vma) LDW_RP, loc + 8);
963 bfd_put_32 (stub_bfd, (bfd_vma) LDSID_RP_R1, loc + 12);
964 bfd_put_32 (stub_bfd, (bfd_vma) MTSP_R1, loc + 16);
965 bfd_put_32 (stub_bfd, (bfd_vma) BE_SR0_RP, loc + 20);
966
967 /* Point the function symbol at the stub. */
968 stub_entry->h->elf.root.u.def.section = stub_sec;
969 stub_entry->h->elf.root.u.def.value = stub_sec->_raw_size;
970
971 size = 24;
972 break;
973
974 default:
975 BFD_FAIL ();
976 return false;
977 }
978
979 stub_sec->_raw_size += size;
980 return true;
981 }
982
983 #undef LDIL_R1
984 #undef BE_SR4_R1
985 #undef BL_R1
986 #undef ADDIL_R1
987 #undef DEPI_R1
988 #undef ADDIL_DP
989 #undef LDW_R1_R21
990 #undef LDW_R1_DLT
991 #undef LDW_R1_R19
992 #undef ADDIL_R19
993 #undef LDW_R1_DP
994 #undef LDSID_R21_R1
995 #undef MTSP_R1
996 #undef BE_SR0_R21
997 #undef STW_RP
998 #undef BV_R0_R21
999 #undef BL_RP
1000 #undef NOP
1001 #undef LDW_RP
1002 #undef LDSID_RP_R1
1003 #undef BE_SR0_RP
1004
1005 /* As above, but don't actually build the stub. Just bump offset so
1006 we know stub section sizes. */
1007
1008 static boolean
1009 hppa_size_one_stub (gen_entry, in_arg)
1010 struct bfd_hash_entry *gen_entry;
1011 PTR in_arg;
1012 {
1013 struct elf32_hppa_stub_hash_entry *stub_entry;
1014 struct elf32_hppa_link_hash_table *htab;
1015 int size;
1016
1017 /* Massage our args to the form they really have. */
1018 stub_entry = (struct elf32_hppa_stub_hash_entry *) gen_entry;
1019 htab = (struct elf32_hppa_link_hash_table *) in_arg;
1020
1021 if (stub_entry->stub_type == hppa_stub_long_branch)
1022 size = 8;
1023 else if (stub_entry->stub_type == hppa_stub_long_branch_shared)
1024 size = 12;
1025 else if (stub_entry->stub_type == hppa_stub_export)
1026 size = 24;
1027 else /* hppa_stub_import or hppa_stub_import_shared. */
1028 {
1029 if (htab->multi_subspace)
1030 size = 28;
1031 else
1032 size = 16;
1033 }
1034
1035 stub_entry->stub_sec->_raw_size += size;
1036 return true;
1037 }
1038
1039 /* Return nonzero if ABFD represents an HPPA ELF32 file.
1040 Additionally we set the default architecture and machine. */
1041
1042 static boolean
1043 elf32_hppa_object_p (abfd)
1044 bfd *abfd;
1045 {
1046 Elf_Internal_Ehdr * i_ehdrp;
1047 unsigned int flags;
1048
1049 i_ehdrp = elf_elfheader (abfd);
1050 if (strcmp (bfd_get_target (abfd), "elf32-hppa-linux") == 0)
1051 {
1052 if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_LINUX)
1053 return false;
1054 }
1055 else
1056 {
1057 if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_HPUX)
1058 return false;
1059 }
1060
1061 flags = i_ehdrp->e_flags;
1062 switch (flags & (EF_PARISC_ARCH | EF_PARISC_WIDE))
1063 {
1064 case EFA_PARISC_1_0:
1065 return bfd_default_set_arch_mach (abfd, bfd_arch_hppa, 10);
1066 case EFA_PARISC_1_1:
1067 return bfd_default_set_arch_mach (abfd, bfd_arch_hppa, 11);
1068 case EFA_PARISC_2_0:
1069 return bfd_default_set_arch_mach (abfd, bfd_arch_hppa, 20);
1070 case EFA_PARISC_2_0 | EF_PARISC_WIDE:
1071 return bfd_default_set_arch_mach (abfd, bfd_arch_hppa, 25);
1072 }
1073 return true;
1074 }
1075
1076 /* Undo the generic ELF code's subtraction of section->vma from the
1077 value of each external symbol. */
1078
1079 static boolean
1080 elf32_hppa_add_symbol_hook (abfd, info, sym, namep, flagsp, secp, valp)
1081 bfd *abfd ATTRIBUTE_UNUSED;
1082 struct bfd_link_info *info ATTRIBUTE_UNUSED;
1083 const Elf_Internal_Sym *sym ATTRIBUTE_UNUSED;
1084 const char **namep ATTRIBUTE_UNUSED;
1085 flagword *flagsp ATTRIBUTE_UNUSED;
1086 asection **secp;
1087 bfd_vma *valp;
1088 {
1089 *valp += (*secp)->vma;
1090 return true;
1091 }
1092
1093 /* Create the .plt and .got sections, and set up our hash table
1094 short-cuts to various dynamic sections. */
1095
1096 static boolean
1097 elf32_hppa_create_dynamic_sections (abfd, info)
1098 bfd *abfd;
1099 struct bfd_link_info *info;
1100 {
1101 struct elf32_hppa_link_hash_table *htab;
1102
1103 /* Don't try to create the .plt and .got twice. */
1104 htab = hppa_link_hash_table (info);
1105 if (htab->splt != NULL)
1106 return true;
1107
1108 /* Call the generic code to do most of the work. */
1109 if (! _bfd_elf_create_dynamic_sections (abfd, info))
1110 return false;
1111
1112 htab->splt = bfd_get_section_by_name (abfd, ".plt");
1113 htab->srelplt = bfd_get_section_by_name (abfd, ".rela.plt");
1114
1115 htab->sgot = bfd_get_section_by_name (abfd, ".got");
1116 htab->srelgot = bfd_make_section (abfd, ".rela.got");
1117 if (htab->srelgot == NULL
1118 || ! bfd_set_section_flags (abfd, htab->srelgot,
1119 (SEC_ALLOC
1120 | SEC_LOAD
1121 | SEC_HAS_CONTENTS
1122 | SEC_IN_MEMORY
1123 | SEC_LINKER_CREATED
1124 | SEC_READONLY))
1125 || ! bfd_set_section_alignment (abfd, htab->srelgot, 2))
1126 return false;
1127
1128 htab->sdynbss = bfd_get_section_by_name (abfd, ".dynbss");
1129 htab->srelbss = bfd_get_section_by_name (abfd, ".rela.bss");
1130
1131 return true;
1132 }
1133
1134 /* Copy the extra info we tack onto an elf_link_hash_entry. */
1135
1136 static void
1137 elf32_hppa_copy_indirect_symbol (dir, ind)
1138 struct elf_link_hash_entry *dir, *ind;
1139 {
1140 struct elf32_hppa_link_hash_entry *edir, *eind;
1141
1142 edir = (struct elf32_hppa_link_hash_entry *) dir;
1143 eind = (struct elf32_hppa_link_hash_entry *) ind;
1144
1145 if (edir->dyn_relocs == NULL)
1146 {
1147 edir->dyn_relocs = eind->dyn_relocs;
1148 eind->dyn_relocs = NULL;
1149 }
1150 else if (eind->dyn_relocs != NULL)
1151 abort ();
1152
1153 _bfd_elf_link_hash_copy_indirect (dir, ind);
1154 }
1155
1156 /* Look through the relocs for a section during the first phase, and
1157 calculate needed space in the global offset table, procedure linkage
1158 table, and dynamic reloc sections. At this point we haven't
1159 necessarily read all the input files. */
1160
1161 static boolean
1162 elf32_hppa_check_relocs (abfd, info, sec, relocs)
1163 bfd *abfd;
1164 struct bfd_link_info *info;
1165 asection *sec;
1166 const Elf_Internal_Rela *relocs;
1167 {
1168 Elf_Internal_Shdr *symtab_hdr;
1169 struct elf_link_hash_entry **sym_hashes;
1170 const Elf_Internal_Rela *rel;
1171 const Elf_Internal_Rela *rel_end;
1172 struct elf32_hppa_link_hash_table *htab;
1173 asection *sreloc;
1174 asection *stubreloc;
1175
1176 if (info->relocateable)
1177 return true;
1178
1179 htab = hppa_link_hash_table (info);
1180 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1181 sym_hashes = elf_sym_hashes (abfd);
1182 sreloc = NULL;
1183 stubreloc = NULL;
1184
1185 rel_end = relocs + sec->reloc_count;
1186 for (rel = relocs; rel < rel_end; rel++)
1187 {
1188 enum {
1189 NEED_GOT = 1,
1190 NEED_PLT = 2,
1191 NEED_DYNREL = 4,
1192 PLT_PLABEL = 8
1193 };
1194
1195 unsigned int r_symndx, r_type;
1196 struct elf32_hppa_link_hash_entry *h;
1197 int need_entry;
1198
1199 r_symndx = ELF32_R_SYM (rel->r_info);
1200
1201 if (r_symndx < symtab_hdr->sh_info)
1202 h = NULL;
1203 else
1204 h = ((struct elf32_hppa_link_hash_entry *)
1205 sym_hashes[r_symndx - symtab_hdr->sh_info]);
1206
1207 r_type = ELF32_R_TYPE (rel->r_info);
1208
1209 switch (r_type)
1210 {
1211 case R_PARISC_DLTIND14F:
1212 case R_PARISC_DLTIND14R:
1213 case R_PARISC_DLTIND21L:
1214 /* This symbol requires a global offset table entry. */
1215 need_entry = NEED_GOT;
1216
1217 /* Mark this section as containing PIC code. */
1218 sec->flags |= SEC_HAS_GOT_REF;
1219 break;
1220
1221 case R_PARISC_PLABEL14R: /* "Official" procedure labels. */
1222 case R_PARISC_PLABEL21L:
1223 case R_PARISC_PLABEL32:
1224 /* If the addend is non-zero, we break badly. */
1225 if (rel->r_addend != 0)
1226 abort ();
1227
1228 /* If we are creating a shared library, then we need to
1229 create a PLT entry for all PLABELs, because PLABELs with
1230 local symbols may be passed via a pointer to another
1231 object. Additionally, output a dynamic relocation
1232 pointing to the PLT entry.
1233 For executables, the original 32-bit ABI allowed two
1234 different styles of PLABELs (function pointers): For
1235 global functions, the PLABEL word points into the .plt
1236 two bytes past a (function address, gp) pair, and for
1237 local functions the PLABEL points directly at the
1238 function. The magic +2 for the first type allows us to
1239 differentiate between the two. As you can imagine, this
1240 is a real pain when it comes to generating code to call
1241 functions indirectly or to compare function pointers.
1242 We avoid the mess by always pointing a PLABEL into the
1243 .plt, even for local functions. */
1244 need_entry = PLT_PLABEL | NEED_PLT | NEED_DYNREL;
1245 break;
1246
1247 case R_PARISC_PCREL12F:
1248 htab->has_12bit_branch = 1;
1249 /* Fall thru. */
1250 case R_PARISC_PCREL17C:
1251 case R_PARISC_PCREL17F:
1252 htab->has_17bit_branch = 1;
1253 /* Fall thru. */
1254 case R_PARISC_PCREL22F:
1255 /* Function calls might need to go through the .plt, and
1256 might require long branch stubs. */
1257 if (h == NULL)
1258 {
1259 /* We know local syms won't need a .plt entry, and if
1260 they need a long branch stub we can't guarantee that
1261 we can reach the stub. So just flag an error later
1262 if we're doing a shared link and find we need a long
1263 branch stub. */
1264 continue;
1265 }
1266 else
1267 {
1268 /* Global symbols will need a .plt entry if they remain
1269 global, and in most cases won't need a long branch
1270 stub. Unfortunately, we have to cater for the case
1271 where a symbol is forced local by versioning, or due
1272 to symbolic linking, and we lose the .plt entry. */
1273 need_entry = NEED_PLT;
1274 if (h->elf.type == STT_PARISC_MILLI)
1275 need_entry = 0;
1276 }
1277 break;
1278
1279 case R_PARISC_SEGBASE: /* Used to set segment base. */
1280 case R_PARISC_SEGREL32: /* Relative reloc, used for unwind. */
1281 case R_PARISC_PCREL14F: /* PC relative load/store. */
1282 case R_PARISC_PCREL14R:
1283 case R_PARISC_PCREL17R: /* External branches. */
1284 case R_PARISC_PCREL21L: /* As above, and for load/store too. */
1285 /* We don't need to propagate the relocation if linking a
1286 shared object since these are section relative. */
1287 continue;
1288
1289 case R_PARISC_DPREL14F: /* Used for gp rel data load/store. */
1290 case R_PARISC_DPREL14R:
1291 case R_PARISC_DPREL21L:
1292 if (info->shared)
1293 {
1294 (*_bfd_error_handler)
1295 (_("%s: relocation %s can not be used when making a shared object; recompile with -fPIC"),
1296 bfd_archive_filename (abfd),
1297 elf_hppa_howto_table[r_type].name);
1298 bfd_set_error (bfd_error_bad_value);
1299 return false;
1300 }
1301 /* Fall through. */
1302
1303 case R_PARISC_DIR17F: /* Used for external branches. */
1304 case R_PARISC_DIR17R:
1305 case R_PARISC_DIR14F: /* Used for load/store from absolute locn. */
1306 case R_PARISC_DIR14R:
1307 case R_PARISC_DIR21L: /* As above, and for ext branches too. */
1308 #if 1
1309 /* Help debug shared library creation. Any of the above
1310 relocs can be used in shared libs, but they may cause
1311 pages to become unshared. */
1312 if (info->shared)
1313 {
1314 (*_bfd_error_handler)
1315 (_("%s: relocation %s should not be used when making a shared object; recompile with -fPIC"),
1316 bfd_archive_filename (abfd),
1317 elf_hppa_howto_table[r_type].name);
1318 }
1319 /* Fall through. */
1320 #endif
1321
1322 case R_PARISC_DIR32: /* .word relocs. */
1323 /* We may want to output a dynamic relocation later. */
1324 need_entry = NEED_DYNREL;
1325 break;
1326
1327 /* This relocation describes the C++ object vtable hierarchy.
1328 Reconstruct it for later use during GC. */
1329 case R_PARISC_GNU_VTINHERIT:
1330 if (!_bfd_elf32_gc_record_vtinherit (abfd, sec,
1331 &h->elf, rel->r_offset))
1332 return false;
1333 continue;
1334
1335 /* This relocation describes which C++ vtable entries are actually
1336 used. Record for later use during GC. */
1337 case R_PARISC_GNU_VTENTRY:
1338 if (!_bfd_elf32_gc_record_vtentry (abfd, sec,
1339 &h->elf, rel->r_addend))
1340 return false;
1341 continue;
1342
1343 default:
1344 continue;
1345 }
1346
1347 /* Now carry out our orders. */
1348 if (need_entry & NEED_GOT)
1349 {
1350 /* Allocate space for a GOT entry, as well as a dynamic
1351 relocation for this entry. */
1352 if (htab->sgot == NULL)
1353 {
1354 if (htab->elf.dynobj == NULL)
1355 htab->elf.dynobj = abfd;
1356 if (!elf32_hppa_create_dynamic_sections (htab->elf.dynobj, info))
1357 return false;
1358 }
1359
1360 if (h != NULL)
1361 {
1362 h->elf.got.refcount += 1;
1363 }
1364 else
1365 {
1366 bfd_signed_vma *local_got_refcounts;
1367
1368 /* This is a global offset table entry for a local symbol. */
1369 local_got_refcounts = elf_local_got_refcounts (abfd);
1370 if (local_got_refcounts == NULL)
1371 {
1372 bfd_size_type size;
1373
1374 /* Allocate space for local got offsets and local
1375 plt offsets. Done this way to save polluting
1376 elf_obj_tdata with another target specific
1377 pointer. */
1378 size = symtab_hdr->sh_info;
1379 size *= 2 * sizeof (bfd_signed_vma);
1380 local_got_refcounts = ((bfd_signed_vma *)
1381 bfd_zalloc (abfd, size));
1382 if (local_got_refcounts == NULL)
1383 return false;
1384 elf_local_got_refcounts (abfd) = local_got_refcounts;
1385 }
1386 local_got_refcounts[r_symndx] += 1;
1387 }
1388 }
1389
1390 if (need_entry & NEED_PLT)
1391 {
1392 /* If we are creating a shared library, and this is a reloc
1393 against a weak symbol or a global symbol in a dynamic
1394 object, then we will be creating an import stub and a
1395 .plt entry for the symbol. Similarly, on a normal link
1396 to symbols defined in a dynamic object we'll need the
1397 import stub and a .plt entry. We don't know yet whether
1398 the symbol is defined or not, so make an entry anyway and
1399 clean up later in adjust_dynamic_symbol. */
1400 if ((sec->flags & SEC_ALLOC) != 0)
1401 {
1402 if (h != NULL)
1403 {
1404 h->elf.elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
1405 h->elf.plt.refcount += 1;
1406
1407 /* If this .plt entry is for a plabel, mark it so
1408 that adjust_dynamic_symbol will keep the entry
1409 even if it appears to be local. */
1410 if (need_entry & PLT_PLABEL)
1411 h->plabel = 1;
1412 }
1413 else if (need_entry & PLT_PLABEL)
1414 {
1415 bfd_signed_vma *local_got_refcounts;
1416 bfd_signed_vma *local_plt_refcounts;
1417
1418 local_got_refcounts = elf_local_got_refcounts (abfd);
1419 if (local_got_refcounts == NULL)
1420 {
1421 bfd_size_type size;
1422
1423 /* Allocate space for local got offsets and local
1424 plt offsets. */
1425 size = symtab_hdr->sh_info;
1426 size *= 2 * sizeof (bfd_signed_vma);
1427 local_got_refcounts = ((bfd_signed_vma *)
1428 bfd_zalloc (abfd, size));
1429 if (local_got_refcounts == NULL)
1430 return false;
1431 elf_local_got_refcounts (abfd) = local_got_refcounts;
1432 }
1433 local_plt_refcounts = (local_got_refcounts
1434 + symtab_hdr->sh_info);
1435 local_plt_refcounts[r_symndx] += 1;
1436 }
1437 }
1438 }
1439
1440 if (need_entry & NEED_DYNREL)
1441 {
1442 /* Flag this symbol as having a non-got, non-plt reference
1443 so that we generate copy relocs if it turns out to be
1444 dynamic. */
1445 if (h != NULL && !info->shared)
1446 h->elf.elf_link_hash_flags |= ELF_LINK_NON_GOT_REF;
1447
1448 /* If we are creating a shared library then we need to copy
1449 the reloc into the shared library. However, if we are
1450 linking with -Bsymbolic, we need only copy absolute
1451 relocs or relocs against symbols that are not defined in
1452 an object we are including in the link. PC- or DP- or
1453 DLT-relative relocs against any local sym or global sym
1454 with DEF_REGULAR set, can be discarded. At this point we
1455 have not seen all the input files, so it is possible that
1456 DEF_REGULAR is not set now but will be set later (it is
1457 never cleared). We account for that possibility below by
1458 storing information in the dyn_relocs field of the
1459 hash table entry.
1460
1461 A similar situation to the -Bsymbolic case occurs when
1462 creating shared libraries and symbol visibility changes
1463 render the symbol local.
1464
1465 As it turns out, all the relocs we will be creating here
1466 are absolute, so we cannot remove them on -Bsymbolic
1467 links or visibility changes anyway. A STUB_REL reloc
1468 is absolute too, as in that case it is the reloc in the
1469 stub we will be creating, rather than copying the PCREL
1470 reloc in the branch.
1471
1472 If on the other hand, we are creating an executable, we
1473 may need to keep relocations for symbols satisfied by a
1474 dynamic library if we manage to avoid copy relocs for the
1475 symbol. */
1476 if ((info->shared
1477 && (sec->flags & SEC_ALLOC) != 0
1478 && (IS_ABSOLUTE_RELOC (r_type)
1479 || (h != NULL
1480 && (!info->symbolic
1481 || h->elf.root.type == bfd_link_hash_defweak
1482 || (h->elf.elf_link_hash_flags
1483 & ELF_LINK_HASH_DEF_REGULAR) == 0))))
1484 || (!info->shared
1485 && (sec->flags & SEC_ALLOC) != 0
1486 && h != NULL
1487 && (h->elf.root.type == bfd_link_hash_defweak
1488 || (h->elf.elf_link_hash_flags
1489 & ELF_LINK_HASH_DEF_REGULAR) == 0)))
1490 {
1491 /* Create a reloc section in dynobj and make room for
1492 this reloc. */
1493 if (sreloc == NULL)
1494 {
1495 char *name;
1496 bfd *dynobj;
1497
1498 name = (bfd_elf_string_from_elf_section
1499 (abfd,
1500 elf_elfheader (abfd)->e_shstrndx,
1501 elf_section_data (sec)->rel_hdr.sh_name));
1502 if (name == NULL)
1503 {
1504 (*_bfd_error_handler)
1505 (_("Could not find relocation section for %s"),
1506 sec->name);
1507 bfd_set_error (bfd_error_bad_value);
1508 return false;
1509 }
1510
1511 if (htab->elf.dynobj == NULL)
1512 htab->elf.dynobj = abfd;
1513
1514 dynobj = htab->elf.dynobj;
1515 sreloc = bfd_get_section_by_name (dynobj, name);
1516 if (sreloc == NULL)
1517 {
1518 flagword flags;
1519
1520 sreloc = bfd_make_section (dynobj, name);
1521 flags = (SEC_HAS_CONTENTS | SEC_READONLY
1522 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
1523 if ((sec->flags & SEC_ALLOC) != 0)
1524 flags |= SEC_ALLOC | SEC_LOAD;
1525 if (sreloc == NULL
1526 || !bfd_set_section_flags (dynobj, sreloc, flags)
1527 || !bfd_set_section_alignment (dynobj, sreloc, 2))
1528 return false;
1529 }
1530
1531 elf_section_data (sec)->sreloc = sreloc;
1532 }
1533
1534 /* If this is a global symbol, we count the number of
1535 relocations we need for this symbol. */
1536 if (h != NULL)
1537 {
1538 struct elf32_hppa_dyn_reloc_entry *p;
1539
1540 p = h->dyn_relocs;
1541 if (p == NULL || p->sec != sec)
1542 {
1543 p = ((struct elf32_hppa_dyn_reloc_entry *)
1544 bfd_alloc (htab->elf.dynobj,
1545 (bfd_size_type) sizeof *p));
1546 if (p == NULL)
1547 return false;
1548 p->next = h->dyn_relocs;
1549 h->dyn_relocs = p;
1550 p->sec = sec;
1551 p->count = 0;
1552 #if RELATIVE_DYNRELOCS
1553 p->relative_count = 0;
1554 #endif
1555 }
1556
1557 p->count += 1;
1558 #if RELATIVE_DYNRELOCS
1559 if (!IS_ABSOLUTE_RELOC (rtype))
1560 p->relative_count += 1;
1561 #endif
1562 }
1563 else
1564 {
1565 /* Track dynamic relocs needed for local syms too. */
1566 elf_section_data (sec)->local_dynrel += 1;
1567 }
1568 }
1569 }
1570 }
1571
1572 return true;
1573 }
1574
1575 /* Return the section that should be marked against garbage collection
1576 for a given relocation. */
1577
1578 static asection *
1579 elf32_hppa_gc_mark_hook (abfd, info, rel, h, sym)
1580 bfd *abfd;
1581 struct bfd_link_info *info ATTRIBUTE_UNUSED;
1582 Elf_Internal_Rela *rel;
1583 struct elf_link_hash_entry *h;
1584 Elf_Internal_Sym *sym;
1585 {
1586 if (h != NULL)
1587 {
1588 switch ((unsigned int) ELF32_R_TYPE (rel->r_info))
1589 {
1590 case R_PARISC_GNU_VTINHERIT:
1591 case R_PARISC_GNU_VTENTRY:
1592 break;
1593
1594 default:
1595 switch (h->root.type)
1596 {
1597 case bfd_link_hash_defined:
1598 case bfd_link_hash_defweak:
1599 return h->root.u.def.section;
1600
1601 case bfd_link_hash_common:
1602 return h->root.u.c.p->section;
1603
1604 default:
1605 break;
1606 }
1607 }
1608 }
1609 else
1610 {
1611 if (!(elf_bad_symtab (abfd)
1612 && ELF_ST_BIND (sym->st_info) != STB_LOCAL)
1613 && ! ((sym->st_shndx <= 0 || sym->st_shndx >= SHN_LORESERVE)
1614 && sym->st_shndx != SHN_COMMON))
1615 {
1616 return bfd_section_from_elf_index (abfd, sym->st_shndx);
1617 }
1618 }
1619
1620 return NULL;
1621 }
1622
1623 /* Update the got and plt entry reference counts for the section being
1624 removed. */
1625
1626 static boolean
1627 elf32_hppa_gc_sweep_hook (abfd, info, sec, relocs)
1628 bfd *abfd;
1629 struct bfd_link_info *info ATTRIBUTE_UNUSED;
1630 asection *sec;
1631 const Elf_Internal_Rela *relocs;
1632 {
1633 Elf_Internal_Shdr *symtab_hdr;
1634 struct elf_link_hash_entry **sym_hashes;
1635 bfd_signed_vma *local_got_refcounts;
1636 bfd_signed_vma *local_plt_refcounts;
1637 const Elf_Internal_Rela *rel, *relend;
1638 unsigned long r_symndx;
1639 struct elf_link_hash_entry *h;
1640 struct elf32_hppa_link_hash_table *htab;
1641 bfd *dynobj;
1642
1643 elf_section_data (sec)->local_dynrel = 0;
1644
1645 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1646 sym_hashes = elf_sym_hashes (abfd);
1647 local_got_refcounts = elf_local_got_refcounts (abfd);
1648 local_plt_refcounts = local_got_refcounts;
1649 if (local_plt_refcounts != NULL)
1650 local_plt_refcounts += symtab_hdr->sh_info;
1651 htab = hppa_link_hash_table (info);
1652 dynobj = htab->elf.dynobj;
1653 if (dynobj == NULL)
1654 return true;
1655
1656 relend = relocs + sec->reloc_count;
1657 for (rel = relocs; rel < relend; rel++)
1658 switch ((unsigned int) ELF32_R_TYPE (rel->r_info))
1659 {
1660 case R_PARISC_DLTIND14F:
1661 case R_PARISC_DLTIND14R:
1662 case R_PARISC_DLTIND21L:
1663 r_symndx = ELF32_R_SYM (rel->r_info);
1664 if (r_symndx >= symtab_hdr->sh_info)
1665 {
1666 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1667 if (h->got.refcount > 0)
1668 h->got.refcount -= 1;
1669 }
1670 else if (local_got_refcounts != NULL)
1671 {
1672 if (local_got_refcounts[r_symndx] > 0)
1673 local_got_refcounts[r_symndx] -= 1;
1674 }
1675 break;
1676
1677 case R_PARISC_PCREL12F:
1678 case R_PARISC_PCREL17C:
1679 case R_PARISC_PCREL17F:
1680 case R_PARISC_PCREL22F:
1681 r_symndx = ELF32_R_SYM (rel->r_info);
1682 if (r_symndx >= symtab_hdr->sh_info)
1683 {
1684 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1685 if (h->plt.refcount > 0)
1686 h->plt.refcount -= 1;
1687 }
1688 break;
1689
1690 case R_PARISC_PLABEL14R:
1691 case R_PARISC_PLABEL21L:
1692 case R_PARISC_PLABEL32:
1693 r_symndx = ELF32_R_SYM (rel->r_info);
1694 if (r_symndx >= symtab_hdr->sh_info)
1695 {
1696 struct elf32_hppa_link_hash_entry *eh;
1697 struct elf32_hppa_dyn_reloc_entry **pp;
1698 struct elf32_hppa_dyn_reloc_entry *p;
1699
1700 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1701
1702 if (h->plt.refcount > 0)
1703 h->plt.refcount -= 1;
1704
1705 eh = (struct elf32_hppa_link_hash_entry *) h;
1706
1707 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
1708 if (p->sec == sec)
1709 {
1710 #if RELATIVE_DYNRELOCS
1711 if (!IS_ABSOLUTE_RELOC (rtype))
1712 p->relative_count -= 1;
1713 #endif
1714 p->count -= 1;
1715 if (p->count == 0)
1716 *pp = p->next;
1717 break;
1718 }
1719 }
1720 else if (local_plt_refcounts != NULL)
1721 {
1722 if (local_plt_refcounts[r_symndx] > 0)
1723 local_plt_refcounts[r_symndx] -= 1;
1724 }
1725 break;
1726
1727 case R_PARISC_DIR32:
1728 r_symndx = ELF32_R_SYM (rel->r_info);
1729 if (r_symndx >= symtab_hdr->sh_info)
1730 {
1731 struct elf32_hppa_link_hash_entry *eh;
1732 struct elf32_hppa_dyn_reloc_entry **pp;
1733 struct elf32_hppa_dyn_reloc_entry *p;
1734
1735 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1736
1737 eh = (struct elf32_hppa_link_hash_entry *) h;
1738
1739 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
1740 if (p->sec == sec)
1741 {
1742 #if RELATIVE_DYNRELOCS
1743 if (!IS_ABSOLUTE_RELOC (R_PARISC_DIR32))
1744 p->relative_count -= 1;
1745 #endif
1746 p->count -= 1;
1747 if (p->count == 0)
1748 *pp = p->next;
1749 break;
1750 }
1751 }
1752 break;
1753
1754 default:
1755 break;
1756 }
1757
1758 return true;
1759 }
1760
1761 /* Our own version of hide_symbol, so that we can keep plt entries for
1762 plabels. */
1763
1764 static void
1765 elf32_hppa_hide_symbol (info, h)
1766 struct bfd_link_info *info ATTRIBUTE_UNUSED;
1767 struct elf_link_hash_entry *h;
1768 {
1769 if ((h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0)
1770 h->dynindx = -1;
1771 if (! ((struct elf32_hppa_link_hash_entry *) h)->plabel)
1772 {
1773 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
1774 h->plt.offset = (bfd_vma) -1;
1775 }
1776 }
1777
1778 /* This is the condition under which elf32_hppa_finish_dynamic_symbol
1779 will be called from elflink.h. If elflink.h doesn't call our
1780 finish_dynamic_symbol routine, we'll need to do something about
1781 initializing any .plt and .got entries in elf32_hppa_relocate_section. */
1782 #define WILL_CALL_FINISH_DYNAMIC_SYMBOL(DYN, INFO, H) \
1783 ((DYN) \
1784 && ((INFO)->shared \
1785 || ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0) \
1786 && ((H)->dynindx != -1 \
1787 || ((H)->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0))
1788
1789 /* Adjust a symbol defined by a dynamic object and referenced by a
1790 regular object. The current definition is in some section of the
1791 dynamic object, but we're not including those sections. We have to
1792 change the definition to something the rest of the link can
1793 understand. */
1794
1795 static boolean
1796 elf32_hppa_adjust_dynamic_symbol (info, h)
1797 struct bfd_link_info *info;
1798 struct elf_link_hash_entry *h;
1799 {
1800 struct elf32_hppa_link_hash_table *htab;
1801 struct elf32_hppa_link_hash_entry *eh;
1802 struct elf32_hppa_dyn_reloc_entry *p;
1803 asection *s;
1804 unsigned int power_of_two;
1805
1806 /* If this is a function, put it in the procedure linkage table. We
1807 will fill in the contents of the procedure linkage table later,
1808 when we know the address of the .got section. */
1809 if (h->type == STT_FUNC
1810 || (h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) != 0)
1811 {
1812 if (!info->shared
1813 && h->plt.refcount > 0
1814 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) != 0
1815 && (h->root.u.def.section->flags & SEC_HAS_GOT_REF) != 0)
1816 {
1817 ((struct elf32_hppa_link_hash_entry *) h)->maybe_pic_call = 1;
1818 }
1819
1820 if (h->plt.refcount <= 0
1821 || ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) != 0
1822 && h->root.type != bfd_link_hash_defweak
1823 && ! ((struct elf32_hppa_link_hash_entry *) h)->plabel
1824 && (!info->shared || info->symbolic)))
1825 {
1826 /* The .plt entry is not needed when:
1827 a) Garbage collection has removed all references to the
1828 symbol, or
1829 b) We know for certain the symbol is defined in this
1830 object, and it's not a weak definition, nor is the symbol
1831 used by a plabel relocation. Either this object is the
1832 application or we are doing a shared symbolic link. */
1833
1834 /* As a special sop to the hppa ABI, we keep a .plt entry
1835 for functions in sections containing PIC code. */
1836 if (((struct elf32_hppa_link_hash_entry *) h)->maybe_pic_call)
1837 ((struct elf32_hppa_link_hash_entry *) h)->pic_call = 1;
1838 else
1839 {
1840 h->plt.offset = (bfd_vma) -1;
1841 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
1842 }
1843 }
1844
1845 return true;
1846 }
1847
1848 /* If this is a weak symbol, and there is a real definition, the
1849 processor independent code will have arranged for us to see the
1850 real definition first, and we can just use the same value. */
1851 if (h->weakdef != NULL)
1852 {
1853 if (h->weakdef->root.type != bfd_link_hash_defined
1854 && h->weakdef->root.type != bfd_link_hash_defweak)
1855 abort ();
1856 h->root.u.def.section = h->weakdef->root.u.def.section;
1857 h->root.u.def.value = h->weakdef->root.u.def.value;
1858 return true;
1859 }
1860
1861 /* This is a reference to a symbol defined by a dynamic object which
1862 is not a function. */
1863
1864 /* If we are creating a shared library, we must presume that the
1865 only references to the symbol are via the global offset table.
1866 For such cases we need not do anything here; the relocations will
1867 be handled correctly by relocate_section. */
1868 if (info->shared)
1869 return true;
1870
1871 /* If there are no references to this symbol that do not use the
1872 GOT, we don't need to generate a copy reloc. */
1873 if ((h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0)
1874 return true;
1875
1876 eh = (struct elf32_hppa_link_hash_entry *) h;
1877 for (p = eh->dyn_relocs; p != NULL; p = p->next)
1878 {
1879 s = p->sec->output_section;
1880 if (s != NULL && (s->flags & SEC_READONLY) != 0)
1881 break;
1882 }
1883
1884 /* If we didn't find any dynamic relocs in read-only sections, then
1885 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
1886 if (p == NULL)
1887 {
1888 h->elf_link_hash_flags &= ~ELF_LINK_NON_GOT_REF;
1889 return true;
1890 }
1891
1892 /* We must allocate the symbol in our .dynbss section, which will
1893 become part of the .bss section of the executable. There will be
1894 an entry for this symbol in the .dynsym section. The dynamic
1895 object will contain position independent code, so all references
1896 from the dynamic object to this symbol will go through the global
1897 offset table. The dynamic linker will use the .dynsym entry to
1898 determine the address it must put in the global offset table, so
1899 both the dynamic object and the regular object will refer to the
1900 same memory location for the variable. */
1901
1902 htab = hppa_link_hash_table (info);
1903
1904 /* We must generate a COPY reloc to tell the dynamic linker to
1905 copy the initial value out of the dynamic object and into the
1906 runtime process image. */
1907 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
1908 {
1909 htab->srelbss->_raw_size += sizeof (Elf32_External_Rela);
1910 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_COPY;
1911 }
1912
1913 /* We need to figure out the alignment required for this symbol. I
1914 have no idea how other ELF linkers handle this. */
1915
1916 power_of_two = bfd_log2 (h->size);
1917 if (power_of_two > 3)
1918 power_of_two = 3;
1919
1920 /* Apply the required alignment. */
1921 s = htab->sdynbss;
1922 s->_raw_size = BFD_ALIGN (s->_raw_size,
1923 (bfd_size_type) (1 << power_of_two));
1924 if (power_of_two > bfd_get_section_alignment (htab->elf.dynobj, s))
1925 {
1926 if (! bfd_set_section_alignment (htab->elf.dynobj, s, power_of_two))
1927 return false;
1928 }
1929
1930 /* Define the symbol as being at this point in the section. */
1931 h->root.u.def.section = s;
1932 h->root.u.def.value = s->_raw_size;
1933
1934 /* Increment the section size to make room for the symbol. */
1935 s->_raw_size += h->size;
1936
1937 return true;
1938 }
1939
1940 /* Called via elf_link_hash_traverse to create .plt entries for an
1941 application that uses statically linked PIC functions. Similar to
1942 the first part of elf32_hppa_adjust_dynamic_symbol. */
1943
1944 static boolean
1945 hppa_handle_PIC_calls (h, inf)
1946 struct elf_link_hash_entry *h;
1947 PTR inf ATTRIBUTE_UNUSED;
1948 {
1949 if (! (h->plt.refcount > 0
1950 && (h->root.type == bfd_link_hash_defined
1951 || h->root.type == bfd_link_hash_defweak)
1952 && (h->root.u.def.section->flags & SEC_HAS_GOT_REF) != 0))
1953 {
1954 h->plt.offset = (bfd_vma) -1;
1955 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
1956 return true;
1957 }
1958
1959 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
1960 ((struct elf32_hppa_link_hash_entry *) h)->maybe_pic_call = 1;
1961 ((struct elf32_hppa_link_hash_entry *) h)->pic_call = 1;
1962
1963 return true;
1964 }
1965
1966 /* Allocate space in .plt, .got and associated reloc sections for
1967 global syms. */
1968
1969 static boolean
1970 allocate_dynrelocs (h, inf)
1971 struct elf_link_hash_entry *h;
1972 PTR inf;
1973 {
1974 struct bfd_link_info *info;
1975 struct elf32_hppa_link_hash_table *htab;
1976 asection *s;
1977 struct elf32_hppa_link_hash_entry *eh;
1978 struct elf32_hppa_dyn_reloc_entry *p;
1979
1980 if (h->root.type == bfd_link_hash_indirect
1981 || h->root.type == bfd_link_hash_warning)
1982 return true;
1983
1984 info = (struct bfd_link_info *) inf;
1985 htab = hppa_link_hash_table (info);
1986 if ((htab->elf.dynamic_sections_created
1987 && h->plt.refcount > 0)
1988 || ((struct elf32_hppa_link_hash_entry *) h)->pic_call)
1989 {
1990 /* Make sure this symbol is output as a dynamic symbol.
1991 Undefined weak syms won't yet be marked as dynamic. */
1992 if (h->dynindx == -1
1993 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0
1994 && h->type != STT_PARISC_MILLI
1995 && !((struct elf32_hppa_link_hash_entry *) h)->pic_call)
1996 {
1997 if (! bfd_elf32_link_record_dynamic_symbol (info, h))
1998 return false;
1999 }
2000
2001 if (((struct elf32_hppa_link_hash_entry *) h)->pic_call
2002 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, info, h))
2003 {
2004 /* Make an entry in the .plt section. */
2005 s = htab->splt;
2006 h->plt.offset = s->_raw_size;
2007 if (PLABEL_PLT_ENTRY_SIZE != PLT_ENTRY_SIZE
2008 && ((struct elf32_hppa_link_hash_entry *) h)->plabel
2009 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
2010 {
2011 /* Add some extra space for the dynamic linker to use. */
2012 s->_raw_size += PLABEL_PLT_ENTRY_SIZE;
2013 }
2014 else
2015 s->_raw_size += PLT_ENTRY_SIZE;
2016
2017 if (! ((struct elf32_hppa_link_hash_entry *) h)->pic_call)
2018 {
2019 /* We also need to make an entry in the .rela.plt section. */
2020 htab->srelplt->_raw_size += sizeof (Elf32_External_Rela);
2021 htab->need_plt_stub = 1;
2022 }
2023 }
2024 else
2025 {
2026 h->plt.offset = (bfd_vma) -1;
2027 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
2028 }
2029 }
2030 else
2031 {
2032 h->plt.offset = (bfd_vma) -1;
2033 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
2034 }
2035
2036 if (h->got.refcount > 0)
2037 {
2038 boolean dyn;
2039
2040 /* Make sure this symbol is output as a dynamic symbol.
2041 Undefined weak syms won't yet be marked as dynamic. */
2042 if (h->dynindx == -1
2043 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0
2044 && h->type != STT_PARISC_MILLI)
2045 {
2046 if (! bfd_elf32_link_record_dynamic_symbol (info, h))
2047 return false;
2048 }
2049
2050 s = htab->sgot;
2051 h->got.offset = s->_raw_size;
2052 s->_raw_size += GOT_ENTRY_SIZE;
2053 dyn = htab->elf.dynamic_sections_created;
2054 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info, h))
2055 htab->srelgot->_raw_size += sizeof (Elf32_External_Rela);
2056 }
2057 else
2058 h->got.offset = (bfd_vma) -1;
2059
2060 eh = (struct elf32_hppa_link_hash_entry *) h;
2061 if (eh->dyn_relocs == NULL)
2062 return true;
2063
2064 /* If this is a -Bsymbolic shared link, then we need to discard all
2065 space allocated for dynamic pc-relative relocs against symbols
2066 defined in a regular object. For the normal shared case, discard
2067 space for relocs that have become local due to symbol visibility
2068 changes. */
2069 if (info->shared)
2070 {
2071 #if RELATIVE_DYNRELOCS
2072 if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) != 0
2073 && ((h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0
2074 || info->symbolic))
2075 {
2076 struct elf32_hppa_dyn_reloc_entry **pp;
2077
2078 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2079 {
2080 p->count -= p->relative_count;
2081 p->relative_count = 0;
2082 if (p->count == 0)
2083 *pp = p->next;
2084 else
2085 pp = &p->next;
2086 }
2087 }
2088 #endif
2089 }
2090 else
2091 {
2092 /* For the non-shared case, discard space for relocs against
2093 symbols which turn out to need copy relocs or are not
2094 dynamic. */
2095 if ((h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0
2096 && (((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0
2097 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
2098 || (htab->elf.dynamic_sections_created
2099 && (h->root.type == bfd_link_hash_undefweak
2100 || h->root.type == bfd_link_hash_undefined))))
2101 {
2102 /* Make sure this symbol is output as a dynamic symbol.
2103 Undefined weak syms won't yet be marked as dynamic. */
2104 if (h->dynindx == -1
2105 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0
2106 && h->type != STT_PARISC_MILLI)
2107 {
2108 if (! bfd_elf32_link_record_dynamic_symbol (info, h))
2109 return false;
2110 }
2111
2112 /* If that succeeded, we know we'll be keeping all the
2113 relocs. */
2114 if (h->dynindx != -1)
2115 goto keep;
2116 }
2117
2118 eh->dyn_relocs = NULL;
2119 return true;
2120
2121 keep:
2122 }
2123
2124 /* Finally, allocate space. */
2125 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2126 {
2127 asection *sreloc = elf_section_data (p->sec)->sreloc;
2128 sreloc->_raw_size += p->count * sizeof (Elf32_External_Rela);
2129 }
2130
2131 return true;
2132 }
2133
2134 /* This function is called via elf_link_hash_traverse to force
2135 millicode symbols local so they do not end up as globals in the
2136 dynamic symbol table. We ought to be able to do this in
2137 adjust_dynamic_symbol, but our adjust_dynamic_symbol is not called
2138 for all dynamic symbols. Arguably, this is a bug in
2139 elf_adjust_dynamic_symbol. */
2140
2141 static boolean
2142 clobber_millicode_symbols (h, info)
2143 struct elf_link_hash_entry *h;
2144 struct bfd_link_info *info;
2145 {
2146 /* We only want to remove these from the dynamic symbol table.
2147 Therefore we do not leave ELF_LINK_FORCED_LOCAL set. */
2148 if (h->type == STT_PARISC_MILLI)
2149 {
2150 unsigned short oldflags = h->elf_link_hash_flags;
2151 h->elf_link_hash_flags |= ELF_LINK_FORCED_LOCAL;
2152 elf32_hppa_hide_symbol (info, h);
2153 h->elf_link_hash_flags &= ~ELF_LINK_FORCED_LOCAL;
2154 h->elf_link_hash_flags |= oldflags & ELF_LINK_FORCED_LOCAL;
2155 }
2156 return true;
2157 }
2158
2159 /* Find any dynamic relocs that apply to read-only sections. */
2160
2161 static boolean
2162 readonly_dynrelocs (h, inf)
2163 struct elf_link_hash_entry *h;
2164 PTR inf;
2165 {
2166 struct elf32_hppa_link_hash_entry *eh;
2167 struct elf32_hppa_dyn_reloc_entry *p;
2168
2169 eh = (struct elf32_hppa_link_hash_entry *) h;
2170 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2171 {
2172 asection *s = p->sec->output_section;
2173
2174 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2175 {
2176 struct bfd_link_info *info = (struct bfd_link_info *) inf;
2177
2178 info->flags |= DF_TEXTREL;
2179
2180 /* Not an error, just cut short the traversal. */
2181 return false;
2182 }
2183 }
2184 return true;
2185 }
2186
2187 /* Set the sizes of the dynamic sections. */
2188
2189 static boolean
2190 elf32_hppa_size_dynamic_sections (output_bfd, info)
2191 bfd *output_bfd ATTRIBUTE_UNUSED;
2192 struct bfd_link_info *info;
2193 {
2194 struct elf32_hppa_link_hash_table *htab;
2195 bfd *dynobj;
2196 bfd *ibfd;
2197 asection *s;
2198 boolean relocs;
2199
2200 htab = hppa_link_hash_table (info);
2201 dynobj = htab->elf.dynobj;
2202 if (dynobj == NULL)
2203 abort ();
2204
2205 if (htab->elf.dynamic_sections_created)
2206 {
2207 /* Set the contents of the .interp section to the interpreter. */
2208 if (! info->shared)
2209 {
2210 s = bfd_get_section_by_name (dynobj, ".interp");
2211 if (s == NULL)
2212 abort ();
2213 s->_raw_size = sizeof ELF_DYNAMIC_INTERPRETER;
2214 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
2215 }
2216
2217 /* Force millicode symbols local. */
2218 elf_link_hash_traverse (&htab->elf,
2219 clobber_millicode_symbols,
2220 info);
2221 }
2222 else
2223 {
2224 /* Run through the function symbols, looking for any that are
2225 PIC, and allocate space for the necessary .plt entries so
2226 that %r19 will be set up. */
2227 if (! info->shared)
2228 elf_link_hash_traverse (&htab->elf,
2229 hppa_handle_PIC_calls,
2230 info);
2231 }
2232
2233 /* Set up .got and .plt offsets for local syms, and space for local
2234 dynamic relocs. */
2235 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
2236 {
2237 bfd_signed_vma *local_got;
2238 bfd_signed_vma *end_local_got;
2239 bfd_signed_vma *local_plt;
2240 bfd_signed_vma *end_local_plt;
2241 bfd_size_type locsymcount;
2242 Elf_Internal_Shdr *symtab_hdr;
2243 asection *srel;
2244
2245 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
2246 continue;
2247
2248 for (s = ibfd->sections; s != NULL; s = s->next)
2249 {
2250 bfd_size_type count = elf_section_data (s)->local_dynrel;
2251
2252 if (count != 0)
2253 {
2254 srel = elf_section_data (s)->sreloc;
2255 srel->_raw_size += count * sizeof (Elf32_External_Rela);
2256 }
2257 }
2258
2259 local_got = elf_local_got_refcounts (ibfd);
2260 if (!local_got)
2261 continue;
2262
2263 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
2264 locsymcount = symtab_hdr->sh_info;
2265 end_local_got = local_got + locsymcount;
2266 s = htab->sgot;
2267 srel = htab->srelgot;
2268 for (; local_got < end_local_got; ++local_got)
2269 {
2270 if (*local_got > 0)
2271 {
2272 *local_got = s->_raw_size;
2273 s->_raw_size += GOT_ENTRY_SIZE;
2274 if (info->shared)
2275 srel->_raw_size += sizeof (Elf32_External_Rela);
2276 }
2277 else
2278 *local_got = (bfd_vma) -1;
2279 }
2280
2281 local_plt = end_local_got;
2282 end_local_plt = local_plt + locsymcount;
2283 if (! htab->elf.dynamic_sections_created)
2284 {
2285 /* Won't be used, but be safe. */
2286 for (; local_plt < end_local_plt; ++local_plt)
2287 *local_plt = (bfd_vma) -1;
2288 }
2289 else
2290 {
2291 s = htab->splt;
2292 srel = htab->srelplt;
2293 for (; local_plt < end_local_plt; ++local_plt)
2294 {
2295 if (*local_plt > 0)
2296 {
2297 *local_plt = s->_raw_size;
2298 s->_raw_size += PLT_ENTRY_SIZE;
2299 if (info->shared)
2300 srel->_raw_size += sizeof (Elf32_External_Rela);
2301 }
2302 else
2303 *local_plt = (bfd_vma) -1;
2304 }
2305 }
2306 }
2307
2308 /* Allocate global sym .plt and .got entries, and space for global
2309 sym dynamic relocs. */
2310 elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, (PTR) info);
2311
2312 /* The check_relocs and adjust_dynamic_symbol entry points have
2313 determined the sizes of the various dynamic sections. Allocate
2314 memory for them. */
2315 relocs = false;
2316 for (s = dynobj->sections; s != NULL; s = s->next)
2317 {
2318 if ((s->flags & SEC_LINKER_CREATED) == 0)
2319 continue;
2320
2321 if (s == htab->splt)
2322 {
2323 if (htab->need_plt_stub)
2324 {
2325 /* Make space for the plt stub at the end of the .plt
2326 section. We want this stub right at the end, up
2327 against the .got section. */
2328 int gotalign = bfd_section_alignment (dynobj, htab->sgot);
2329 int pltalign = bfd_section_alignment (dynobj, s);
2330 bfd_size_type mask;
2331
2332 if (gotalign > pltalign)
2333 bfd_set_section_alignment (dynobj, s, gotalign);
2334 mask = ((bfd_size_type) 1 << gotalign) - 1;
2335 s->_raw_size = (s->_raw_size + sizeof (plt_stub) + mask) & ~mask;
2336 }
2337 }
2338 else if (s == htab->sgot)
2339 ;
2340 else if (strncmp (bfd_get_section_name (dynobj, s), ".rela", 5) == 0)
2341 {
2342 if (s->_raw_size != 0)
2343 {
2344 /* Remember whether there are any reloc sections other
2345 than .rela.plt. */
2346 if (s != htab->srelplt)
2347 relocs = true;
2348
2349 /* We use the reloc_count field as a counter if we need
2350 to copy relocs into the output file. */
2351 s->reloc_count = 0;
2352 }
2353 }
2354 else
2355 {
2356 /* It's not one of our sections, so don't allocate space. */
2357 continue;
2358 }
2359
2360 if (s->_raw_size == 0)
2361 {
2362 /* If we don't need this section, strip it from the
2363 output file. This is mostly to handle .rela.bss and
2364 .rela.plt. We must create both sections in
2365 create_dynamic_sections, because they must be created
2366 before the linker maps input sections to output
2367 sections. The linker does that before
2368 adjust_dynamic_symbol is called, and it is that
2369 function which decides whether anything needs to go
2370 into these sections. */
2371 _bfd_strip_section_from_output (info, s);
2372 continue;
2373 }
2374
2375 /* Allocate memory for the section contents. Zero it, because
2376 we may not fill in all the reloc sections. */
2377 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->_raw_size);
2378 if (s->contents == NULL && s->_raw_size != 0)
2379 return false;
2380 }
2381
2382 if (htab->elf.dynamic_sections_created)
2383 {
2384 /* Like IA-64 and HPPA64, always create a DT_PLTGOT. It
2385 actually has nothing to do with the PLT, it is how we
2386 communicate the LTP value of a load module to the dynamic
2387 linker. */
2388 #define add_dynamic_entry(TAG, VAL) \
2389 bfd_elf32_add_dynamic_entry (info, (bfd_vma) (TAG), (bfd_vma) (VAL))
2390
2391 if (!add_dynamic_entry (DT_PLTGOT, 0))
2392 return false;
2393
2394 /* Add some entries to the .dynamic section. We fill in the
2395 values later, in elf32_hppa_finish_dynamic_sections, but we
2396 must add the entries now so that we get the correct size for
2397 the .dynamic section. The DT_DEBUG entry is filled in by the
2398 dynamic linker and used by the debugger. */
2399 if (!info->shared)
2400 {
2401 if (!add_dynamic_entry (DT_DEBUG, 0))
2402 return false;
2403 }
2404
2405 if (htab->srelplt->_raw_size != 0)
2406 {
2407 if (!add_dynamic_entry (DT_PLTRELSZ, 0)
2408 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
2409 || !add_dynamic_entry (DT_JMPREL, 0))
2410 return false;
2411 }
2412
2413 if (relocs)
2414 {
2415 if (!add_dynamic_entry (DT_RELA, 0)
2416 || !add_dynamic_entry (DT_RELASZ, 0)
2417 || !add_dynamic_entry (DT_RELAENT, sizeof (Elf32_External_Rela)))
2418 return false;
2419
2420 /* If any dynamic relocs apply to a read-only section,
2421 then we need a DT_TEXTREL entry. */
2422 elf_link_hash_traverse (&htab->elf, readonly_dynrelocs, (PTR) info);
2423
2424 if ((info->flags & DF_TEXTREL) != 0)
2425 {
2426 if (!add_dynamic_entry (DT_TEXTREL, 0))
2427 return false;
2428 }
2429 }
2430 }
2431 #undef add_dynamic_entry
2432
2433 return true;
2434 }
2435
2436 /* External entry points for sizing and building linker stubs. */
2437
2438 /* Determine and set the size of the stub section for a final link.
2439
2440 The basic idea here is to examine all the relocations looking for
2441 PC-relative calls to a target that is unreachable with a "bl"
2442 instruction. */
2443
2444 boolean
2445 elf32_hppa_size_stubs (output_bfd, stub_bfd, info, multi_subspace, group_size,
2446 add_stub_section, layout_sections_again)
2447 bfd *output_bfd;
2448 bfd *stub_bfd;
2449 struct bfd_link_info *info;
2450 boolean multi_subspace;
2451 bfd_signed_vma group_size;
2452 asection * (*add_stub_section) PARAMS ((const char *, asection *));
2453 void (*layout_sections_again) PARAMS ((void));
2454 {
2455 bfd *input_bfd;
2456 asection *section;
2457 asection **input_list, **list;
2458 Elf_Internal_Sym *local_syms, **all_local_syms;
2459 unsigned int bfd_indx, bfd_count;
2460 int top_id, top_index;
2461 struct elf32_hppa_link_hash_table *htab;
2462 bfd_size_type stub_group_size;
2463 boolean stubs_always_before_branch;
2464 boolean stub_changed = 0;
2465 boolean ret = 0;
2466 bfd_size_type amt;
2467
2468 htab = hppa_link_hash_table (info);
2469
2470 /* Stash our params away. */
2471 htab->stub_bfd = stub_bfd;
2472 htab->multi_subspace = multi_subspace;
2473 htab->add_stub_section = add_stub_section;
2474 htab->layout_sections_again = layout_sections_again;
2475 stubs_always_before_branch = group_size < 0;
2476 if (group_size < 0)
2477 stub_group_size = -group_size;
2478 else
2479 stub_group_size = group_size;
2480 if (stub_group_size == 1)
2481 {
2482 /* Default values. */
2483 stub_group_size = 8000000;
2484 if (htab->has_17bit_branch || htab->multi_subspace)
2485 stub_group_size = 250000;
2486 if (htab->has_12bit_branch)
2487 stub_group_size = 7812;
2488 }
2489
2490 /* Count the number of input BFDs and find the top input section id. */
2491 for (input_bfd = info->input_bfds, bfd_count = 0, top_id = 0;
2492 input_bfd != NULL;
2493 input_bfd = input_bfd->link_next)
2494 {
2495 bfd_count += 1;
2496 for (section = input_bfd->sections;
2497 section != NULL;
2498 section = section->next)
2499 {
2500 if (top_id < section->id)
2501 top_id = section->id;
2502 }
2503 }
2504
2505 amt = sizeof (struct map_stub) * (top_id + 1);
2506 htab->stub_group = (struct map_stub *) bfd_zmalloc (amt);
2507 if (htab->stub_group == NULL)
2508 return false;
2509
2510 /* Make a list of input sections for each output section included in
2511 the link.
2512
2513 We can't use output_bfd->section_count here to find the top output
2514 section index as some sections may have been removed, and
2515 _bfd_strip_section_from_output doesn't renumber the indices. */
2516 for (section = output_bfd->sections, top_index = 0;
2517 section != NULL;
2518 section = section->next)
2519 {
2520 if (top_index < section->index)
2521 top_index = section->index;
2522 }
2523
2524 amt = sizeof (asection *) * (top_index + 1);
2525 input_list = (asection **) bfd_malloc (amt);
2526 if (input_list == NULL)
2527 return false;
2528
2529 /* For sections we aren't interested in, mark their entries with a
2530 value we can check later. */
2531 list = input_list + top_index;
2532 do
2533 *list = bfd_abs_section_ptr;
2534 while (list-- != input_list);
2535
2536 for (section = output_bfd->sections;
2537 section != NULL;
2538 section = section->next)
2539 {
2540 if ((section->flags & SEC_CODE) != 0)
2541 input_list[section->index] = NULL;
2542 }
2543
2544 /* Now actually build the lists. */
2545 for (input_bfd = info->input_bfds;
2546 input_bfd != NULL;
2547 input_bfd = input_bfd->link_next)
2548 {
2549 for (section = input_bfd->sections;
2550 section != NULL;
2551 section = section->next)
2552 {
2553 if (section->output_section != NULL
2554 && section->output_section->owner == output_bfd
2555 && section->output_section->index <= top_index)
2556 {
2557 list = input_list + section->output_section->index;
2558 if (*list != bfd_abs_section_ptr)
2559 {
2560 /* Steal the link_sec pointer for our list. */
2561 #define PREV_SEC(sec) (htab->stub_group[(sec)->id].link_sec)
2562 /* This happens to make the list in reverse order,
2563 which is what we want. */
2564 PREV_SEC (section) = *list;
2565 *list = section;
2566 }
2567 }
2568 }
2569 }
2570
2571 /* See whether we can group stub sections together. Grouping stub
2572 sections may result in fewer stubs. More importantly, we need to
2573 put all .init* and .fini* stubs at the beginning of the .init or
2574 .fini output sections respectively, because glibc splits the
2575 _init and _fini functions into multiple parts. Putting a stub in
2576 the middle of a function is not a good idea. */
2577 list = input_list + top_index;
2578 do
2579 {
2580 asection *tail = *list;
2581 if (tail == bfd_abs_section_ptr)
2582 continue;
2583 while (tail != NULL)
2584 {
2585 asection *curr;
2586 asection *prev;
2587 bfd_size_type total;
2588
2589 curr = tail;
2590 if (tail->_cooked_size)
2591 total = tail->_cooked_size;
2592 else
2593 total = tail->_raw_size;
2594 while ((prev = PREV_SEC (curr)) != NULL
2595 && ((total += curr->output_offset - prev->output_offset)
2596 < stub_group_size))
2597 curr = prev;
2598
2599 /* OK, the size from the start of CURR to the end is less
2600 than 250000 bytes and thus can be handled by one stub
2601 section. (or the tail section is itself larger than
2602 250000 bytes, in which case we may be toast.)
2603 We should really be keeping track of the total size of
2604 stubs added here, as stubs contribute to the final output
2605 section size. That's a little tricky, and this way will
2606 only break if stubs added total more than 12144 bytes, or
2607 1518 long branch stubs. It seems unlikely for more than
2608 1518 different functions to be called, especially from
2609 code only 250000 bytes long. */
2610 do
2611 {
2612 prev = PREV_SEC (tail);
2613 /* Set up this stub group. */
2614 htab->stub_group[tail->id].link_sec = curr;
2615 }
2616 while (tail != curr && (tail = prev) != NULL);
2617
2618 /* But wait, there's more! Input sections up to 250000
2619 bytes before the stub section can be handled by it too. */
2620 if (!stubs_always_before_branch)
2621 {
2622 total = 0;
2623 while (prev != NULL
2624 && ((total += tail->output_offset - prev->output_offset)
2625 < stub_group_size))
2626 {
2627 tail = prev;
2628 prev = PREV_SEC (tail);
2629 htab->stub_group[tail->id].link_sec = curr;
2630 }
2631 }
2632 tail = prev;
2633 }
2634 }
2635 while (list-- != input_list);
2636 free (input_list);
2637 #undef PREV_SEC
2638
2639 /* We want to read in symbol extension records only once. To do this
2640 we need to read in the local symbols in parallel and save them for
2641 later use; so hold pointers to the local symbols in an array. */
2642 amt = sizeof (Elf_Internal_Sym *) * bfd_count;
2643 all_local_syms = (Elf_Internal_Sym **) bfd_zmalloc (amt);
2644 if (all_local_syms == NULL)
2645 return false;
2646
2647 /* Walk over all the input BFDs, swapping in local symbols.
2648 If we are creating a shared library, create hash entries for the
2649 export stubs. */
2650 for (input_bfd = info->input_bfds, bfd_indx = 0;
2651 input_bfd != NULL;
2652 input_bfd = input_bfd->link_next, bfd_indx++)
2653 {
2654 Elf_Internal_Shdr *symtab_hdr;
2655 Elf_Internal_Sym *isym;
2656 Elf32_External_Sym *ext_syms, *esym, *end_sy;
2657 bfd_size_type sec_size;
2658
2659 /* We'll need the symbol table in a second. */
2660 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
2661 if (symtab_hdr->sh_info == 0)
2662 continue;
2663
2664 /* We need an array of the local symbols attached to the input bfd.
2665 Unfortunately, we're going to have to read & swap them in. */
2666 sec_size = symtab_hdr->sh_info;
2667 sec_size *= sizeof (Elf_Internal_Sym);
2668 local_syms = (Elf_Internal_Sym *) bfd_malloc (sec_size);
2669 if (local_syms == NULL)
2670 {
2671 goto error_ret_free_local;
2672 }
2673 all_local_syms[bfd_indx] = local_syms;
2674 sec_size = symtab_hdr->sh_info;
2675 sec_size *= sizeof (Elf32_External_Sym);
2676 ext_syms = (Elf32_External_Sym *) bfd_malloc (sec_size);
2677 if (ext_syms == NULL)
2678 {
2679 goto error_ret_free_local;
2680 }
2681
2682 if (bfd_seek (input_bfd, symtab_hdr->sh_offset, SEEK_SET) != 0
2683 || (bfd_bread (ext_syms, sec_size, input_bfd) != sec_size))
2684 {
2685 free (ext_syms);
2686 goto error_ret_free_local;
2687 }
2688
2689 /* Swap the local symbols in. */
2690 isym = local_syms;
2691 esym = ext_syms;
2692 for (end_sy = esym + symtab_hdr->sh_info; esym < end_sy; esym++, isym++)
2693 bfd_elf32_swap_symbol_in (input_bfd, esym, isym);
2694
2695 /* Now we can free the external symbols. */
2696 free (ext_syms);
2697
2698 if (info->shared && htab->multi_subspace)
2699 {
2700 struct elf_link_hash_entry **sym_hashes;
2701 struct elf_link_hash_entry **end_hashes;
2702 unsigned int symcount;
2703
2704 symcount = (symtab_hdr->sh_size / sizeof (Elf32_External_Sym)
2705 - symtab_hdr->sh_info);
2706 sym_hashes = elf_sym_hashes (input_bfd);
2707 end_hashes = sym_hashes + symcount;
2708
2709 /* Look through the global syms for functions; We need to
2710 build export stubs for all globally visible functions. */
2711 for (; sym_hashes < end_hashes; sym_hashes++)
2712 {
2713 struct elf32_hppa_link_hash_entry *hash;
2714
2715 hash = (struct elf32_hppa_link_hash_entry *) *sym_hashes;
2716
2717 while (hash->elf.root.type == bfd_link_hash_indirect
2718 || hash->elf.root.type == bfd_link_hash_warning)
2719 hash = ((struct elf32_hppa_link_hash_entry *)
2720 hash->elf.root.u.i.link);
2721
2722 /* At this point in the link, undefined syms have been
2723 resolved, so we need to check that the symbol was
2724 defined in this BFD. */
2725 if ((hash->elf.root.type == bfd_link_hash_defined
2726 || hash->elf.root.type == bfd_link_hash_defweak)
2727 && hash->elf.type == STT_FUNC
2728 && hash->elf.root.u.def.section->output_section != NULL
2729 && (hash->elf.root.u.def.section->output_section->owner
2730 == output_bfd)
2731 && hash->elf.root.u.def.section->owner == input_bfd
2732 && (hash->elf.elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR)
2733 && !(hash->elf.elf_link_hash_flags & ELF_LINK_FORCED_LOCAL)
2734 && ELF_ST_VISIBILITY (hash->elf.other) == STV_DEFAULT)
2735 {
2736 asection *sec;
2737 const char *stub_name;
2738 struct elf32_hppa_stub_hash_entry *stub_entry;
2739
2740 sec = hash->elf.root.u.def.section;
2741 stub_name = hash->elf.root.root.string;
2742 stub_entry = hppa_stub_hash_lookup (&htab->stub_hash_table,
2743 stub_name,
2744 false, false);
2745 if (stub_entry == NULL)
2746 {
2747 stub_entry = hppa_add_stub (stub_name, sec, htab);
2748 if (!stub_entry)
2749 goto error_ret_free_local;
2750
2751 stub_entry->target_value = hash->elf.root.u.def.value;
2752 stub_entry->target_section = hash->elf.root.u.def.section;
2753 stub_entry->stub_type = hppa_stub_export;
2754 stub_entry->h = hash;
2755 stub_changed = 1;
2756 }
2757 else
2758 {
2759 (*_bfd_error_handler) (_("%s: duplicate export stub %s"),
2760 bfd_archive_filename (input_bfd),
2761 stub_name);
2762 }
2763 }
2764 }
2765 }
2766 }
2767
2768 while (1)
2769 {
2770 asection *stub_sec;
2771
2772 for (input_bfd = info->input_bfds, bfd_indx = 0;
2773 input_bfd != NULL;
2774 input_bfd = input_bfd->link_next, bfd_indx++)
2775 {
2776 Elf_Internal_Shdr *symtab_hdr;
2777
2778 /* We'll need the symbol table in a second. */
2779 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
2780 if (symtab_hdr->sh_info == 0)
2781 continue;
2782
2783 local_syms = all_local_syms[bfd_indx];
2784
2785 /* Walk over each section attached to the input bfd. */
2786 for (section = input_bfd->sections;
2787 section != NULL;
2788 section = section->next)
2789 {
2790 Elf_Internal_Shdr *input_rel_hdr;
2791 Elf32_External_Rela *external_relocs, *erelaend, *erela;
2792 Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
2793
2794 /* If there aren't any relocs, then there's nothing more
2795 to do. */
2796 if ((section->flags & SEC_RELOC) == 0
2797 || section->reloc_count == 0)
2798 continue;
2799
2800 /* If this section is a link-once section that will be
2801 discarded, then don't create any stubs. */
2802 if (section->output_section == NULL
2803 || section->output_section->owner != output_bfd)
2804 continue;
2805
2806 /* Allocate space for the external relocations. */
2807 amt = section->reloc_count;
2808 amt *= sizeof (Elf32_External_Rela);
2809 external_relocs = (Elf32_External_Rela *) bfd_malloc (amt);
2810 if (external_relocs == NULL)
2811 {
2812 goto error_ret_free_local;
2813 }
2814
2815 /* Likewise for the internal relocations. */
2816 amt = section->reloc_count;
2817 amt *= sizeof (Elf_Internal_Rela);
2818 internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
2819 if (internal_relocs == NULL)
2820 {
2821 free (external_relocs);
2822 goto error_ret_free_local;
2823 }
2824
2825 /* Read in the external relocs. */
2826 input_rel_hdr = &elf_section_data (section)->rel_hdr;
2827 if (bfd_seek (input_bfd, input_rel_hdr->sh_offset, SEEK_SET) != 0
2828 || bfd_bread (external_relocs,
2829 input_rel_hdr->sh_size,
2830 input_bfd) != input_rel_hdr->sh_size)
2831 {
2832 free (external_relocs);
2833 error_ret_free_internal:
2834 free (internal_relocs);
2835 goto error_ret_free_local;
2836 }
2837
2838 /* Swap in the relocs. */
2839 erela = external_relocs;
2840 erelaend = erela + section->reloc_count;
2841 irela = internal_relocs;
2842 for (; erela < erelaend; erela++, irela++)
2843 bfd_elf32_swap_reloca_in (input_bfd, erela, irela);
2844
2845 /* We're done with the external relocs, free them. */
2846 free (external_relocs);
2847
2848 /* Now examine each relocation. */
2849 irela = internal_relocs;
2850 irelaend = irela + section->reloc_count;
2851 for (; irela < irelaend; irela++)
2852 {
2853 unsigned int r_type, r_indx;
2854 enum elf32_hppa_stub_type stub_type;
2855 struct elf32_hppa_stub_hash_entry *stub_entry;
2856 asection *sym_sec;
2857 bfd_vma sym_value;
2858 bfd_vma destination;
2859 struct elf32_hppa_link_hash_entry *hash;
2860 char *stub_name;
2861 const asection *id_sec;
2862
2863 r_type = ELF32_R_TYPE (irela->r_info);
2864 r_indx = ELF32_R_SYM (irela->r_info);
2865
2866 if (r_type >= (unsigned int) R_PARISC_UNIMPLEMENTED)
2867 {
2868 bfd_set_error (bfd_error_bad_value);
2869 goto error_ret_free_internal;
2870 }
2871
2872 /* Only look for stubs on call instructions. */
2873 if (r_type != (unsigned int) R_PARISC_PCREL12F
2874 && r_type != (unsigned int) R_PARISC_PCREL17F
2875 && r_type != (unsigned int) R_PARISC_PCREL22F)
2876 continue;
2877
2878 /* Now determine the call target, its name, value,
2879 section. */
2880 sym_sec = NULL;
2881 sym_value = 0;
2882 destination = 0;
2883 hash = NULL;
2884 if (r_indx < symtab_hdr->sh_info)
2885 {
2886 /* It's a local symbol. */
2887 Elf_Internal_Sym *sym;
2888 Elf_Internal_Shdr *hdr;
2889
2890 sym = local_syms + r_indx;
2891 hdr = elf_elfsections (input_bfd)[sym->st_shndx];
2892 sym_sec = hdr->bfd_section;
2893 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
2894 sym_value = sym->st_value;
2895 destination = (sym_value + irela->r_addend
2896 + sym_sec->output_offset
2897 + sym_sec->output_section->vma);
2898 }
2899 else
2900 {
2901 /* It's an external symbol. */
2902 int e_indx;
2903
2904 e_indx = r_indx - symtab_hdr->sh_info;
2905 hash = ((struct elf32_hppa_link_hash_entry *)
2906 elf_sym_hashes (input_bfd)[e_indx]);
2907
2908 while (hash->elf.root.type == bfd_link_hash_indirect
2909 || hash->elf.root.type == bfd_link_hash_warning)
2910 hash = ((struct elf32_hppa_link_hash_entry *)
2911 hash->elf.root.u.i.link);
2912
2913 if (hash->elf.root.type == bfd_link_hash_defined
2914 || hash->elf.root.type == bfd_link_hash_defweak)
2915 {
2916 sym_sec = hash->elf.root.u.def.section;
2917 sym_value = hash->elf.root.u.def.value;
2918 if (sym_sec->output_section != NULL)
2919 destination = (sym_value + irela->r_addend
2920 + sym_sec->output_offset
2921 + sym_sec->output_section->vma);
2922 }
2923 else if (hash->elf.root.type == bfd_link_hash_undefweak)
2924 {
2925 if (! info->shared)
2926 continue;
2927 }
2928 else if (hash->elf.root.type == bfd_link_hash_undefined)
2929 {
2930 if (! (info->shared
2931 && !info->no_undefined
2932 && (ELF_ST_VISIBILITY (hash->elf.other)
2933 == STV_DEFAULT)))
2934 continue;
2935 }
2936 else
2937 {
2938 bfd_set_error (bfd_error_bad_value);
2939 goto error_ret_free_internal;
2940 }
2941 }
2942
2943 /* Determine what (if any) linker stub is needed. */
2944 stub_type = hppa_type_of_stub (section, irela, hash,
2945 destination);
2946 if (stub_type == hppa_stub_none)
2947 continue;
2948
2949 /* Support for grouping stub sections. */
2950 id_sec = htab->stub_group[section->id].link_sec;
2951
2952 /* Get the name of this stub. */
2953 stub_name = hppa_stub_name (id_sec, sym_sec, hash, irela);
2954 if (!stub_name)
2955 goto error_ret_free_internal;
2956
2957 stub_entry = hppa_stub_hash_lookup (&htab->stub_hash_table,
2958 stub_name,
2959 false, false);
2960 if (stub_entry != NULL)
2961 {
2962 /* The proper stub has already been created. */
2963 free (stub_name);
2964 continue;
2965 }
2966
2967 stub_entry = hppa_add_stub (stub_name, section, htab);
2968 if (stub_entry == NULL)
2969 {
2970 free (stub_name);
2971 goto error_ret_free_local;
2972 }
2973
2974 stub_entry->target_value = sym_value;
2975 stub_entry->target_section = sym_sec;
2976 stub_entry->stub_type = stub_type;
2977 if (info->shared)
2978 {
2979 if (stub_type == hppa_stub_import)
2980 stub_entry->stub_type = hppa_stub_import_shared;
2981 else if (stub_type == hppa_stub_long_branch)
2982 stub_entry->stub_type = hppa_stub_long_branch_shared;
2983 }
2984 stub_entry->h = hash;
2985 stub_changed = 1;
2986 }
2987
2988 /* We're done with the internal relocs, free them. */
2989 free (internal_relocs);
2990 }
2991 }
2992
2993 if (!stub_changed)
2994 break;
2995
2996 /* OK, we've added some stubs. Find out the new size of the
2997 stub sections. */
2998 for (stub_sec = htab->stub_bfd->sections;
2999 stub_sec != NULL;
3000 stub_sec = stub_sec->next)
3001 {
3002 stub_sec->_raw_size = 0;
3003 stub_sec->_cooked_size = 0;
3004 }
3005
3006 bfd_hash_traverse (&htab->stub_hash_table, hppa_size_one_stub, htab);
3007
3008 /* Ask the linker to do its stuff. */
3009 (*htab->layout_sections_again) ();
3010 stub_changed = 0;
3011 }
3012
3013 ret = 1;
3014
3015 error_ret_free_local:
3016 while (bfd_count-- > 0)
3017 if (all_local_syms[bfd_count])
3018 free (all_local_syms[bfd_count]);
3019 free (all_local_syms);
3020
3021 return ret;
3022 }
3023
3024 /* For a final link, this function is called after we have sized the
3025 stubs to provide a value for __gp. */
3026
3027 boolean
3028 elf32_hppa_set_gp (abfd, info)
3029 bfd *abfd;
3030 struct bfd_link_info *info;
3031 {
3032 struct elf32_hppa_link_hash_table *htab;
3033 struct elf_link_hash_entry *h;
3034 asection *sec;
3035 bfd_vma gp_val;
3036
3037 htab = hppa_link_hash_table (info);
3038 h = elf_link_hash_lookup (&htab->elf, "$global$", false, false, false);
3039
3040 if (h != NULL
3041 && (h->root.type == bfd_link_hash_defined
3042 || h->root.type == bfd_link_hash_defweak))
3043 {
3044 gp_val = h->root.u.def.value;
3045 sec = h->root.u.def.section;
3046 }
3047 else
3048 {
3049 /* Choose to point our LTP at, in this order, one of .plt, .got,
3050 or .data, if these sections exist. In the case of choosing
3051 .plt try to make the LTP ideal for addressing anywhere in the
3052 .plt or .got with a 14 bit signed offset. Typically, the end
3053 of the .plt is the start of the .got, so choose .plt + 0x2000
3054 if either the .plt or .got is larger than 0x2000. If both
3055 the .plt and .got are smaller than 0x2000, choose the end of
3056 the .plt section. */
3057
3058 sec = htab->splt;
3059 if (sec != NULL)
3060 {
3061 gp_val = sec->_raw_size;
3062 if (gp_val > 0x2000
3063 || (htab->sgot && htab->sgot->_raw_size > 0x2000))
3064 {
3065 gp_val = 0x2000;
3066 }
3067 }
3068 else
3069 {
3070 gp_val = 0;
3071 sec = htab->sgot;
3072 if (sec != NULL)
3073 {
3074 /* We know we don't have a .plt. If .got is large,
3075 offset our LTP. */
3076 if (sec->_raw_size > 0x2000)
3077 gp_val = 0x2000;
3078 }
3079 else
3080 {
3081 /* No .plt or .got. Who cares what the LTP is? */
3082 sec = bfd_get_section_by_name (abfd, ".data");
3083 }
3084 }
3085
3086 if (h != NULL)
3087 {
3088 h->root.type = bfd_link_hash_defined;
3089 h->root.u.def.value = gp_val;
3090 if (sec != NULL)
3091 h->root.u.def.section = sec;
3092 else
3093 h->root.u.def.section = bfd_abs_section_ptr;
3094 }
3095 }
3096
3097 if (sec != NULL && sec->output_section != NULL)
3098 gp_val += sec->output_section->vma + sec->output_offset;
3099
3100 elf_gp (abfd) = gp_val;
3101 return true;
3102 }
3103
3104 /* Build all the stubs associated with the current output file. The
3105 stubs are kept in a hash table attached to the main linker hash
3106 table. We also set up the .plt entries for statically linked PIC
3107 functions here. This function is called via hppaelf_finish in the
3108 linker. */
3109
3110 boolean
3111 elf32_hppa_build_stubs (info)
3112 struct bfd_link_info *info;
3113 {
3114 asection *stub_sec;
3115 struct bfd_hash_table *table;
3116 struct elf32_hppa_link_hash_table *htab;
3117
3118 htab = hppa_link_hash_table (info);
3119
3120 for (stub_sec = htab->stub_bfd->sections;
3121 stub_sec != NULL;
3122 stub_sec = stub_sec->next)
3123 {
3124 bfd_size_type size;
3125
3126 /* Allocate memory to hold the linker stubs. */
3127 size = stub_sec->_raw_size;
3128 stub_sec->contents = (unsigned char *) bfd_zalloc (htab->stub_bfd, size);
3129 if (stub_sec->contents == NULL && size != 0)
3130 return false;
3131 stub_sec->_raw_size = 0;
3132 }
3133
3134 /* Build the stubs as directed by the stub hash table. */
3135 table = &htab->stub_hash_table;
3136 bfd_hash_traverse (table, hppa_build_one_stub, info);
3137
3138 return true;
3139 }
3140
3141 /* Perform a final link. */
3142
3143 static boolean
3144 elf32_hppa_final_link (abfd, info)
3145 bfd *abfd;
3146 struct bfd_link_info *info;
3147 {
3148 asection *s;
3149
3150 /* Invoke the regular ELF linker to do all the work. */
3151 if (!bfd_elf32_bfd_final_link (abfd, info))
3152 return false;
3153
3154 /* If we're producing a final executable, sort the contents of the
3155 unwind section. Magic section names, but this is much safer than
3156 having elf32_hppa_relocate_section remember where SEGREL32 relocs
3157 occurred. Consider what happens if someone inept creates a
3158 linker script that puts unwind information in .text. */
3159 s = bfd_get_section_by_name (abfd, ".PARISC.unwind");
3160 if (s != NULL)
3161 {
3162 bfd_size_type size;
3163 char *contents;
3164
3165 size = s->_raw_size;
3166 contents = bfd_malloc (size);
3167 if (contents == NULL)
3168 return false;
3169
3170 if (! bfd_get_section_contents (abfd, s, contents, (file_ptr) 0, size))
3171 return false;
3172
3173 qsort (contents, (size_t) (size / 16), 16, hppa_unwind_entry_compare);
3174
3175 if (! bfd_set_section_contents (abfd, s, contents, (file_ptr) 0, size))
3176 return false;
3177 }
3178 return true;
3179 }
3180
3181 /* Record the lowest address for the data and text segments. */
3182
3183 static void
3184 hppa_record_segment_addr (abfd, section, data)
3185 bfd *abfd ATTRIBUTE_UNUSED;
3186 asection *section;
3187 PTR data;
3188 {
3189 struct elf32_hppa_link_hash_table *htab;
3190
3191 htab = (struct elf32_hppa_link_hash_table *) data;
3192
3193 if ((section->flags & (SEC_ALLOC | SEC_LOAD)) == (SEC_ALLOC | SEC_LOAD))
3194 {
3195 bfd_vma value = section->vma - section->filepos;
3196
3197 if ((section->flags & SEC_READONLY) != 0)
3198 {
3199 if (value < htab->text_segment_base)
3200 htab->text_segment_base = value;
3201 }
3202 else
3203 {
3204 if (value < htab->data_segment_base)
3205 htab->data_segment_base = value;
3206 }
3207 }
3208 }
3209
3210 /* Perform a relocation as part of a final link. */
3211
3212 static bfd_reloc_status_type
3213 final_link_relocate (input_section, contents, rel, value, htab, sym_sec, h)
3214 asection *input_section;
3215 bfd_byte *contents;
3216 const Elf_Internal_Rela *rel;
3217 bfd_vma value;
3218 struct elf32_hppa_link_hash_table *htab;
3219 asection *sym_sec;
3220 struct elf32_hppa_link_hash_entry *h;
3221 {
3222 int insn;
3223 unsigned int r_type = ELF32_R_TYPE (rel->r_info);
3224 reloc_howto_type *howto = elf_hppa_howto_table + r_type;
3225 int r_format = howto->bitsize;
3226 enum hppa_reloc_field_selector_type_alt r_field;
3227 bfd *input_bfd = input_section->owner;
3228 bfd_vma offset = rel->r_offset;
3229 bfd_vma max_branch_offset = 0;
3230 bfd_byte *hit_data = contents + offset;
3231 bfd_signed_vma addend = rel->r_addend;
3232 bfd_vma location;
3233 struct elf32_hppa_stub_hash_entry *stub_entry = NULL;
3234 int val;
3235
3236 if (r_type == R_PARISC_NONE)
3237 return bfd_reloc_ok;
3238
3239 insn = bfd_get_32 (input_bfd, hit_data);
3240
3241 /* Find out where we are and where we're going. */
3242 location = (offset +
3243 input_section->output_offset +
3244 input_section->output_section->vma);
3245
3246 switch (r_type)
3247 {
3248 case R_PARISC_PCREL12F:
3249 case R_PARISC_PCREL17F:
3250 case R_PARISC_PCREL22F:
3251 /* If this is a call to a function defined in another dynamic
3252 library, or if it is a call to a PIC function in the same
3253 object, or if this is a shared link and it is a call to a
3254 weak symbol which may or may not be in the same object, then
3255 find the import stub in the stub hash. */
3256 if (sym_sec == NULL
3257 || sym_sec->output_section == NULL
3258 || (h != NULL
3259 && ((h->maybe_pic_call
3260 && !(input_section->flags & SEC_HAS_GOT_REF))
3261 || (h->elf.root.type == bfd_link_hash_defweak
3262 && h->elf.dynindx != -1
3263 && h->elf.plt.offset != (bfd_vma) -1))))
3264 {
3265 stub_entry = hppa_get_stub_entry (input_section, sym_sec,
3266 h, rel, htab);
3267 if (stub_entry != NULL)
3268 {
3269 value = (stub_entry->stub_offset
3270 + stub_entry->stub_sec->output_offset
3271 + stub_entry->stub_sec->output_section->vma);
3272 addend = 0;
3273 }
3274 else if (sym_sec == NULL && h != NULL
3275 && h->elf.root.type == bfd_link_hash_undefweak)
3276 {
3277 /* It's OK if undefined weak. Calls to undefined weak
3278 symbols behave as if the "called" function
3279 immediately returns. We can thus call to a weak
3280 function without first checking whether the function
3281 is defined. */
3282 value = location;
3283 addend = 8;
3284 }
3285 else
3286 return bfd_reloc_notsupported;
3287 }
3288 /* Fall thru. */
3289
3290 case R_PARISC_PCREL21L:
3291 case R_PARISC_PCREL17C:
3292 case R_PARISC_PCREL17R:
3293 case R_PARISC_PCREL14R:
3294 case R_PARISC_PCREL14F:
3295 /* Make it a pc relative offset. */
3296 value -= location;
3297 addend -= 8;
3298 break;
3299
3300 case R_PARISC_DPREL21L:
3301 case R_PARISC_DPREL14R:
3302 case R_PARISC_DPREL14F:
3303 /* For all the DP relative relocations, we need to examine the symbol's
3304 section. If it's a code section, then "data pointer relative" makes
3305 no sense. In that case we don't adjust the "value", and for 21 bit
3306 addil instructions, we change the source addend register from %dp to
3307 %r0. This situation commonly arises when a variable's "constness"
3308 is declared differently from the way the variable is defined. For
3309 instance: "extern int foo" with foo defined as "const int foo". */
3310 if (sym_sec == NULL)
3311 break;
3312 if ((sym_sec->flags & SEC_CODE) != 0)
3313 {
3314 if ((insn & ((0x3f << 26) | (0x1f << 21)))
3315 == (((int) OP_ADDIL << 26) | (27 << 21)))
3316 {
3317 insn &= ~ (0x1f << 21);
3318 #if 1 /* debug them. */
3319 (*_bfd_error_handler)
3320 (_("%s(%s+0x%lx): fixing %s"),
3321 bfd_archive_filename (input_bfd),
3322 input_section->name,
3323 (long) rel->r_offset,
3324 howto->name);
3325 #endif
3326 }
3327 /* Now try to make things easy for the dynamic linker. */
3328
3329 break;
3330 }
3331 /* Fall thru. */
3332
3333 case R_PARISC_DLTIND21L:
3334 case R_PARISC_DLTIND14R:
3335 case R_PARISC_DLTIND14F:
3336 value -= elf_gp (input_section->output_section->owner);
3337 break;
3338
3339 case R_PARISC_SEGREL32:
3340 if ((sym_sec->flags & SEC_CODE) != 0)
3341 value -= htab->text_segment_base;
3342 else
3343 value -= htab->data_segment_base;
3344 break;
3345
3346 default:
3347 break;
3348 }
3349
3350 switch (r_type)
3351 {
3352 case R_PARISC_DIR32:
3353 case R_PARISC_DIR14F:
3354 case R_PARISC_DIR17F:
3355 case R_PARISC_PCREL17C:
3356 case R_PARISC_PCREL14F:
3357 case R_PARISC_DPREL14F:
3358 case R_PARISC_PLABEL32:
3359 case R_PARISC_DLTIND14F:
3360 case R_PARISC_SEGBASE:
3361 case R_PARISC_SEGREL32:
3362 r_field = e_fsel;
3363 break;
3364
3365 case R_PARISC_DIR21L:
3366 case R_PARISC_PCREL21L:
3367 case R_PARISC_DPREL21L:
3368 case R_PARISC_PLABEL21L:
3369 case R_PARISC_DLTIND21L:
3370 r_field = e_lrsel;
3371 break;
3372
3373 case R_PARISC_DIR17R:
3374 case R_PARISC_PCREL17R:
3375 case R_PARISC_DIR14R:
3376 case R_PARISC_PCREL14R:
3377 case R_PARISC_DPREL14R:
3378 case R_PARISC_PLABEL14R:
3379 case R_PARISC_DLTIND14R:
3380 r_field = e_rrsel;
3381 break;
3382
3383 case R_PARISC_PCREL12F:
3384 case R_PARISC_PCREL17F:
3385 case R_PARISC_PCREL22F:
3386 r_field = e_fsel;
3387
3388 if (r_type == (unsigned int) R_PARISC_PCREL17F)
3389 {
3390 max_branch_offset = (1 << (17-1)) << 2;
3391 }
3392 else if (r_type == (unsigned int) R_PARISC_PCREL12F)
3393 {
3394 max_branch_offset = (1 << (12-1)) << 2;
3395 }
3396 else
3397 {
3398 max_branch_offset = (1 << (22-1)) << 2;
3399 }
3400
3401 /* sym_sec is NULL on undefined weak syms or when shared on
3402 undefined syms. We've already checked for a stub for the
3403 shared undefined case. */
3404 if (sym_sec == NULL)
3405 break;
3406
3407 /* If the branch is out of reach, then redirect the
3408 call to the local stub for this function. */
3409 if (value + addend + max_branch_offset >= 2*max_branch_offset)
3410 {
3411 stub_entry = hppa_get_stub_entry (input_section, sym_sec,
3412 h, rel, htab);
3413 if (stub_entry == NULL)
3414 return bfd_reloc_notsupported;
3415
3416 /* Munge up the value and addend so that we call the stub
3417 rather than the procedure directly. */
3418 value = (stub_entry->stub_offset
3419 + stub_entry->stub_sec->output_offset
3420 + stub_entry->stub_sec->output_section->vma
3421 - location);
3422 addend = -8;
3423 }
3424 break;
3425
3426 /* Something we don't know how to handle. */
3427 default:
3428 return bfd_reloc_notsupported;
3429 }
3430
3431 /* Make sure we can reach the stub. */
3432 if (max_branch_offset != 0
3433 && value + addend + max_branch_offset >= 2*max_branch_offset)
3434 {
3435 (*_bfd_error_handler)
3436 (_("%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections"),
3437 bfd_archive_filename (input_bfd),
3438 input_section->name,
3439 (long) rel->r_offset,
3440 stub_entry->root.string);
3441 return bfd_reloc_notsupported;
3442 }
3443
3444 val = hppa_field_adjust (value, addend, r_field);
3445
3446 switch (r_type)
3447 {
3448 case R_PARISC_PCREL12F:
3449 case R_PARISC_PCREL17C:
3450 case R_PARISC_PCREL17F:
3451 case R_PARISC_PCREL17R:
3452 case R_PARISC_PCREL22F:
3453 case R_PARISC_DIR17F:
3454 case R_PARISC_DIR17R:
3455 /* This is a branch. Divide the offset by four.
3456 Note that we need to decide whether it's a branch or
3457 otherwise by inspecting the reloc. Inspecting insn won't
3458 work as insn might be from a .word directive. */
3459 val >>= 2;
3460 break;
3461
3462 default:
3463 break;
3464 }
3465
3466 insn = hppa_rebuild_insn (insn, val, r_format);
3467
3468 /* Update the instruction word. */
3469 bfd_put_32 (input_bfd, (bfd_vma) insn, hit_data);
3470 return bfd_reloc_ok;
3471 }
3472
3473 /* Relocate an HPPA ELF section. */
3474
3475 static boolean
3476 elf32_hppa_relocate_section (output_bfd, info, input_bfd, input_section,
3477 contents, relocs, local_syms, local_sections)
3478 bfd *output_bfd;
3479 struct bfd_link_info *info;
3480 bfd *input_bfd;
3481 asection *input_section;
3482 bfd_byte *contents;
3483 Elf_Internal_Rela *relocs;
3484 Elf_Internal_Sym *local_syms;
3485 asection **local_sections;
3486 {
3487 bfd_vma *local_got_offsets;
3488 struct elf32_hppa_link_hash_table *htab;
3489 Elf_Internal_Shdr *symtab_hdr;
3490 Elf_Internal_Rela *rel;
3491 Elf_Internal_Rela *relend;
3492
3493 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
3494
3495 htab = hppa_link_hash_table (info);
3496 local_got_offsets = elf_local_got_offsets (input_bfd);
3497
3498 rel = relocs;
3499 relend = relocs + input_section->reloc_count;
3500 for (; rel < relend; rel++)
3501 {
3502 unsigned int r_type;
3503 reloc_howto_type *howto;
3504 unsigned int r_symndx;
3505 struct elf32_hppa_link_hash_entry *h;
3506 Elf_Internal_Sym *sym;
3507 asection *sym_sec;
3508 bfd_vma relocation;
3509 bfd_reloc_status_type r;
3510 const char *sym_name;
3511 boolean plabel;
3512 bfd_vma off;
3513
3514 r_type = ELF32_R_TYPE (rel->r_info);
3515 if (r_type >= (unsigned int) R_PARISC_UNIMPLEMENTED)
3516 {
3517 bfd_set_error (bfd_error_bad_value);
3518 return false;
3519 }
3520 if (r_type == (unsigned int) R_PARISC_GNU_VTENTRY
3521 || r_type == (unsigned int) R_PARISC_GNU_VTINHERIT)
3522 continue;
3523
3524 r_symndx = ELF32_R_SYM (rel->r_info);
3525
3526 if (info->relocateable)
3527 {
3528 /* This is a relocatable link. We don't have to change
3529 anything, unless the reloc is against a section symbol,
3530 in which case we have to adjust according to where the
3531 section symbol winds up in the output section. */
3532 if (r_symndx < symtab_hdr->sh_info)
3533 {
3534 sym = local_syms + r_symndx;
3535 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
3536 {
3537 sym_sec = local_sections[r_symndx];
3538 rel->r_addend += sym_sec->output_offset;
3539 }
3540 }
3541 continue;
3542 }
3543
3544 /* This is a final link. */
3545 h = NULL;
3546 sym = NULL;
3547 sym_sec = NULL;
3548 if (r_symndx < symtab_hdr->sh_info)
3549 {
3550 /* This is a local symbol, h defaults to NULL. */
3551 sym = local_syms + r_symndx;
3552 sym_sec = local_sections[r_symndx];
3553 relocation = ((ELF_ST_TYPE (sym->st_info) == STT_SECTION
3554 ? 0 : sym->st_value)
3555 + sym_sec->output_offset
3556 + sym_sec->output_section->vma);
3557 }
3558 else
3559 {
3560 int indx;
3561
3562 /* It's a global; Find its entry in the link hash. */
3563 indx = r_symndx - symtab_hdr->sh_info;
3564 h = ((struct elf32_hppa_link_hash_entry *)
3565 elf_sym_hashes (input_bfd)[indx]);
3566 while (h->elf.root.type == bfd_link_hash_indirect
3567 || h->elf.root.type == bfd_link_hash_warning)
3568 h = (struct elf32_hppa_link_hash_entry *) h->elf.root.u.i.link;
3569
3570 relocation = 0;
3571 if (h->elf.root.type == bfd_link_hash_defined
3572 || h->elf.root.type == bfd_link_hash_defweak)
3573 {
3574 sym_sec = h->elf.root.u.def.section;
3575 /* If sym_sec->output_section is NULL, then it's a
3576 symbol defined in a shared library. */
3577 if (sym_sec->output_section != NULL)
3578 relocation = (h->elf.root.u.def.value
3579 + sym_sec->output_offset
3580 + sym_sec->output_section->vma);
3581 }
3582 else if (h->elf.root.type == bfd_link_hash_undefweak)
3583 ;
3584 else if (info->shared && !info->no_undefined
3585 && ELF_ST_VISIBILITY (h->elf.other) == STV_DEFAULT
3586 && h->elf.type != STT_PARISC_MILLI)
3587 {
3588 if (info->symbolic && !info->allow_shlib_undefined)
3589 if (!((*info->callbacks->undefined_symbol)
3590 (info, h->elf.root.root.string, input_bfd,
3591 input_section, rel->r_offset, false)))
3592 return false;
3593 }
3594 else
3595 {
3596 if (!((*info->callbacks->undefined_symbol)
3597 (info, h->elf.root.root.string, input_bfd,
3598 input_section, rel->r_offset, true)))
3599 return false;
3600 }
3601 }
3602
3603 /* Do any required modifications to the relocation value, and
3604 determine what types of dynamic info we need to output, if
3605 any. */
3606 plabel = 0;
3607 switch (r_type)
3608 {
3609 case R_PARISC_DLTIND14F:
3610 case R_PARISC_DLTIND14R:
3611 case R_PARISC_DLTIND21L:
3612 /* Relocation is to the entry for this symbol in the global
3613 offset table. */
3614 if (h != NULL)
3615 {
3616 boolean dyn;
3617
3618 off = h->elf.got.offset;
3619 dyn = htab->elf.dynamic_sections_created;
3620 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info, &h->elf))
3621 {
3622 /* This is actually a static link, or it is a
3623 -Bsymbolic link and the symbol is defined
3624 locally, or the symbol was forced to be local
3625 because of a version file. We must initialize
3626 this entry in the global offset table. Since the
3627 offset must always be a multiple of 4, we use the
3628 least significant bit to record whether we have
3629 initialized it already.
3630
3631 When doing a dynamic link, we create a .rela.got
3632 relocation entry to initialize the value. This
3633 is done in the finish_dynamic_symbol routine. */
3634 if ((off & 1) != 0)
3635 off &= ~1;
3636 else
3637 {
3638 bfd_put_32 (output_bfd, relocation,
3639 htab->sgot->contents + off);
3640 h->elf.got.offset |= 1;
3641 }
3642 }
3643 }
3644 else
3645 {
3646 /* Local symbol case. */
3647 if (local_got_offsets == NULL)
3648 abort ();
3649
3650 off = local_got_offsets[r_symndx];
3651
3652 /* The offset must always be a multiple of 4. We use
3653 the least significant bit to record whether we have
3654 already generated the necessary reloc. */
3655 if ((off & 1) != 0)
3656 off &= ~1;
3657 else
3658 {
3659 bfd_put_32 (output_bfd, relocation,
3660 htab->sgot->contents + off);
3661
3662 if (info->shared)
3663 {
3664 /* Output a dynamic relocation for this GOT
3665 entry. In this case it is relative to the
3666 base of the object because the symbol index
3667 is zero. */
3668 Elf_Internal_Rela outrel;
3669 asection *srelgot = htab->srelgot;
3670 Elf32_External_Rela *loc;
3671
3672 outrel.r_offset = (off
3673 + htab->sgot->output_offset
3674 + htab->sgot->output_section->vma);
3675 outrel.r_info = ELF32_R_INFO (0, R_PARISC_DIR32);
3676 outrel.r_addend = relocation;
3677 loc = (Elf32_External_Rela *) srelgot->contents;
3678 loc += srelgot->reloc_count++;
3679 bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
3680 }
3681
3682 local_got_offsets[r_symndx] |= 1;
3683 }
3684 }
3685
3686 if (off >= (bfd_vma) -2)
3687 abort ();
3688
3689 /* Add the base of the GOT to the relocation value. */
3690 relocation = (off
3691 + htab->sgot->output_offset
3692 + htab->sgot->output_section->vma);
3693 break;
3694
3695 case R_PARISC_SEGREL32:
3696 /* If this is the first SEGREL relocation, then initialize
3697 the segment base values. */
3698 if (htab->text_segment_base == (bfd_vma) -1)
3699 bfd_map_over_sections (output_bfd, hppa_record_segment_addr, htab);
3700 break;
3701
3702 case R_PARISC_PLABEL14R:
3703 case R_PARISC_PLABEL21L:
3704 case R_PARISC_PLABEL32:
3705 if (htab->elf.dynamic_sections_created)
3706 {
3707 /* If we have a global symbol with a PLT slot, then
3708 redirect this relocation to it. */
3709 if (h != NULL)
3710 {
3711 off = h->elf.plt.offset;
3712 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, info, &h->elf))
3713 {
3714 /* In a non-shared link, adjust_dynamic_symbols
3715 isn't called for symbols forced local. We
3716 need to write out the plt entry here. */
3717 if ((off & 1) != 0)
3718 off &= ~1;
3719 else
3720 {
3721 bfd_put_32 (output_bfd,
3722 relocation,
3723 htab->splt->contents + off);
3724 bfd_put_32 (output_bfd,
3725 elf_gp (htab->splt->output_section->owner),
3726 htab->splt->contents + off + 4);
3727 h->elf.plt.offset |= 1;
3728 }
3729 }
3730 }
3731 else
3732 {
3733 bfd_vma *local_plt_offsets;
3734
3735 if (local_got_offsets == NULL)
3736 abort ();
3737
3738 local_plt_offsets = local_got_offsets + symtab_hdr->sh_info;
3739 off = local_plt_offsets[r_symndx];
3740
3741 /* As for the local .got entry case, we use the last
3742 bit to record whether we've already initialised
3743 this local .plt entry. */
3744 if ((off & 1) != 0)
3745 off &= ~1;
3746 else
3747 {
3748 bfd_put_32 (output_bfd,
3749 relocation,
3750 htab->splt->contents + off);
3751 bfd_put_32 (output_bfd,
3752 elf_gp (htab->splt->output_section->owner),
3753 htab->splt->contents + off + 4);
3754
3755 if (info->shared)
3756 {
3757 /* Output a dynamic IPLT relocation for this
3758 PLT entry. */
3759 Elf_Internal_Rela outrel;
3760 asection *srelplt = htab->srelplt;
3761 Elf32_External_Rela *loc;
3762
3763 outrel.r_offset = (off
3764 + htab->splt->output_offset
3765 + htab->splt->output_section->vma);
3766 outrel.r_info = ELF32_R_INFO (0, R_PARISC_IPLT);
3767 outrel.r_addend = relocation;
3768 loc = (Elf32_External_Rela *) srelplt->contents;
3769 loc += srelplt->reloc_count++;
3770 bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
3771 }
3772
3773 local_plt_offsets[r_symndx] |= 1;
3774 }
3775 }
3776
3777 if (off >= (bfd_vma) -2)
3778 abort ();
3779
3780 /* PLABELs contain function pointers. Relocation is to
3781 the entry for the function in the .plt. The magic +2
3782 offset signals to $$dyncall that the function pointer
3783 is in the .plt and thus has a gp pointer too.
3784 Exception: Undefined PLABELs should have a value of
3785 zero. */
3786 if (h == NULL
3787 || (h->elf.root.type != bfd_link_hash_undefweak
3788 && h->elf.root.type != bfd_link_hash_undefined))
3789 {
3790 relocation = (off
3791 + htab->splt->output_offset
3792 + htab->splt->output_section->vma
3793 + 2);
3794 }
3795 plabel = 1;
3796 }
3797 /* Fall through and possibly emit a dynamic relocation. */
3798
3799 case R_PARISC_DIR17F:
3800 case R_PARISC_DIR17R:
3801 case R_PARISC_DIR14F:
3802 case R_PARISC_DIR14R:
3803 case R_PARISC_DIR21L:
3804 case R_PARISC_DPREL14F:
3805 case R_PARISC_DPREL14R:
3806 case R_PARISC_DPREL21L:
3807 case R_PARISC_DIR32:
3808 /* The reloc types handled here and this conditional
3809 expression must match the code in ..check_relocs and
3810 ..discard_relocs. ie. We need exactly the same condition
3811 as in ..check_relocs, with some extra conditions (dynindx
3812 test in this case) to cater for relocs removed by
3813 ..discard_relocs. If you squint, the non-shared test
3814 here does indeed match the one in ..check_relocs, the
3815 difference being that here we test DEF_DYNAMIC as well as
3816 !DEF_REGULAR. All common syms end up with !DEF_REGULAR,
3817 which is why we can't use just that test here.
3818 Conversely, DEF_DYNAMIC can't be used in check_relocs as
3819 there all files have not been loaded. */
3820 if ((info->shared
3821 && (input_section->flags & SEC_ALLOC) != 0
3822 && (IS_ABSOLUTE_RELOC (r_type)
3823 || (h != NULL
3824 && h->elf.dynindx != -1
3825 && (!info->symbolic
3826 || (h->elf.elf_link_hash_flags
3827 & ELF_LINK_HASH_DEF_REGULAR) == 0))))
3828 || (!info->shared
3829 && (input_section->flags & SEC_ALLOC) != 0
3830 && h != NULL
3831 && h->elf.dynindx != -1
3832 && (h->elf.elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0
3833 && (((h->elf.elf_link_hash_flags
3834 & ELF_LINK_HASH_DEF_DYNAMIC) != 0
3835 && (h->elf.elf_link_hash_flags
3836 & ELF_LINK_HASH_DEF_REGULAR) == 0)
3837 || h->elf.root.type == bfd_link_hash_undefweak
3838 || h->elf.root.type == bfd_link_hash_undefined)))
3839 {
3840 Elf_Internal_Rela outrel;
3841 boolean skip;
3842 asection *sreloc;
3843 Elf32_External_Rela *loc;
3844
3845 /* When generating a shared object, these relocations
3846 are copied into the output file to be resolved at run
3847 time. */
3848
3849 outrel.r_offset = rel->r_offset;
3850 outrel.r_addend = rel->r_addend;
3851 skip = false;
3852 if (elf_section_data (input_section)->stab_info != NULL)
3853 {
3854 off = (_bfd_stab_section_offset
3855 (output_bfd, &htab->elf.stab_info,
3856 input_section,
3857 &elf_section_data (input_section)->stab_info,
3858 rel->r_offset));
3859 if (off == (bfd_vma) -1)
3860 skip = true;
3861 outrel.r_offset = off;
3862 }
3863
3864 outrel.r_offset += (input_section->output_offset
3865 + input_section->output_section->vma);
3866
3867 if (skip)
3868 {
3869 memset (&outrel, 0, sizeof (outrel));
3870 }
3871 else if (h != NULL
3872 && h->elf.dynindx != -1
3873 && (plabel
3874 || !IS_ABSOLUTE_RELOC (r_type)
3875 || !info->shared
3876 || !info->symbolic
3877 || (h->elf.elf_link_hash_flags
3878 & ELF_LINK_HASH_DEF_REGULAR) == 0))
3879 {
3880 outrel.r_info = ELF32_R_INFO (h->elf.dynindx, r_type);
3881 }
3882 else /* It's a local symbol, or one marked to become local. */
3883 {
3884 int indx = 0;
3885
3886 /* Add the absolute offset of the symbol. */
3887 outrel.r_addend += relocation;
3888
3889 /* Global plabels need to be processed by the
3890 dynamic linker so that functions have at most one
3891 fptr. For this reason, we need to differentiate
3892 between global and local plabels, which we do by
3893 providing the function symbol for a global plabel
3894 reloc, and no symbol for local plabels. */
3895 if (! plabel
3896 && sym_sec != NULL
3897 && sym_sec->output_section != NULL
3898 && ! bfd_is_abs_section (sym_sec))
3899 {
3900 indx = elf_section_data (sym_sec->output_section)->dynindx;
3901 /* We are turning this relocation into one
3902 against a section symbol, so subtract out the
3903 output section's address but not the offset
3904 of the input section in the output section. */
3905 outrel.r_addend -= sym_sec->output_section->vma;
3906 }
3907
3908 outrel.r_info = ELF32_R_INFO (indx, r_type);
3909 }
3910 #if 0
3911 /* EH info can cause unaligned DIR32 relocs.
3912 Tweak the reloc type for the dynamic linker. */
3913 if (r_type == R_PARISC_DIR32 && (outrel.r_offset & 3) != 0)
3914 outrel.r_info = ELF32_R_INFO (ELF32_R_SYM (outrel.r_info),
3915 R_PARISC_DIR32U);
3916 #endif
3917 sreloc = elf_section_data (input_section)->sreloc;
3918 if (sreloc == NULL)
3919 abort ();
3920
3921 loc = (Elf32_External_Rela *) sreloc->contents;
3922 loc += sreloc->reloc_count++;
3923 bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
3924 }
3925 break;
3926
3927 default:
3928 break;
3929 }
3930
3931 r = final_link_relocate (input_section, contents, rel, relocation,
3932 htab, sym_sec, h);
3933
3934 if (r == bfd_reloc_ok)
3935 continue;
3936
3937 if (h != NULL)
3938 sym_name = h->elf.root.root.string;
3939 else
3940 {
3941 sym_name = bfd_elf_string_from_elf_section (input_bfd,
3942 symtab_hdr->sh_link,
3943 sym->st_name);
3944 if (sym_name == NULL)
3945 return false;
3946 if (*sym_name == '\0')
3947 sym_name = bfd_section_name (input_bfd, sym_sec);
3948 }
3949
3950 howto = elf_hppa_howto_table + r_type;
3951
3952 if (r == bfd_reloc_undefined || r == bfd_reloc_notsupported)
3953 {
3954 (*_bfd_error_handler)
3955 (_("%s(%s+0x%lx): cannot handle %s for %s"),
3956 bfd_archive_filename (input_bfd),
3957 input_section->name,
3958 (long) rel->r_offset,
3959 howto->name,
3960 sym_name);
3961 bfd_set_error (bfd_error_bad_value);
3962 return false;
3963 }
3964 else
3965 {
3966 if (!((*info->callbacks->reloc_overflow)
3967 (info, sym_name, howto->name, (bfd_vma) 0,
3968 input_bfd, input_section, rel->r_offset)))
3969 return false;
3970 }
3971 }
3972
3973 return true;
3974 }
3975
3976 /* Comparison function for qsort to sort unwind section during a
3977 final link. */
3978
3979 static int
3980 hppa_unwind_entry_compare (a, b)
3981 const PTR a;
3982 const PTR b;
3983 {
3984 const bfd_byte *ap, *bp;
3985 unsigned long av, bv;
3986
3987 ap = (const bfd_byte *) a;
3988 av = (unsigned long) ap[0] << 24;
3989 av |= (unsigned long) ap[1] << 16;
3990 av |= (unsigned long) ap[2] << 8;
3991 av |= (unsigned long) ap[3];
3992
3993 bp = (const bfd_byte *) b;
3994 bv = (unsigned long) bp[0] << 24;
3995 bv |= (unsigned long) bp[1] << 16;
3996 bv |= (unsigned long) bp[2] << 8;
3997 bv |= (unsigned long) bp[3];
3998
3999 return av < bv ? -1 : av > bv ? 1 : 0;
4000 }
4001
4002 /* Finish up dynamic symbol handling. We set the contents of various
4003 dynamic sections here. */
4004
4005 static boolean
4006 elf32_hppa_finish_dynamic_symbol (output_bfd, info, h, sym)
4007 bfd *output_bfd;
4008 struct bfd_link_info *info;
4009 struct elf_link_hash_entry *h;
4010 Elf_Internal_Sym *sym;
4011 {
4012 struct elf32_hppa_link_hash_table *htab;
4013
4014 htab = hppa_link_hash_table (info);
4015
4016 if (h->plt.offset != (bfd_vma) -1)
4017 {
4018 bfd_vma value;
4019
4020 if (h->plt.offset & 1)
4021 abort ();
4022
4023 /* This symbol has an entry in the procedure linkage table. Set
4024 it up.
4025
4026 The format of a plt entry is
4027 <funcaddr>
4028 <__gp>
4029 */
4030 value = 0;
4031 if (h->root.type == bfd_link_hash_defined
4032 || h->root.type == bfd_link_hash_defweak)
4033 {
4034 value = h->root.u.def.value;
4035 if (h->root.u.def.section->output_section != NULL)
4036 value += (h->root.u.def.section->output_offset
4037 + h->root.u.def.section->output_section->vma);
4038 }
4039
4040 if (! ((struct elf32_hppa_link_hash_entry *) h)->pic_call)
4041 {
4042 Elf_Internal_Rela rel;
4043 Elf32_External_Rela *loc;
4044
4045 /* Create a dynamic IPLT relocation for this entry. */
4046 rel.r_offset = (h->plt.offset
4047 + htab->splt->output_offset
4048 + htab->splt->output_section->vma);
4049 if (! ((struct elf32_hppa_link_hash_entry *) h)->plt_abs
4050 && h->dynindx != -1)
4051 {
4052 /* To support lazy linking, the function pointer is
4053 initialised to point to a special stub stored at the
4054 end of the .plt. This is not done for plt entries
4055 with a base-relative dynamic relocation. */
4056 value = (htab->splt->output_offset
4057 + htab->splt->output_section->vma
4058 + htab->splt->_raw_size
4059 - sizeof (plt_stub)
4060 + PLT_STUB_ENTRY);
4061 rel.r_info = ELF32_R_INFO (h->dynindx, R_PARISC_IPLT);
4062 rel.r_addend = 0;
4063 }
4064 else
4065 {
4066 /* This symbol has been marked to become local, and is
4067 used by a plabel so must be kept in the .plt. */
4068 rel.r_info = ELF32_R_INFO (0, R_PARISC_IPLT);
4069 rel.r_addend = value;
4070 }
4071
4072 loc = (Elf32_External_Rela *) htab->srelplt->contents;
4073 loc += htab->srelplt->reloc_count++;
4074 bfd_elf32_swap_reloca_out (htab->splt->output_section->owner,
4075 &rel, loc);
4076 }
4077
4078 bfd_put_32 (htab->splt->owner,
4079 value,
4080 htab->splt->contents + h->plt.offset);
4081 bfd_put_32 (htab->splt->owner,
4082 elf_gp (htab->splt->output_section->owner),
4083 htab->splt->contents + h->plt.offset + 4);
4084 if (PLABEL_PLT_ENTRY_SIZE != PLT_ENTRY_SIZE
4085 && ((struct elf32_hppa_link_hash_entry *) h)->plabel
4086 && h->dynindx != -1)
4087 {
4088 memset (htab->splt->contents + h->plt.offset + 8,
4089 0, PLABEL_PLT_ENTRY_SIZE - PLT_ENTRY_SIZE);
4090 }
4091
4092 if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
4093 {
4094 /* Mark the symbol as undefined, rather than as defined in
4095 the .plt section. Leave the value alone. */
4096 sym->st_shndx = SHN_UNDEF;
4097 }
4098 }
4099
4100 if (h->got.offset != (bfd_vma) -1)
4101 {
4102 Elf_Internal_Rela rel;
4103 Elf32_External_Rela *loc;
4104
4105 /* This symbol has an entry in the global offset table. Set it
4106 up. */
4107
4108 rel.r_offset = ((h->got.offset &~ (bfd_vma) 1)
4109 + htab->sgot->output_offset
4110 + htab->sgot->output_section->vma);
4111
4112 /* If this is a -Bsymbolic link and the symbol is defined
4113 locally or was forced to be local because of a version file,
4114 we just want to emit a RELATIVE reloc. The entry in the
4115 global offset table will already have been initialized in the
4116 relocate_section function. */
4117 if (info->shared
4118 && (info->symbolic || h->dynindx == -1)
4119 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR))
4120 {
4121 rel.r_info = ELF32_R_INFO (0, R_PARISC_DIR32);
4122 rel.r_addend = (h->root.u.def.value
4123 + h->root.u.def.section->output_offset
4124 + h->root.u.def.section->output_section->vma);
4125 }
4126 else
4127 {
4128 if ((h->got.offset & 1) != 0)
4129 abort ();
4130 bfd_put_32 (output_bfd, (bfd_vma) 0,
4131 htab->sgot->contents + h->got.offset);
4132 rel.r_info = ELF32_R_INFO (h->dynindx, R_PARISC_DIR32);
4133 rel.r_addend = 0;
4134 }
4135
4136 loc = (Elf32_External_Rela *) htab->srelgot->contents;
4137 loc += htab->srelgot->reloc_count++;
4138 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
4139 }
4140
4141 if ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_COPY) != 0)
4142 {
4143 asection *s;
4144 Elf_Internal_Rela rel;
4145 Elf32_External_Rela *loc;
4146
4147 /* This symbol needs a copy reloc. Set it up. */
4148
4149 if (! (h->dynindx != -1
4150 && (h->root.type == bfd_link_hash_defined
4151 || h->root.type == bfd_link_hash_defweak)))
4152 abort ();
4153
4154 s = htab->srelbss;
4155
4156 rel.r_offset = (h->root.u.def.value
4157 + h->root.u.def.section->output_offset
4158 + h->root.u.def.section->output_section->vma);
4159 rel.r_addend = 0;
4160 rel.r_info = ELF32_R_INFO (h->dynindx, R_PARISC_COPY);
4161 loc = (Elf32_External_Rela *) s->contents + s->reloc_count++;
4162 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
4163 }
4164
4165 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
4166 if (h->root.root.string[0] == '_'
4167 && (strcmp (h->root.root.string, "_DYNAMIC") == 0
4168 || strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0))
4169 {
4170 sym->st_shndx = SHN_ABS;
4171 }
4172
4173 return true;
4174 }
4175
4176 /* Used to decide how to sort relocs in an optimal manner for the
4177 dynamic linker, before writing them out. */
4178
4179 static enum elf_reloc_type_class
4180 elf32_hppa_reloc_type_class (rela)
4181 const Elf_Internal_Rela *rela;
4182 {
4183 if (ELF32_R_SYM (rela->r_info) == 0)
4184 return reloc_class_relative;
4185
4186 switch ((int) ELF32_R_TYPE (rela->r_info))
4187 {
4188 case R_PARISC_IPLT:
4189 return reloc_class_plt;
4190 case R_PARISC_COPY:
4191 return reloc_class_copy;
4192 default:
4193 return reloc_class_normal;
4194 }
4195 }
4196
4197 /* Finish up the dynamic sections. */
4198
4199 static boolean
4200 elf32_hppa_finish_dynamic_sections (output_bfd, info)
4201 bfd *output_bfd;
4202 struct bfd_link_info *info;
4203 {
4204 bfd *dynobj;
4205 struct elf32_hppa_link_hash_table *htab;
4206 asection *sdyn;
4207
4208 htab = hppa_link_hash_table (info);
4209 dynobj = htab->elf.dynobj;
4210
4211 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
4212
4213 if (htab->elf.dynamic_sections_created)
4214 {
4215 Elf32_External_Dyn *dyncon, *dynconend;
4216
4217 if (sdyn == NULL)
4218 abort ();
4219
4220 dyncon = (Elf32_External_Dyn *) sdyn->contents;
4221 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->_raw_size);
4222 for (; dyncon < dynconend; dyncon++)
4223 {
4224 Elf_Internal_Dyn dyn;
4225 asection *s;
4226
4227 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
4228
4229 switch (dyn.d_tag)
4230 {
4231 default:
4232 continue;
4233
4234 case DT_PLTGOT:
4235 /* Use PLTGOT to set the GOT register. */
4236 dyn.d_un.d_ptr = elf_gp (output_bfd);
4237 break;
4238
4239 case DT_JMPREL:
4240 s = htab->srelplt;
4241 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
4242 break;
4243
4244 case DT_PLTRELSZ:
4245 s = htab->srelplt;
4246 if (s->_cooked_size != 0)
4247 dyn.d_un.d_val = s->_cooked_size;
4248 else
4249 dyn.d_un.d_val = s->_raw_size;
4250 break;
4251 }
4252
4253 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
4254 }
4255 }
4256
4257 if (htab->sgot != NULL && htab->sgot->_raw_size != 0)
4258 {
4259 /* Fill in the first entry in the global offset table.
4260 We use it to point to our dynamic section, if we have one. */
4261 bfd_put_32 (output_bfd,
4262 (sdyn != NULL
4263 ? sdyn->output_section->vma + sdyn->output_offset
4264 : (bfd_vma) 0),
4265 htab->sgot->contents);
4266
4267 /* The second entry is reserved for use by the dynamic linker. */
4268 memset (htab->sgot->contents + GOT_ENTRY_SIZE, 0, GOT_ENTRY_SIZE);
4269
4270 /* Set .got entry size. */
4271 elf_section_data (htab->sgot->output_section)
4272 ->this_hdr.sh_entsize = GOT_ENTRY_SIZE;
4273 }
4274
4275 if (htab->splt != NULL && htab->splt->_raw_size != 0)
4276 {
4277 /* Set plt entry size. */
4278 elf_section_data (htab->splt->output_section)
4279 ->this_hdr.sh_entsize = PLT_ENTRY_SIZE;
4280
4281 if (htab->need_plt_stub)
4282 {
4283 /* Set up the .plt stub. */
4284 memcpy (htab->splt->contents
4285 + htab->splt->_raw_size - sizeof (plt_stub),
4286 plt_stub, sizeof (plt_stub));
4287
4288 if ((htab->splt->output_offset
4289 + htab->splt->output_section->vma
4290 + htab->splt->_raw_size)
4291 != (htab->sgot->output_offset
4292 + htab->sgot->output_section->vma))
4293 {
4294 (*_bfd_error_handler)
4295 (_(".got section not immediately after .plt section"));
4296 return false;
4297 }
4298 }
4299 }
4300
4301 return true;
4302 }
4303
4304 /* Tweak the OSABI field of the elf header. */
4305
4306 static void
4307 elf32_hppa_post_process_headers (abfd, link_info)
4308 bfd *abfd;
4309 struct bfd_link_info *link_info ATTRIBUTE_UNUSED;
4310 {
4311 Elf_Internal_Ehdr * i_ehdrp;
4312
4313 i_ehdrp = elf_elfheader (abfd);
4314
4315 if (strcmp (bfd_get_target (abfd), "elf32-hppa-linux") == 0)
4316 {
4317 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_LINUX;
4318 }
4319 else
4320 {
4321 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_HPUX;
4322 }
4323 }
4324
4325 /* Called when writing out an object file to decide the type of a
4326 symbol. */
4327 static int
4328 elf32_hppa_elf_get_symbol_type (elf_sym, type)
4329 Elf_Internal_Sym *elf_sym;
4330 int type;
4331 {
4332 if (ELF_ST_TYPE (elf_sym->st_info) == STT_PARISC_MILLI)
4333 return STT_PARISC_MILLI;
4334 else
4335 return type;
4336 }
4337
4338 /* Misc BFD support code. */
4339 #define bfd_elf32_bfd_is_local_label_name elf_hppa_is_local_label_name
4340 #define bfd_elf32_bfd_reloc_type_lookup elf_hppa_reloc_type_lookup
4341 #define elf_info_to_howto elf_hppa_info_to_howto
4342 #define elf_info_to_howto_rel elf_hppa_info_to_howto_rel
4343
4344 /* Stuff for the BFD linker. */
4345 #define bfd_elf32_bfd_final_link elf32_hppa_final_link
4346 #define bfd_elf32_bfd_link_hash_table_create elf32_hppa_link_hash_table_create
4347 #define elf_backend_add_symbol_hook elf32_hppa_add_symbol_hook
4348 #define elf_backend_adjust_dynamic_symbol elf32_hppa_adjust_dynamic_symbol
4349 #define elf_backend_copy_indirect_symbol elf32_hppa_copy_indirect_symbol
4350 #define elf_backend_check_relocs elf32_hppa_check_relocs
4351 #define elf_backend_create_dynamic_sections elf32_hppa_create_dynamic_sections
4352 #define elf_backend_fake_sections elf_hppa_fake_sections
4353 #define elf_backend_relocate_section elf32_hppa_relocate_section
4354 #define elf_backend_hide_symbol elf32_hppa_hide_symbol
4355 #define elf_backend_finish_dynamic_symbol elf32_hppa_finish_dynamic_symbol
4356 #define elf_backend_finish_dynamic_sections elf32_hppa_finish_dynamic_sections
4357 #define elf_backend_size_dynamic_sections elf32_hppa_size_dynamic_sections
4358 #define elf_backend_gc_mark_hook elf32_hppa_gc_mark_hook
4359 #define elf_backend_gc_sweep_hook elf32_hppa_gc_sweep_hook
4360 #define elf_backend_object_p elf32_hppa_object_p
4361 #define elf_backend_final_write_processing elf_hppa_final_write_processing
4362 #define elf_backend_post_process_headers elf32_hppa_post_process_headers
4363 #define elf_backend_get_symbol_type elf32_hppa_elf_get_symbol_type
4364 #define elf_backend_reloc_type_class elf32_hppa_reloc_type_class
4365
4366 #define elf_backend_can_gc_sections 1
4367 #define elf_backend_can_refcount 1
4368 #define elf_backend_plt_alignment 2
4369 #define elf_backend_want_got_plt 0
4370 #define elf_backend_plt_readonly 0
4371 #define elf_backend_want_plt_sym 0
4372 #define elf_backend_got_header_size 8
4373
4374 #define TARGET_BIG_SYM bfd_elf32_hppa_vec
4375 #define TARGET_BIG_NAME "elf32-hppa"
4376 #define ELF_ARCH bfd_arch_hppa
4377 #define ELF_MACHINE_CODE EM_PARISC
4378 #define ELF_MAXPAGESIZE 0x1000
4379
4380 #include "elf32-target.h"
4381
4382 #undef TARGET_BIG_SYM
4383 #define TARGET_BIG_SYM bfd_elf32_hppa_linux_vec
4384 #undef TARGET_BIG_NAME
4385 #define TARGET_BIG_NAME "elf32-hppa-linux"
4386
4387 #define INCLUDED_TARGET_FILE 1
4388 #include "elf32-target.h"
This page took 0.122402 seconds and 4 git commands to generate.