gas/
[binutils.git] / bfd / elf32-vax.c
blob2572b689819673c2b3299a808fd97a08572a8709
1 /* VAX series support for 32-bit ELF
2 Copyright 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006 Free Software Foundation, Inc.
4 Contributed by Matt Thomas <matt@3am-software.com>.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
22 #include "bfd.h"
23 #include "sysdep.h"
24 #include "bfdlink.h"
25 #include "libbfd.h"
26 #include "elf-bfd.h"
27 #include "elf/vax.h"
29 static reloc_howto_type *reloc_type_lookup (bfd *, bfd_reloc_code_real_type);
30 static void rtype_to_howto (bfd *, arelent *, Elf_Internal_Rela *);
31 static struct bfd_hash_entry *elf_vax_link_hash_newfunc (struct bfd_hash_entry *,
32 struct bfd_hash_table *,
33 const char *);
34 static struct bfd_link_hash_table *elf_vax_link_hash_table_create (bfd *);
35 static bfd_boolean elf_vax_check_relocs (bfd *, struct bfd_link_info *,
36 asection *, const Elf_Internal_Rela *);
37 static bfd_boolean elf_vax_adjust_dynamic_symbol (struct bfd_link_info *,
38 struct elf_link_hash_entry *);
39 static bfd_boolean elf_vax_size_dynamic_sections (bfd *, struct bfd_link_info *);
40 static bfd_boolean elf_vax_relocate_section (bfd *, struct bfd_link_info *,
41 bfd *, asection *, bfd_byte *,
42 Elf_Internal_Rela *,
43 Elf_Internal_Sym *, asection **);
44 static bfd_boolean elf_vax_finish_dynamic_symbol (bfd *, struct bfd_link_info *,
45 struct elf_link_hash_entry *,
46 Elf_Internal_Sym *);
47 static bfd_boolean elf_vax_finish_dynamic_sections (bfd *,
48 struct bfd_link_info *);
50 static bfd_boolean elf32_vax_set_private_flags (bfd *, flagword);
51 static bfd_boolean elf32_vax_merge_private_bfd_data (bfd *, bfd *);
52 static bfd_boolean elf32_vax_print_private_bfd_data (bfd *, PTR);
54 static reloc_howto_type howto_table[] = {
55 HOWTO (R_VAX_NONE, /* type */
56 0, /* rightshift */
57 0, /* size (0 = byte, 1 = short, 2 = long) */
58 0, /* bitsize */
59 FALSE, /* pc_relative */
60 0, /* bitpos */
61 complain_overflow_dont, /* complain_on_overflow */
62 bfd_elf_generic_reloc, /* special_function */
63 "R_VAX_NONE", /* name */
64 FALSE, /* partial_inplace */
65 0, /* src_mask */
66 0x00000000, /* dst_mask */
67 FALSE), /* pcrel_offset */
69 HOWTO (R_VAX_32, /* type */
70 0, /* rightshift */
71 2, /* size (0 = byte, 1 = short, 2 = long) */
72 32, /* bitsize */
73 FALSE, /* pc_relative */
74 0, /* bitpos */
75 complain_overflow_bitfield, /* complain_on_overflow */
76 bfd_elf_generic_reloc, /* special_function */
77 "R_VAX_32", /* name */
78 FALSE, /* partial_inplace */
79 0, /* src_mask */
80 0xffffffff, /* dst_mask */
81 FALSE), /* pcrel_offset */
83 HOWTO (R_VAX_16, /* type */
84 0, /* rightshift */
85 1, /* size (0 = byte, 1 = short, 2 = long) */
86 16, /* bitsize */
87 FALSE, /* pc_relative */
88 0, /* bitpos */
89 complain_overflow_bitfield, /* complain_on_overflow */
90 bfd_elf_generic_reloc, /* special_function */
91 "R_VAX_16", /* name */
92 FALSE, /* partial_inplace */
93 0, /* src_mask */
94 0x0000ffff, /* dst_mask */
95 FALSE), /* pcrel_offset */
97 HOWTO (R_VAX_8, /* type */
98 0, /* rightshift */
99 0, /* size (0 = byte, 1 = short, 2 = long) */
100 8, /* bitsize */
101 FALSE, /* pc_relative */
102 0, /* bitpos */
103 complain_overflow_bitfield, /* complain_on_overflow */
104 bfd_elf_generic_reloc, /* special_function */
105 "R_VAX_8", /* name */
106 FALSE, /* partial_inplace */
107 0, /* src_mask */
108 0x000000ff, /* dst_mask */
109 FALSE), /* pcrel_offset */
111 HOWTO (R_VAX_PC32, /* type */
112 0, /* rightshift */
113 2, /* size (0 = byte, 1 = short, 2 = long) */
114 32, /* bitsize */
115 TRUE, /* pc_relative */
116 0, /* bitpos */
117 complain_overflow_bitfield, /* complain_on_overflow */
118 bfd_elf_generic_reloc, /* special_function */
119 "R_VAX_PC32", /* name */
120 FALSE, /* partial_inplace */
121 0, /* src_mask */
122 0xffffffff, /* dst_mask */
123 TRUE), /* pcrel_offset */
125 HOWTO (R_VAX_PC16, /* type */
126 0, /* rightshift */
127 1, /* size (0 = byte, 1 = short, 2 = long) */
128 16, /* bitsize */
129 TRUE, /* pc_relative */
130 0, /* bitpos */
131 complain_overflow_signed, /* complain_on_overflow */
132 bfd_elf_generic_reloc, /* special_function */
133 "R_VAX_PC16", /* name */
134 FALSE, /* partial_inplace */
135 0, /* src_mask */
136 0x0000ffff, /* dst_mask */
137 TRUE), /* pcrel_offset */
139 HOWTO (R_VAX_PC8, /* type */
140 0, /* rightshift */
141 0, /* size (0 = byte, 1 = short, 2 = long) */
142 8, /* bitsize */
143 TRUE, /* pc_relative */
144 0, /* bitpos */
145 complain_overflow_signed, /* complain_on_overflow */
146 bfd_elf_generic_reloc, /* special_function */
147 "R_VAX_PC8", /* name */
148 FALSE, /* partial_inplace */
149 0, /* src_mask */
150 0x000000ff, /* dst_mask */
151 TRUE), /* pcrel_offset */
153 HOWTO (R_VAX_GOT32, /* type */
154 0, /* rightshift */
155 2, /* size (0 = byte, 1 = short, 2 = long) */
156 32, /* bitsize */
157 TRUE, /* pc_relative */
158 0, /* bitpos */
159 complain_overflow_bitfield, /* complain_on_overflow */
160 bfd_elf_generic_reloc, /* special_function */
161 "R_VAX_GOT32", /* name */
162 FALSE, /* partial_inplace */
163 0, /* src_mask */
164 0xffffffff, /* dst_mask */
165 TRUE), /* pcrel_offset */
167 EMPTY_HOWTO (-1),
168 EMPTY_HOWTO (-1),
169 EMPTY_HOWTO (-1),
170 EMPTY_HOWTO (-1),
171 EMPTY_HOWTO (-1),
173 HOWTO (R_VAX_PLT32, /* type */
174 0, /* rightshift */
175 2, /* size (0 = byte, 1 = short, 2 = long) */
176 32, /* bitsize */
177 TRUE, /* pc_relative */
178 0, /* bitpos */
179 complain_overflow_bitfield, /* complain_on_overflow */
180 bfd_elf_generic_reloc, /* special_function */
181 "R_VAX_PLT32", /* name */
182 FALSE, /* partial_inplace */
183 0, /* src_mask */
184 0xffffffff, /* dst_mask */
185 TRUE), /* pcrel_offset */
187 EMPTY_HOWTO (-1),
188 EMPTY_HOWTO (-1),
189 EMPTY_HOWTO (-1),
190 EMPTY_HOWTO (-1),
191 EMPTY_HOWTO (-1),
193 HOWTO (R_VAX_COPY, /* type */
194 0, /* rightshift */
195 0, /* size (0 = byte, 1 = short, 2 = long) */
196 0, /* bitsize */
197 FALSE, /* pc_relative */
198 0, /* bitpos */
199 complain_overflow_dont, /* complain_on_overflow */
200 bfd_elf_generic_reloc, /* special_function */
201 "R_VAX_COPY", /* name */
202 FALSE, /* partial_inplace */
203 0, /* src_mask */
204 0xffffffff, /* dst_mask */
205 FALSE), /* pcrel_offset */
207 HOWTO (R_VAX_GLOB_DAT, /* type */
208 0, /* rightshift */
209 2, /* size (0 = byte, 1 = short, 2 = long) */
210 32, /* bitsize */
211 FALSE, /* pc_relative */
212 0, /* bitpos */
213 complain_overflow_dont, /* complain_on_overflow */
214 bfd_elf_generic_reloc, /* special_function */
215 "R_VAX_GLOB_DAT", /* name */
216 FALSE, /* partial_inplace */
217 0, /* src_mask */
218 0xffffffff, /* dst_mask */
219 FALSE), /* pcrel_offset */
221 HOWTO (R_VAX_JMP_SLOT, /* type */
222 0, /* rightshift */
223 2, /* size (0 = byte, 1 = short, 2 = long) */
224 32, /* bitsize */
225 FALSE, /* pc_relative */
226 0, /* bitpos */
227 complain_overflow_dont, /* complain_on_overflow */
228 bfd_elf_generic_reloc, /* special_function */
229 "R_VAX_JMP_SLOT", /* name */
230 FALSE, /* partial_inplace */
231 0, /* src_mask */
232 0xffffffff, /* dst_mask */
233 FALSE), /* pcrel_offset */
235 HOWTO (R_VAX_RELATIVE, /* type */
236 0, /* rightshift */
237 2, /* size (0 = byte, 1 = short, 2 = long) */
238 32, /* bitsize */
239 FALSE, /* pc_relative */
240 0, /* bitpos */
241 complain_overflow_dont, /* complain_on_overflow */
242 bfd_elf_generic_reloc, /* special_function */
243 "R_VAX_RELATIVE", /* name */
244 FALSE, /* partial_inplace */
245 0, /* src_mask */
246 0xffffffff, /* dst_mask */
247 FALSE), /* pcrel_offset */
249 /* GNU extension to record C++ vtable hierarchy */
250 HOWTO (R_VAX_GNU_VTINHERIT, /* type */
251 0, /* rightshift */
252 2, /* size (0 = byte, 1 = short, 2 = long) */
253 0, /* bitsize */
254 FALSE, /* pc_relative */
255 0, /* bitpos */
256 complain_overflow_dont, /* complain_on_overflow */
257 NULL, /* special_function */
258 "R_VAX_GNU_VTINHERIT", /* name */
259 FALSE, /* partial_inplace */
260 0, /* src_mask */
261 0, /* dst_mask */
262 FALSE), /* pcrel_offset */
264 /* GNU extension to record C++ vtable member usage */
265 HOWTO (R_VAX_GNU_VTENTRY, /* type */
266 0, /* rightshift */
267 2, /* size (0 = byte, 1 = short, 2 = long) */
268 0, /* bitsize */
269 FALSE, /* pc_relative */
270 0, /* bitpos */
271 complain_overflow_dont, /* complain_on_overflow */
272 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
273 "R_VAX_GNU_VTENTRY", /* name */
274 FALSE, /* partial_inplace */
275 0, /* src_mask */
276 0, /* dst_mask */
277 FALSE), /* pcrel_offset */
280 static void
281 rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *cache_ptr,
282 Elf_Internal_Rela *dst)
284 BFD_ASSERT (ELF32_R_TYPE(dst->r_info) < (unsigned int) R_VAX_max);
285 cache_ptr->howto = &howto_table[ELF32_R_TYPE(dst->r_info)];
288 #define elf_info_to_howto rtype_to_howto
290 static const struct
292 bfd_reloc_code_real_type bfd_val;
293 int elf_val;
294 } reloc_map[] = {
295 { BFD_RELOC_NONE, R_VAX_NONE },
296 { BFD_RELOC_32, R_VAX_32 },
297 { BFD_RELOC_16, R_VAX_16 },
298 { BFD_RELOC_8, R_VAX_8 },
299 { BFD_RELOC_32_PCREL, R_VAX_PC32 },
300 { BFD_RELOC_16_PCREL, R_VAX_PC16 },
301 { BFD_RELOC_8_PCREL, R_VAX_PC8 },
302 { BFD_RELOC_32_GOT_PCREL, R_VAX_GOT32 },
303 { BFD_RELOC_32_PLT_PCREL, R_VAX_PLT32 },
304 { BFD_RELOC_NONE, R_VAX_COPY },
305 { BFD_RELOC_VAX_GLOB_DAT, R_VAX_GLOB_DAT },
306 { BFD_RELOC_VAX_JMP_SLOT, R_VAX_JMP_SLOT },
307 { BFD_RELOC_VAX_RELATIVE, R_VAX_RELATIVE },
308 { BFD_RELOC_CTOR, R_VAX_32 },
309 { BFD_RELOC_VTABLE_INHERIT, R_VAX_GNU_VTINHERIT },
310 { BFD_RELOC_VTABLE_ENTRY, R_VAX_GNU_VTENTRY },
313 static reloc_howto_type *
314 reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED, bfd_reloc_code_real_type code)
316 unsigned int i;
317 for (i = 0; i < sizeof (reloc_map) / sizeof (reloc_map[0]); i++)
319 if (reloc_map[i].bfd_val == code)
320 return &howto_table[reloc_map[i].elf_val];
322 return 0;
325 #define bfd_elf32_bfd_reloc_type_lookup reloc_type_lookup
326 #define ELF_ARCH bfd_arch_vax
327 /* end code generated by elf.el */
329 /* Functions for the VAX ELF linker. */
331 /* The name of the dynamic interpreter. This is put in the .interp
332 section. */
334 #define ELF_DYNAMIC_INTERPRETER "/usr/libexec/ld.elf_so"
336 /* The size in bytes of an entry in the procedure linkage table. */
338 #define PLT_ENTRY_SIZE 12
340 /* The first entry in a procedure linkage table looks like this. See
341 the SVR4 ABI VAX supplement to see how this works. */
343 static const bfd_byte elf_vax_plt0_entry[PLT_ENTRY_SIZE] =
345 0xdd, 0xef, /* pushl l^ */
346 0, 0, 0, 0, /* offset to .plt.got + 4 */
347 0x17, 0xff, /* jmp @L^(pc) */
348 0, 0, 0, 0, /* offset to .plt.got + 8 */
351 /* Subsequent entries in a procedure linkage table look like this. */
353 static const bfd_byte elf_vax_plt_entry[PLT_ENTRY_SIZE] =
355 0x40, 0x00, /* .word ^M<r6> */
356 0x16, 0xef, /* jsb L^(pc) */
357 0, 0, 0, 0, /* replaced with offset to start of .plt */
358 0, 0, 0, 0, /* index into .rela.plt */
361 /* The VAX linker needs to keep track of the number of relocs that it
362 decides to copy in check_relocs for each symbol. This is so that it
363 can discard PC relative relocs if it doesn't need them when linking
364 with -Bsymbolic. We store the information in a field extending the
365 regular ELF linker hash table. */
367 /* This structure keeps track of the number of PC relative relocs we have
368 copied for a given symbol. */
370 struct elf_vax_pcrel_relocs_copied
372 /* Next section. */
373 struct elf_vax_pcrel_relocs_copied *next;
374 /* A section in dynobj. */
375 asection *section;
376 /* Number of relocs copied in this section. */
377 bfd_size_type count;
380 /* VAX ELF linker hash entry. */
382 struct elf_vax_link_hash_entry
384 struct elf_link_hash_entry root;
386 /* Number of PC relative relocs copied for this symbol. */
387 struct elf_vax_pcrel_relocs_copied *pcrel_relocs_copied;
389 bfd_vma got_addend;
392 /* VAX ELF linker hash table. */
394 struct elf_vax_link_hash_table
396 struct elf_link_hash_table root;
399 /* Declare this now that the above structures are defined. */
401 static bfd_boolean elf_vax_discard_copies (struct elf_vax_link_hash_entry *,
402 PTR);
404 /* Declare this now that the above structures are defined. */
406 static bfd_boolean elf_vax_instantiate_got_entries (struct elf_link_hash_entry *,
407 PTR);
409 /* Traverse an VAX ELF linker hash table. */
411 #define elf_vax_link_hash_traverse(table, func, info) \
412 (elf_link_hash_traverse \
413 (&(table)->root, \
414 (bfd_boolean (*) (struct elf_link_hash_entry *, PTR)) (func), \
415 (info)))
417 /* Get the VAX ELF linker hash table from a link_info structure. */
419 #define elf_vax_hash_table(p) ((struct elf_vax_link_hash_table *) (p)->hash)
421 /* Create an entry in an VAX ELF linker hash table. */
423 static struct bfd_hash_entry *
424 elf_vax_link_hash_newfunc (struct bfd_hash_entry *entry,
425 struct bfd_hash_table *table,
426 const char *string)
428 struct elf_vax_link_hash_entry *ret =
429 (struct elf_vax_link_hash_entry *) entry;
431 /* Allocate the structure if it has not already been allocated by a
432 subclass. */
433 if (ret == NULL)
434 ret = ((struct elf_vax_link_hash_entry *)
435 bfd_hash_allocate (table,
436 sizeof (struct elf_vax_link_hash_entry)));
437 if (ret == NULL)
438 return (struct bfd_hash_entry *) ret;
440 /* Call the allocation method of the superclass. */
441 ret = ((struct elf_vax_link_hash_entry *)
442 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
443 table, string));
444 if (ret != NULL)
446 ret->pcrel_relocs_copied = NULL;
449 return (struct bfd_hash_entry *) ret;
452 /* Create an VAX ELF linker hash table. */
454 static struct bfd_link_hash_table *
455 elf_vax_link_hash_table_create (bfd *abfd)
457 struct elf_vax_link_hash_table *ret;
458 bfd_size_type amt = sizeof (struct elf_vax_link_hash_table);
460 ret = bfd_malloc (amt);
461 if (ret == NULL)
462 return NULL;
464 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
465 elf_vax_link_hash_newfunc,
466 sizeof (struct elf_vax_link_hash_entry)))
468 free (ret);
469 return NULL;
472 return &ret->root.root;
475 /* Keep vax-specific flags in the ELF header */
476 static bfd_boolean
477 elf32_vax_set_private_flags (bfd *abfd, flagword flags)
479 elf_elfheader (abfd)->e_flags = flags;
480 elf_flags_init (abfd) = TRUE;
481 return TRUE;
484 /* Merge backend specific data from an object file to the output
485 object file when linking. */
486 static bfd_boolean
487 elf32_vax_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
489 flagword out_flags;
490 flagword in_flags;
492 if ( bfd_get_flavour (ibfd) != bfd_target_elf_flavour
493 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
494 return TRUE;
496 in_flags = elf_elfheader (ibfd)->e_flags;
497 out_flags = elf_elfheader (obfd)->e_flags;
499 if (!elf_flags_init (obfd))
501 elf_flags_init (obfd) = TRUE;
502 elf_elfheader (obfd)->e_flags = in_flags;
505 return TRUE;
508 /* Display the flags field */
509 static bfd_boolean
510 elf32_vax_print_private_bfd_data (bfd *abfd, PTR ptr)
512 FILE *file = (FILE *) ptr;
514 BFD_ASSERT (abfd != NULL && ptr != NULL);
516 /* Print normal ELF private data. */
517 _bfd_elf_print_private_bfd_data (abfd, ptr);
519 /* Ignore init flag - it may not be set, despite the flags field containing valid data. */
521 /* xgettext:c-format */
522 fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
524 if (elf_elfheader (abfd)->e_flags & EF_VAX_NONPIC)
525 fprintf (file, _(" [nonpic]"));
527 if (elf_elfheader (abfd)->e_flags & EF_VAX_DFLOAT)
528 fprintf (file, _(" [d-float]"));
530 if (elf_elfheader (abfd)->e_flags & EF_VAX_GFLOAT)
531 fprintf (file, _(" [g-float]"));
533 fputc ('\n', file);
535 return TRUE;
537 /* Look through the relocs for a section during the first phase, and
538 allocate space in the global offset table or procedure linkage
539 table. */
541 static bfd_boolean
542 elf_vax_check_relocs (bfd *abfd, struct bfd_link_info *info, asection *sec,
543 const Elf_Internal_Rela *relocs)
545 bfd *dynobj;
546 Elf_Internal_Shdr *symtab_hdr;
547 struct elf_link_hash_entry **sym_hashes;
548 const Elf_Internal_Rela *rel;
549 const Elf_Internal_Rela *rel_end;
550 asection *sgot;
551 asection *srelgot;
552 asection *sreloc;
554 if (info->relocatable)
555 return TRUE;
557 dynobj = elf_hash_table (info)->dynobj;
558 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
559 sym_hashes = elf_sym_hashes (abfd);
561 sgot = NULL;
562 srelgot = NULL;
563 sreloc = NULL;
565 rel_end = relocs + sec->reloc_count;
566 for (rel = relocs; rel < rel_end; rel++)
568 unsigned long r_symndx;
569 struct elf_link_hash_entry *h;
571 r_symndx = ELF32_R_SYM (rel->r_info);
573 if (r_symndx < symtab_hdr->sh_info)
574 h = NULL;
575 else
577 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
578 while (h->root.type == bfd_link_hash_indirect
579 || h->root.type == bfd_link_hash_warning)
580 h = (struct elf_link_hash_entry *) h->root.u.i.link;
583 switch (ELF32_R_TYPE (rel->r_info))
585 case R_VAX_GOT32:
586 if (h != NULL
587 && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
588 break;
590 /* This symbol requires a global offset table entry. */
592 if (dynobj == NULL)
594 /* Create the .got section. */
595 elf_hash_table (info)->dynobj = dynobj = abfd;
596 if (!_bfd_elf_create_got_section (dynobj, info))
597 return FALSE;
600 if (sgot == NULL)
602 sgot = bfd_get_section_by_name (dynobj, ".got");
603 BFD_ASSERT (sgot != NULL);
606 if (srelgot == NULL
607 && (h != NULL || info->shared))
609 srelgot = bfd_get_section_by_name (dynobj, ".rela.got");
610 if (srelgot == NULL)
612 srelgot = bfd_make_section_with_flags (dynobj,
613 ".rela.got",
614 (SEC_ALLOC
615 | SEC_LOAD
616 | SEC_HAS_CONTENTS
617 | SEC_IN_MEMORY
618 | SEC_LINKER_CREATED
619 | SEC_READONLY));
620 if (srelgot == NULL
621 || !bfd_set_section_alignment (dynobj, srelgot, 2))
622 return FALSE;
626 if (h != NULL)
628 struct elf_vax_link_hash_entry *eh;
630 eh = (struct elf_vax_link_hash_entry *) h;
631 if (h->got.refcount == -1)
633 h->got.refcount = 1;
634 eh->got_addend = rel->r_addend;
636 else
638 h->got.refcount++;
639 if (eh->got_addend != (bfd_vma) rel->r_addend)
640 (*_bfd_error_handler)
641 (_("%s: warning: GOT addend of %ld to `%s' does not match previous GOT addend of %ld"),
642 bfd_get_filename (abfd), rel->r_addend,
643 h->root.root.string,
644 eh->got_addend);
648 break;
650 case R_VAX_PLT32:
651 /* This symbol requires a procedure linkage table entry. We
652 actually build the entry in adjust_dynamic_symbol,
653 because this might be a case of linking PIC code which is
654 never referenced by a dynamic object, in which case we
655 don't need to generate a procedure linkage table entry
656 after all. */
658 /* If this is a local symbol, we resolve it directly without
659 creating a procedure linkage table entry. */
660 if (h == NULL)
661 continue;
663 h->needs_plt = 1;
664 if (h->plt.refcount == -1)
665 h->plt.refcount = 1;
666 else
667 h->plt.refcount++;
668 break;
670 case R_VAX_PC8:
671 case R_VAX_PC16:
672 case R_VAX_PC32:
673 /* If we are creating a shared library and this is not a local
674 symbol, we need to copy the reloc into the shared library.
675 However when linking with -Bsymbolic and this is a global
676 symbol which is defined in an object we are including in the
677 link (i.e., DEF_REGULAR is set), then we can resolve the
678 reloc directly. At this point we have not seen all the input
679 files, so it is possible that DEF_REGULAR is not set now but
680 will be set later (it is never cleared). We account for that
681 possibility below by storing information in the
682 pcrel_relocs_copied field of the hash table entry. */
683 if (!(info->shared
684 && (sec->flags & SEC_ALLOC) != 0
685 && h != NULL
686 && (!info->symbolic
687 || !h->def_regular)))
689 if (h != NULL)
691 /* Make sure a plt entry is created for this symbol if
692 it turns out to be a function defined by a dynamic
693 object. */
694 if (h->plt.refcount == -1)
695 h->plt.refcount = 1;
696 else
697 h->plt.refcount++;
699 break;
701 /* Fall through. */
702 case R_VAX_8:
703 case R_VAX_16:
704 case R_VAX_32:
705 if (h != NULL)
707 /* Make sure a plt entry is created for this symbol if it
708 turns out to be a function defined by a dynamic object. */
709 if (h->plt.refcount == -1)
710 h->plt.refcount = 1;
711 else
712 h->plt.refcount++;
715 /* If we are creating a shared library, we need to copy the
716 reloc into the shared library. */
717 if (info->shared
718 && (sec->flags & SEC_ALLOC) != 0)
720 /* When creating a shared object, we must copy these
721 reloc types into the output file. We create a reloc
722 section in dynobj and make room for this reloc. */
723 if (sreloc == NULL)
725 const char *name;
727 name = (bfd_elf_string_from_elf_section
728 (abfd,
729 elf_elfheader (abfd)->e_shstrndx,
730 elf_section_data (sec)->rel_hdr.sh_name));
731 if (name == NULL)
732 return FALSE;
734 BFD_ASSERT (CONST_STRNEQ (name, ".rela")
735 && strcmp (bfd_get_section_name (abfd, sec),
736 name + 5) == 0);
738 sreloc = bfd_get_section_by_name (dynobj, name);
739 if (sreloc == NULL)
741 sreloc = bfd_make_section_with_flags (dynobj,
742 name,
743 (SEC_ALLOC
744 | SEC_LOAD
745 | SEC_HAS_CONTENTS
746 | SEC_IN_MEMORY
747 | SEC_LINKER_CREATED
748 | SEC_READONLY));
749 if (sreloc == NULL
750 || !bfd_set_section_alignment (dynobj, sreloc, 2))
751 return FALSE;
753 if (sec->flags & SEC_READONLY)
754 info->flags |= DF_TEXTREL;
757 sreloc->size += sizeof (Elf32_External_Rela);
759 /* If we are linking with -Bsymbolic, we count the number of
760 PC relative relocations we have entered for this symbol,
761 so that we can discard them again if the symbol is later
762 defined by a regular object. Note that this function is
763 only called if we are using a vaxelf linker hash table,
764 which means that h is really a pointer to an
765 elf_vax_link_hash_entry. */
766 if ((ELF32_R_TYPE (rel->r_info) == R_VAX_PC8
767 || ELF32_R_TYPE (rel->r_info) == R_VAX_PC16
768 || ELF32_R_TYPE (rel->r_info) == R_VAX_PC32)
769 && info->symbolic)
771 struct elf_vax_link_hash_entry *eh;
772 struct elf_vax_pcrel_relocs_copied *p;
774 eh = (struct elf_vax_link_hash_entry *) h;
776 for (p = eh->pcrel_relocs_copied; p != NULL; p = p->next)
777 if (p->section == sreloc)
778 break;
780 if (p == NULL)
782 p = ((struct elf_vax_pcrel_relocs_copied *)
783 bfd_alloc (dynobj, (bfd_size_type) sizeof *p));
784 if (p == NULL)
785 return FALSE;
786 p->next = eh->pcrel_relocs_copied;
787 eh->pcrel_relocs_copied = p;
788 p->section = sreloc;
789 p->count = 0;
792 ++p->count;
796 break;
798 /* This relocation describes the C++ object vtable hierarchy.
799 Reconstruct it for later use during GC. */
800 case R_VAX_GNU_VTINHERIT:
801 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
802 return FALSE;
803 break;
805 /* This relocation describes which C++ vtable entries are actually
806 used. Record for later use during GC. */
807 case R_VAX_GNU_VTENTRY:
808 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
809 return FALSE;
810 break;
812 default:
813 break;
817 return TRUE;
820 /* Return the section that should be marked against GC for a given
821 relocation. */
823 static asection *
824 elf_vax_gc_mark_hook (asection *sec,
825 struct bfd_link_info *info,
826 Elf_Internal_Rela *rel,
827 struct elf_link_hash_entry *h,
828 Elf_Internal_Sym *sym)
830 if (h != NULL)
831 switch (ELF32_R_TYPE (rel->r_info))
833 case R_VAX_GNU_VTINHERIT:
834 case R_VAX_GNU_VTENTRY:
835 return NULL;
838 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
841 /* Update the got entry reference counts for the section being removed. */
843 static bfd_boolean
844 elf_vax_gc_sweep_hook (bfd *abfd, struct bfd_link_info *info, asection *sec,
845 const Elf_Internal_Rela *relocs)
847 Elf_Internal_Shdr *symtab_hdr;
848 struct elf_link_hash_entry **sym_hashes;
849 const Elf_Internal_Rela *rel, *relend;
850 bfd *dynobj;
852 dynobj = elf_hash_table (info)->dynobj;
853 if (dynobj == NULL)
854 return TRUE;
856 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
857 sym_hashes = elf_sym_hashes (abfd);
859 relend = relocs + sec->reloc_count;
860 for (rel = relocs; rel < relend; rel++)
862 unsigned long r_symndx;
863 struct elf_link_hash_entry *h = NULL;
865 r_symndx = ELF32_R_SYM (rel->r_info);
866 if (r_symndx >= symtab_hdr->sh_info)
868 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
869 while (h->root.type == bfd_link_hash_indirect
870 || h->root.type == bfd_link_hash_warning)
871 h = (struct elf_link_hash_entry *) h->root.u.i.link;
874 switch (ELF32_R_TYPE (rel->r_info))
876 case R_VAX_GOT32:
877 if (h != NULL && h->got.refcount > 0)
878 --h->got.refcount;
879 break;
881 case R_VAX_PLT32:
882 case R_VAX_PC8:
883 case R_VAX_PC16:
884 case R_VAX_PC32:
885 case R_VAX_8:
886 case R_VAX_16:
887 case R_VAX_32:
888 if (h != NULL && h->plt.refcount > 0)
889 --h->plt.refcount;
890 break;
892 default:
893 break;
897 return TRUE;
900 /* Adjust a symbol defined by a dynamic object and referenced by a
901 regular object. The current definition is in some section of the
902 dynamic object, but we're not including those sections. We have to
903 change the definition to something the rest of the link can
904 understand. */
906 static bfd_boolean
907 elf_vax_adjust_dynamic_symbol (info, h)
908 struct bfd_link_info *info;
909 struct elf_link_hash_entry *h;
911 bfd *dynobj;
912 asection *s;
913 unsigned int power_of_two;
915 dynobj = elf_hash_table (info)->dynobj;
917 /* Make sure we know what is going on here. */
918 BFD_ASSERT (dynobj != NULL
919 && (h->needs_plt
920 || h->u.weakdef != NULL
921 || (h->def_dynamic
922 && h->ref_regular
923 && !h->def_regular)));
925 /* If this is a function, put it in the procedure linkage table. We
926 will fill in the contents of the procedure linkage table later,
927 when we know the address of the .got section. */
928 if (h->type == STT_FUNC
929 || h->needs_plt)
931 if (! info->shared
932 && !h->def_dynamic
933 && !h->ref_dynamic
934 /* We must always create the plt entry if it was referenced
935 by a PLTxxO relocation. In this case we already recorded
936 it as a dynamic symbol. */
937 && h->dynindx == -1)
939 /* This case can occur if we saw a PLTxx reloc in an input
940 file, but the symbol was never referred to by a dynamic
941 object. In such a case, we don't actually need to build
942 a procedure linkage table, and we can just do a PCxx
943 reloc instead. */
944 BFD_ASSERT (h->needs_plt);
945 h->plt.offset = (bfd_vma) -1;
946 return TRUE;
949 /* GC may have rendered this entry unused. */
950 if (h->plt.refcount <= 0)
952 h->needs_plt = 0;
953 h->plt.offset = (bfd_vma) -1;
954 return TRUE;
957 /* Make sure this symbol is output as a dynamic symbol. */
958 if (h->dynindx == -1)
960 if (! bfd_elf_link_record_dynamic_symbol (info, h))
961 return FALSE;
964 s = bfd_get_section_by_name (dynobj, ".plt");
965 BFD_ASSERT (s != NULL);
967 /* If this is the first .plt entry, make room for the special
968 first entry. */
969 if (s->size == 0)
971 s->size += PLT_ENTRY_SIZE;
974 /* If this symbol is not defined in a regular file, and we are
975 not generating a shared library, then set the symbol to this
976 location in the .plt. This is required to make function
977 pointers compare as equal between the normal executable and
978 the shared library. */
979 if (!info->shared
980 && !h->def_regular)
982 h->root.u.def.section = s;
983 h->root.u.def.value = s->size;
986 h->plt.offset = s->size;
988 /* Make room for this entry. */
989 s->size += PLT_ENTRY_SIZE;
991 /* We also need to make an entry in the .got.plt section, which
992 will be placed in the .got section by the linker script. */
994 s = bfd_get_section_by_name (dynobj, ".got.plt");
995 BFD_ASSERT (s != NULL);
996 s->size += 4;
998 /* We also need to make an entry in the .rela.plt section. */
1000 s = bfd_get_section_by_name (dynobj, ".rela.plt");
1001 BFD_ASSERT (s != NULL);
1002 s->size += sizeof (Elf32_External_Rela);
1004 return TRUE;
1007 /* Reinitialize the plt offset now that it is not used as a reference
1008 count any more. */
1009 h->plt.offset = (bfd_vma) -1;
1011 /* If this is a weak symbol, and there is a real definition, the
1012 processor independent code will have arranged for us to see the
1013 real definition first, and we can just use the same value. */
1014 if (h->u.weakdef != NULL)
1016 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
1017 || h->u.weakdef->root.type == bfd_link_hash_defweak);
1018 h->root.u.def.section = h->u.weakdef->root.u.def.section;
1019 h->root.u.def.value = h->u.weakdef->root.u.def.value;
1020 return TRUE;
1023 /* This is a reference to a symbol defined by a dynamic object which
1024 is not a function. */
1026 /* If we are creating a shared library, we must presume that the
1027 only references to the symbol are via the global offset table.
1028 For such cases we need not do anything here; the relocations will
1029 be handled correctly by relocate_section. */
1030 if (info->shared)
1031 return TRUE;
1033 if (h->size == 0)
1035 (*_bfd_error_handler) (_("dynamic variable `%s' is zero size"),
1036 h->root.root.string);
1037 return TRUE;
1040 /* We must allocate the symbol in our .dynbss section, which will
1041 become part of the .bss section of the executable. There will be
1042 an entry for this symbol in the .dynsym section. The dynamic
1043 object will contain position independent code, so all references
1044 from the dynamic object to this symbol will go through the global
1045 offset table. The dynamic linker will use the .dynsym entry to
1046 determine the address it must put in the global offset table, so
1047 both the dynamic object and the regular object will refer to the
1048 same memory location for the variable. */
1050 s = bfd_get_section_by_name (dynobj, ".dynbss");
1051 BFD_ASSERT (s != NULL);
1053 /* We must generate a R_VAX_COPY reloc to tell the dynamic linker to
1054 copy the initial value out of the dynamic object and into the
1055 runtime process image. We need to remember the offset into the
1056 .rela.bss section we are going to use. */
1057 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
1059 asection *srel;
1061 srel = bfd_get_section_by_name (dynobj, ".rela.bss");
1062 BFD_ASSERT (srel != NULL);
1063 srel->size += sizeof (Elf32_External_Rela);
1064 h->needs_copy = 1;
1067 /* We need to figure out the alignment required for this symbol. I
1068 have no idea how ELF linkers handle this. */
1069 power_of_two = bfd_log2 (h->size);
1070 if (power_of_two > 3)
1071 power_of_two = 3;
1073 /* Apply the required alignment. */
1074 s->size = BFD_ALIGN (s->size, (bfd_size_type) (1 << power_of_two));
1075 if (power_of_two > bfd_get_section_alignment (dynobj, s))
1077 if (!bfd_set_section_alignment (dynobj, s, power_of_two))
1078 return FALSE;
1081 /* Define the symbol as being at this point in the section. */
1082 h->root.u.def.section = s;
1083 h->root.u.def.value = s->size;
1085 /* Increment the section size to make room for the symbol. */
1086 s->size += h->size;
1088 return TRUE;
1091 /* Set the sizes of the dynamic sections. */
1093 static bfd_boolean
1094 elf_vax_size_dynamic_sections (bfd *output_bfd, struct bfd_link_info *info)
1096 bfd *dynobj;
1097 asection *s;
1098 bfd_boolean plt;
1099 bfd_boolean relocs;
1100 bfd_boolean reltext;
1102 dynobj = elf_hash_table (info)->dynobj;
1103 BFD_ASSERT (dynobj != NULL);
1105 if (elf_hash_table (info)->dynamic_sections_created)
1107 /* Set the contents of the .interp section to the interpreter. */
1108 if (info->executable)
1110 s = bfd_get_section_by_name (dynobj, ".interp");
1111 BFD_ASSERT (s != NULL);
1112 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
1113 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
1116 else
1118 /* We may have created entries in the .rela.got and .got sections.
1119 However, if we are not creating the dynamic sections, we will
1120 not actually use these entries. Reset the size of .rela.got
1121 and .got, which will cause it to get stripped from the output
1122 file below. */
1123 s = bfd_get_section_by_name (dynobj, ".rela.got");
1124 if (s != NULL)
1125 s->size = 0;
1126 s = bfd_get_section_by_name (dynobj, ".got.plt");
1127 if (s != NULL)
1128 s->size = 0;
1129 s = bfd_get_section_by_name (dynobj, ".got");
1130 if (s != NULL)
1131 s->size = 0;
1134 /* If this is a -Bsymbolic shared link, then we need to discard all PC
1135 relative relocs against symbols defined in a regular object. We
1136 allocated space for them in the check_relocs routine, but we will not
1137 fill them in in the relocate_section routine. */
1138 if (info->shared && info->symbolic)
1139 elf_vax_link_hash_traverse (elf_vax_hash_table (info),
1140 elf_vax_discard_copies,
1141 NULL);
1143 /* If this is a -Bsymbolic shared link or a static link, we need to
1144 discard all the got entries we've recorded. Otherwise, we need to
1145 instantiate (allocate space for them). */
1146 elf_link_hash_traverse (elf_hash_table (info),
1147 elf_vax_instantiate_got_entries,
1148 (PTR) info);
1150 /* The check_relocs and adjust_dynamic_symbol entry points have
1151 determined the sizes of the various dynamic sections. Allocate
1152 memory for them. */
1153 plt = FALSE;
1154 relocs = FALSE;
1155 reltext = FALSE;
1156 for (s = dynobj->sections; s != NULL; s = s->next)
1158 const char *name;
1160 if ((s->flags & SEC_LINKER_CREATED) == 0)
1161 continue;
1163 /* It's OK to base decisions on the section name, because none
1164 of the dynobj section names depend upon the input files. */
1165 name = bfd_get_section_name (dynobj, s);
1167 if (strcmp (name, ".plt") == 0)
1169 /* Remember whether there is a PLT. */
1170 plt = s->size != 0;
1172 else if (CONST_STRNEQ (name, ".rela"))
1174 if (s->size != 0)
1176 asection *target;
1178 /* Remember whether there are any reloc sections other
1179 than .rela.plt. */
1180 if (strcmp (name, ".rela.plt") != 0)
1182 const char *outname;
1184 relocs = TRUE;
1186 /* If this relocation section applies to a read only
1187 section, then we probably need a DT_TEXTREL
1188 entry. .rela.plt is actually associated with
1189 .got.plt, which is never readonly. */
1190 outname = bfd_get_section_name (output_bfd,
1191 s->output_section);
1192 target = bfd_get_section_by_name (output_bfd, outname + 5);
1193 if (target != NULL
1194 && (target->flags & SEC_READONLY) != 0
1195 && (target->flags & SEC_ALLOC) != 0)
1196 reltext = TRUE;
1199 /* We use the reloc_count field as a counter if we need
1200 to copy relocs into the output file. */
1201 s->reloc_count = 0;
1204 else if (! CONST_STRNEQ (name, ".got")
1205 && strcmp (name, ".dynbss") != 0)
1207 /* It's not one of our sections, so don't allocate space. */
1208 continue;
1211 if (s->size == 0)
1213 /* If we don't need this section, strip it from the
1214 output file. This is mostly to handle .rela.bss and
1215 .rela.plt. We must create both sections in
1216 create_dynamic_sections, because they must be created
1217 before the linker maps input sections to output
1218 sections. The linker does that before
1219 adjust_dynamic_symbol is called, and it is that
1220 function which decides whether anything needs to go
1221 into these sections. */
1222 s->flags |= SEC_EXCLUDE;
1223 continue;
1226 if ((s->flags & SEC_HAS_CONTENTS) == 0)
1227 continue;
1229 /* Allocate memory for the section contents. */
1230 s->contents = (bfd_byte *) bfd_alloc (dynobj, s->size);
1231 if (s->contents == NULL)
1232 return FALSE;
1235 if (elf_hash_table (info)->dynamic_sections_created)
1237 /* Add some entries to the .dynamic section. We fill in the
1238 values later, in elf_vax_finish_dynamic_sections, but we
1239 must add the entries now so that we get the correct size for
1240 the .dynamic section. The DT_DEBUG entry is filled in by the
1241 dynamic linker and used by the debugger. */
1242 #define add_dynamic_entry(TAG, VAL) \
1243 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
1245 if (!info->shared)
1247 if (!add_dynamic_entry (DT_DEBUG, 0))
1248 return FALSE;
1251 if (plt)
1253 if (!add_dynamic_entry (DT_PLTGOT, 0)
1254 || !add_dynamic_entry (DT_PLTRELSZ, 0)
1255 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
1256 || !add_dynamic_entry (DT_JMPREL, 0))
1257 return FALSE;
1260 if (relocs)
1262 if (!add_dynamic_entry (DT_RELA, 0)
1263 || !add_dynamic_entry (DT_RELASZ, 0)
1264 || !add_dynamic_entry (DT_RELAENT, sizeof (Elf32_External_Rela)))
1265 return FALSE;
1268 if (reltext || (info->flags & DF_TEXTREL) != 0)
1270 if (!add_dynamic_entry (DT_TEXTREL, 0))
1271 return FALSE;
1274 #undef add_dynamic_entry
1276 return TRUE;
1279 /* This function is called via elf_vax_link_hash_traverse if we are
1280 creating a shared object with -Bsymbolic. It discards the space
1281 allocated to copy PC relative relocs against symbols which are defined
1282 in regular objects. We allocated space for them in the check_relocs
1283 routine, but we won't fill them in in the relocate_section routine. */
1285 static bfd_boolean
1286 elf_vax_discard_copies (struct elf_vax_link_hash_entry *h,
1287 PTR ignore ATTRIBUTE_UNUSED)
1289 struct elf_vax_pcrel_relocs_copied *s;
1291 if (h->root.root.type == bfd_link_hash_warning)
1292 h = (struct elf_vax_link_hash_entry *) h->root.root.u.i.link;
1294 /* We only discard relocs for symbols defined in a regular object. */
1295 if (!h->root.def_regular)
1296 return TRUE;
1298 for (s = h->pcrel_relocs_copied; s != NULL; s = s->next)
1299 s->section->size -= s->count * sizeof (Elf32_External_Rela);
1301 return TRUE;
1304 /* This function is called via elf_link_hash_traverse. It looks for entries
1305 that have GOT or PLT (.GOT) references. If creating a static object or a
1306 shared object with -Bsymbolic, it resets the reference count back to 0
1307 and sets the offset to -1 so normal PC32 relocation will be done. If
1308 creating a shared object or executable, space in the .got and .rela.got
1309 will be reserved for the symbol. */
1311 static bfd_boolean
1312 elf_vax_instantiate_got_entries (struct elf_link_hash_entry *h, PTR infoptr)
1314 struct bfd_link_info *info = (struct bfd_link_info *) infoptr;
1315 bfd *dynobj;
1316 asection *sgot;
1317 asection *srelgot;
1319 /* We don't care about non-GOT (and non-PLT) entries. */
1320 if (h->got.refcount <= 0 && h->plt.refcount <= 0)
1321 return TRUE;
1323 dynobj = elf_hash_table (info)->dynobj;
1324 if (dynobj == NULL)
1325 return TRUE;
1327 sgot = bfd_get_section_by_name (dynobj, ".got");
1328 srelgot = bfd_get_section_by_name (dynobj, ".rela.got");
1330 if (!elf_hash_table (info)->dynamic_sections_created
1331 || (info->shared && info->symbolic))
1333 h->got.refcount = 0;
1334 h->got.offset = (bfd_vma) -1;
1335 h->plt.refcount = 0;
1336 h->plt.offset = (bfd_vma) -1;
1338 else if (h->got.refcount > 0)
1340 /* Make sure this symbol is output as a dynamic symbol. */
1341 if (h->dynindx == -1)
1343 if (!bfd_elf_link_record_dynamic_symbol (info, h))
1344 return FALSE;
1347 /* Allocate space in the .got and .rela.got sections. */
1348 sgot->size += 4;
1349 srelgot->size += sizeof (Elf32_External_Rela);
1352 return TRUE;
1355 /* Relocate an VAX ELF section. */
1357 static bfd_boolean
1358 elf_vax_relocate_section (bfd *output_bfd,
1359 struct bfd_link_info *info,
1360 bfd *input_bfd,
1361 asection *input_section,
1362 bfd_byte *contents,
1363 Elf_Internal_Rela *relocs,
1364 Elf_Internal_Sym *local_syms,
1365 asection **local_sections)
1367 bfd *dynobj;
1368 Elf_Internal_Shdr *symtab_hdr;
1369 struct elf_link_hash_entry **sym_hashes;
1370 bfd_vma *local_got_offsets;
1371 bfd_vma plt_index;
1372 bfd_vma got_offset;
1373 asection *sgot;
1374 asection *splt;
1375 asection *sgotplt;
1376 asection *sreloc;
1377 Elf_Internal_Rela *rel;
1378 Elf_Internal_Rela *relend;
1380 if (info->relocatable)
1381 return TRUE;
1383 dynobj = elf_hash_table (info)->dynobj;
1384 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
1385 sym_hashes = elf_sym_hashes (input_bfd);
1386 local_got_offsets = elf_local_got_offsets (input_bfd);
1388 sgot = NULL;
1389 splt = NULL;
1390 sgotplt = NULL;
1391 sreloc = NULL;
1393 rel = relocs;
1394 relend = relocs + input_section->reloc_count;
1395 for (; rel < relend; rel++)
1397 int r_type;
1398 reloc_howto_type *howto;
1399 unsigned long r_symndx;
1400 struct elf_link_hash_entry *h;
1401 Elf_Internal_Sym *sym;
1402 asection *sec;
1403 bfd_vma relocation;
1404 bfd_reloc_status_type r;
1406 r_type = ELF32_R_TYPE (rel->r_info);
1407 if (r_type < 0 || r_type >= (int) R_VAX_max)
1409 bfd_set_error (bfd_error_bad_value);
1410 return FALSE;
1412 howto = howto_table + r_type;
1414 /* This is a final link. */
1415 r_symndx = ELF32_R_SYM (rel->r_info);
1416 h = NULL;
1417 sym = NULL;
1418 sec = NULL;
1419 if (r_symndx < symtab_hdr->sh_info)
1421 sym = local_syms + r_symndx;
1422 sec = local_sections[r_symndx];
1423 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
1425 else
1427 bfd_boolean unresolved_reloc;
1428 bfd_boolean warned;
1430 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
1431 r_symndx, symtab_hdr, sym_hashes,
1432 h, sec, relocation,
1433 unresolved_reloc, warned);
1435 if ((h->root.type == bfd_link_hash_defined
1436 || h->root.type == bfd_link_hash_defweak)
1437 && ((r_type == R_VAX_PLT32
1438 && h->plt.offset != (bfd_vma) -1
1439 && elf_hash_table (info)->dynamic_sections_created)
1440 || (r_type == R_VAX_GOT32
1441 && strcmp (h->root.root.string,
1442 "_GLOBAL_OFFSET_TABLE_") != 0
1443 && elf_hash_table (info)->dynamic_sections_created
1444 && (! info->shared
1445 || (! info->symbolic && h->dynindx != -1)
1446 || !h->def_regular))
1447 || (info->shared
1448 && ((! info->symbolic && h->dynindx != -1)
1449 || !h->def_regular)
1450 && ((input_section->flags & SEC_ALLOC) != 0
1451 /* DWARF will emit R_VAX_32 relocations in its
1452 sections against symbols defined externally
1453 in shared libraries. We can't do anything
1454 with them here. */
1456 || ((input_section->flags & SEC_DEBUGGING) != 0
1457 && h->def_dynamic))
1458 && (r_type == R_VAX_8
1459 || r_type == R_VAX_16
1460 || r_type == R_VAX_32
1461 || r_type == R_VAX_PC8
1462 || r_type == R_VAX_PC16
1463 || r_type == R_VAX_PC32))))
1464 /* In these cases, we don't need the relocation
1465 value. We check specially because in some
1466 obscure cases sec->output_section will be NULL. */
1467 relocation = 0;
1470 switch (r_type)
1472 case R_VAX_GOT32:
1473 /* Relocation is to the address of the entry for this symbol
1474 in the global offset table. */
1475 if (h == NULL || h->got.offset == (bfd_vma) -1)
1476 break;
1478 /* Relocation is the offset of the entry for this symbol in
1479 the global offset table. */
1482 bfd_vma off;
1484 if (sgot == NULL)
1486 sgot = bfd_get_section_by_name (dynobj, ".got");
1487 BFD_ASSERT (sgot != NULL);
1490 BFD_ASSERT (h != NULL);
1491 off = h->got.offset;
1492 BFD_ASSERT (off != (bfd_vma) -1);
1493 BFD_ASSERT (off < sgot->size);
1495 if (info->shared
1496 && h->dynindx == -1
1497 && h->def_regular)
1499 /* The symbol was forced to be local
1500 because of a version file.. We must initialize
1501 this entry in the global offset table. Since
1502 the offset must always be a multiple of 4, we
1503 use the least significant bit to record whether
1504 we have initialized it already.
1506 When doing a dynamic link, we create a .rela.got
1507 relocation entry to initialize the value. This
1508 is done in the finish_dynamic_symbol routine. */
1509 if ((off & 1) != 0)
1510 off &= ~1;
1511 else
1513 bfd_put_32 (output_bfd, relocation + rel->r_addend,
1514 sgot->contents + off);
1515 h->got.offset |= 1;
1517 } else {
1518 bfd_put_32 (output_bfd, rel->r_addend, sgot->contents + off);
1521 relocation = sgot->output_offset + off;
1522 /* The GOT relocation uses the addend. */
1523 rel->r_addend = 0;
1525 /* Change the reference to be indirect. */
1526 contents[rel->r_offset - 1] |= 0x10;
1527 relocation += sgot->output_section->vma;
1529 break;
1531 case R_VAX_PLT32:
1532 /* Relocation is to the entry for this symbol in the
1533 procedure linkage table. */
1535 /* Resolve a PLTxx reloc against a local symbol directly,
1536 without using the procedure linkage table. */
1537 if (h == NULL)
1538 break;
1540 if (h->plt.offset == (bfd_vma) -1
1541 || !elf_hash_table (info)->dynamic_sections_created)
1543 /* We didn't make a PLT entry for this symbol. This
1544 happens when statically linking PIC code, or when
1545 using -Bsymbolic. */
1546 break;
1549 if (splt == NULL)
1551 splt = bfd_get_section_by_name (dynobj, ".plt");
1552 BFD_ASSERT (splt != NULL);
1555 if (sgotplt == NULL)
1557 sgotplt = bfd_get_section_by_name (dynobj, ".got.plt");
1558 BFD_ASSERT (splt != NULL);
1561 plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1;
1563 /* Get the offset into the .got table of the entry that
1564 corresponds to this function. Each .got entry is 4 bytes.
1565 The first two are reserved. */
1566 got_offset = (plt_index + 3) * 4;
1568 /* We want the relocate to point into the .got.plt instead
1569 of the plt itself. */
1570 relocation = (sgotplt->output_section->vma
1571 + sgotplt->output_offset
1572 + got_offset);
1573 contents[rel->r_offset-1] |= 0x10; /* make indirect */
1574 if (rel->r_addend == 2)
1576 h->plt.offset |= 1;
1578 else if (rel->r_addend != 0)
1579 (*_bfd_error_handler)
1580 (_("%s: warning: PLT addend of %d to `%s' from %s section ignored"),
1581 bfd_get_filename (input_bfd), rel->r_addend,
1582 h->root.root.string,
1583 bfd_get_section_name (input_bfd, input_section));
1584 rel->r_addend = 0;
1586 break;
1588 case R_VAX_PC8:
1589 case R_VAX_PC16:
1590 case R_VAX_PC32:
1591 if (h == NULL)
1592 break;
1593 /* Fall through. */
1594 case R_VAX_8:
1595 case R_VAX_16:
1596 case R_VAX_32:
1597 if (info->shared
1598 && r_symndx != 0
1599 && (input_section->flags & SEC_ALLOC) != 0
1600 && ((r_type != R_VAX_PC8
1601 && r_type != R_VAX_PC16
1602 && r_type != R_VAX_PC32)
1603 || (!info->symbolic
1604 || !h->def_regular)))
1606 Elf_Internal_Rela outrel;
1607 bfd_byte *loc;
1608 bfd_boolean skip, relocate;
1610 /* When generating a shared object, these relocations
1611 are copied into the output file to be resolved at run
1612 time. */
1613 if (sreloc == NULL)
1615 const char *name;
1617 name = (bfd_elf_string_from_elf_section
1618 (input_bfd,
1619 elf_elfheader (input_bfd)->e_shstrndx,
1620 elf_section_data (input_section)->rel_hdr.sh_name));
1621 if (name == NULL)
1622 return FALSE;
1624 BFD_ASSERT (CONST_STRNEQ (name, ".rela")
1625 && strcmp (bfd_get_section_name (input_bfd,
1626 input_section),
1627 name + 5) == 0);
1629 sreloc = bfd_get_section_by_name (dynobj, name);
1630 BFD_ASSERT (sreloc != NULL);
1633 skip = FALSE;
1634 relocate = FALSE;
1636 outrel.r_offset =
1637 _bfd_elf_section_offset (output_bfd, info, input_section,
1638 rel->r_offset);
1639 if (outrel.r_offset == (bfd_vma) -1)
1640 skip = TRUE;
1641 if (outrel.r_offset == (bfd_vma) -2)
1642 skip = TRUE, relocate = TRUE;
1643 outrel.r_offset += (input_section->output_section->vma
1644 + input_section->output_offset);
1646 if (skip)
1647 memset (&outrel, 0, sizeof outrel);
1648 /* h->dynindx may be -1 if the symbol was marked to
1649 become local. */
1650 else if (h != NULL
1651 && ((! info->symbolic && h->dynindx != -1)
1652 || !h->def_regular))
1654 BFD_ASSERT (h->dynindx != -1);
1655 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
1656 outrel.r_addend = relocation + rel->r_addend;
1658 else
1660 if (r_type == R_VAX_32)
1662 relocate = TRUE;
1663 outrel.r_info = ELF32_R_INFO (0, R_VAX_RELATIVE);
1664 BFD_ASSERT (bfd_get_signed_32 (input_bfd,
1665 &contents[rel->r_offset]) == 0);
1666 outrel.r_addend = relocation + rel->r_addend;
1668 else
1670 long indx;
1672 if (bfd_is_abs_section (sec))
1673 indx = 0;
1674 else if (sec == NULL || sec->owner == NULL)
1676 bfd_set_error (bfd_error_bad_value);
1677 return FALSE;
1679 else
1681 asection *osec;
1683 /* We are turning this relocation into one
1684 against a section symbol. It would be
1685 proper to subtract the symbol's value,
1686 osec->vma, from the emitted reloc addend,
1687 but ld.so expects buggy relocs. */
1688 osec = sec->output_section;
1689 indx = elf_section_data (osec)->dynindx;
1690 if (indx == 0)
1692 struct elf_link_hash_table *htab;
1693 htab = elf_hash_table (info);
1694 osec = htab->text_index_section;
1695 indx = elf_section_data (osec)->dynindx;
1697 BFD_ASSERT (indx != 0);
1700 outrel.r_info = ELF32_R_INFO (indx, r_type);
1701 outrel.r_addend = relocation + rel->r_addend;
1705 if (!strcmp (bfd_get_section_name (input_bfd, input_section),
1706 ".text") != 0 ||
1707 (info->shared
1708 && ELF32_R_TYPE(outrel.r_info) != R_VAX_32
1709 && ELF32_R_TYPE(outrel.r_info) != R_VAX_RELATIVE
1710 && ELF32_R_TYPE(outrel.r_info) != R_VAX_COPY
1711 && ELF32_R_TYPE(outrel.r_info) != R_VAX_JMP_SLOT
1712 && ELF32_R_TYPE(outrel.r_info) != R_VAX_GLOB_DAT))
1714 if (h != NULL)
1715 (*_bfd_error_handler)
1716 (_("%s: warning: %s relocation against symbol `%s' from %s section"),
1717 bfd_get_filename (input_bfd), howto->name,
1718 h->root.root.string,
1719 bfd_get_section_name (input_bfd, input_section));
1720 else
1721 (*_bfd_error_handler)
1722 (_("%s: warning: %s relocation to 0x%x from %s section"),
1723 bfd_get_filename (input_bfd), howto->name,
1724 outrel.r_addend,
1725 bfd_get_section_name (input_bfd, input_section));
1727 loc = sreloc->contents;
1728 loc += sreloc->reloc_count++ * sizeof (Elf32_External_Rela);
1729 bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
1731 /* This reloc will be computed at runtime, so there's no
1732 need to do anything now, except for R_VAX_32
1733 relocations that have been turned into
1734 R_VAX_RELATIVE. */
1735 if (!relocate)
1736 continue;
1739 break;
1741 case R_VAX_GNU_VTINHERIT:
1742 case R_VAX_GNU_VTENTRY:
1743 /* These are no-ops in the end. */
1744 continue;
1746 default:
1747 break;
1750 /* VAX PCREL relocations are from the end of relocation, not the start.
1751 So subtract the difference from the relocation amount since we can't
1752 add it to the offset. */
1753 if (howto->pc_relative && howto->pcrel_offset)
1754 relocation -= bfd_get_reloc_size(howto);
1756 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
1757 contents, rel->r_offset,
1758 relocation, rel->r_addend);
1760 if (r != bfd_reloc_ok)
1762 switch (r)
1764 default:
1765 case bfd_reloc_outofrange:
1766 abort ();
1767 case bfd_reloc_overflow:
1769 const char *name;
1771 if (h != NULL)
1772 name = NULL;
1773 else
1775 name = bfd_elf_string_from_elf_section (input_bfd,
1776 symtab_hdr->sh_link,
1777 sym->st_name);
1778 if (name == NULL)
1779 return FALSE;
1780 if (*name == '\0')
1781 name = bfd_section_name (input_bfd, sec);
1783 if (!(info->callbacks->reloc_overflow
1784 (info, (h ? &h->root : NULL), name, howto->name,
1785 (bfd_vma) 0, input_bfd, input_section,
1786 rel->r_offset)))
1787 return FALSE;
1789 break;
1794 return TRUE;
1797 /* Finish up dynamic symbol handling. We set the contents of various
1798 dynamic sections here. */
1800 static bfd_boolean
1801 elf_vax_finish_dynamic_symbol (bfd *output_bfd, struct bfd_link_info *info,
1802 struct elf_link_hash_entry *h,
1803 Elf_Internal_Sym *sym)
1805 bfd *dynobj;
1807 dynobj = elf_hash_table (info)->dynobj;
1809 if (h->plt.offset != (bfd_vma) -1)
1811 asection *splt;
1812 asection *sgot;
1813 asection *srela;
1814 bfd_vma plt_index;
1815 bfd_vma got_offset;
1816 bfd_vma addend;
1817 Elf_Internal_Rela rela;
1818 bfd_byte *loc;
1820 /* This symbol has an entry in the procedure linkage table. Set
1821 it up. */
1822 BFD_ASSERT (h->dynindx != -1);
1824 splt = bfd_get_section_by_name (dynobj, ".plt");
1825 sgot = bfd_get_section_by_name (dynobj, ".got.plt");
1826 srela = bfd_get_section_by_name (dynobj, ".rela.plt");
1827 BFD_ASSERT (splt != NULL && sgot != NULL && srela != NULL);
1829 addend = 2 * (h->plt.offset & 1);
1830 h->plt.offset &= ~1;
1832 /* Get the index in the procedure linkage table which
1833 corresponds to this symbol. This is the index of this symbol
1834 in all the symbols for which we are making plt entries. The
1835 first entry in the procedure linkage table is reserved. */
1836 plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1;
1838 /* Get the offset into the .got table of the entry that
1839 corresponds to this function. Each .got entry is 4 bytes.
1840 The first two are reserved. */
1841 got_offset = (plt_index + 3) * 4;
1843 /* Fill in the entry in the procedure linkage table. */
1844 memcpy (splt->contents + h->plt.offset, elf_vax_plt_entry,
1845 PLT_ENTRY_SIZE);
1847 /* The offset is relative to the first extension word. */
1848 bfd_put_32 (output_bfd,
1849 -(h->plt.offset + 8),
1850 splt->contents + h->plt.offset + 4);
1852 bfd_put_32 (output_bfd, plt_index * sizeof (Elf32_External_Rela),
1853 splt->contents + h->plt.offset + 8);
1855 /* Fill in the entry in the global offset table. */
1856 bfd_put_32 (output_bfd,
1857 (splt->output_section->vma
1858 + splt->output_offset
1859 + h->plt.offset) + addend,
1860 sgot->contents + got_offset);
1862 /* Fill in the entry in the .rela.plt section. */
1863 rela.r_offset = (sgot->output_section->vma
1864 + sgot->output_offset
1865 + got_offset);
1866 rela.r_info = ELF32_R_INFO (h->dynindx, R_VAX_JMP_SLOT);
1867 rela.r_addend = addend;
1868 loc = srela->contents + plt_index * sizeof (Elf32_External_Rela);
1869 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1871 if (!h->def_regular)
1873 /* Mark the symbol as undefined, rather than as defined in
1874 the .plt section. Leave the value alone. */
1875 sym->st_shndx = SHN_UNDEF;
1879 if (h->got.offset != (bfd_vma) -1)
1881 asection *sgot;
1882 asection *srela;
1883 Elf_Internal_Rela rela;
1884 bfd_byte *loc;
1886 /* This symbol has an entry in the global offset table. Set it
1887 up. */
1888 sgot = bfd_get_section_by_name (dynobj, ".got");
1889 srela = bfd_get_section_by_name (dynobj, ".rela.got");
1890 BFD_ASSERT (sgot != NULL && srela != NULL);
1892 rela.r_offset = (sgot->output_section->vma
1893 + sgot->output_offset
1894 + (h->got.offset &~ 1));
1896 /* If the symbol was forced to be local because of a version file
1897 locally we just want to emit a RELATIVE reloc. The entry in
1898 the global offset table will already have been initialized in
1899 the relocate_section function. */
1900 if (info->shared
1901 && h->dynindx == -1
1902 && h->def_regular)
1904 rela.r_info = ELF32_R_INFO (0, R_VAX_RELATIVE);
1906 else
1908 rela.r_info = ELF32_R_INFO (h->dynindx, R_VAX_GLOB_DAT);
1910 rela.r_addend = bfd_get_signed_32 (output_bfd,
1911 (sgot->contents
1912 + (h->got.offset & ~1)));
1914 loc = srela->contents;
1915 loc += srela->reloc_count++ * sizeof (Elf32_External_Rela);
1916 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1919 if (h->needs_copy)
1921 asection *s;
1922 Elf_Internal_Rela rela;
1923 bfd_byte *loc;
1925 /* This symbol needs a copy reloc. Set it up. */
1926 BFD_ASSERT (h->dynindx != -1
1927 && (h->root.type == bfd_link_hash_defined
1928 || h->root.type == bfd_link_hash_defweak));
1930 s = bfd_get_section_by_name (h->root.u.def.section->owner,
1931 ".rela.bss");
1932 BFD_ASSERT (s != NULL);
1934 rela.r_offset = (h->root.u.def.value
1935 + h->root.u.def.section->output_section->vma
1936 + h->root.u.def.section->output_offset);
1937 rela.r_info = ELF32_R_INFO (h->dynindx, R_VAX_COPY);
1938 rela.r_addend = 0;
1939 loc = s->contents + s->reloc_count++ * sizeof (Elf32_External_Rela);
1940 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1943 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
1944 if (strcmp (h->root.root.string, "_DYNAMIC") == 0
1945 || h == elf_hash_table (info)->hgot)
1946 sym->st_shndx = SHN_ABS;
1948 return TRUE;
1951 /* Finish up the dynamic sections. */
1953 static bfd_boolean
1954 elf_vax_finish_dynamic_sections (bfd *output_bfd, struct bfd_link_info *info)
1956 bfd *dynobj;
1957 asection *sgot;
1958 asection *sdyn;
1960 dynobj = elf_hash_table (info)->dynobj;
1962 sgot = bfd_get_section_by_name (dynobj, ".got.plt");
1963 BFD_ASSERT (sgot != NULL);
1964 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
1966 if (elf_hash_table (info)->dynamic_sections_created)
1968 asection *splt;
1969 Elf32_External_Dyn *dyncon, *dynconend;
1971 splt = bfd_get_section_by_name (dynobj, ".plt");
1972 BFD_ASSERT (splt != NULL && sdyn != NULL);
1974 dyncon = (Elf32_External_Dyn *) sdyn->contents;
1975 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
1976 for (; dyncon < dynconend; dyncon++)
1978 Elf_Internal_Dyn dyn;
1979 const char *name;
1980 asection *s;
1982 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
1984 switch (dyn.d_tag)
1986 default:
1987 break;
1989 case DT_PLTGOT:
1990 name = ".got";
1991 goto get_vma;
1992 case DT_JMPREL:
1993 name = ".rela.plt";
1994 get_vma:
1995 s = bfd_get_section_by_name (output_bfd, name);
1996 BFD_ASSERT (s != NULL);
1997 dyn.d_un.d_ptr = s->vma;
1998 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
1999 break;
2001 case DT_PLTRELSZ:
2002 s = bfd_get_section_by_name (output_bfd, ".rela.plt");
2003 BFD_ASSERT (s != NULL);
2004 dyn.d_un.d_val = s->size;
2005 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
2006 break;
2008 case DT_RELASZ:
2009 /* The procedure linkage table relocs (DT_JMPREL) should
2010 not be included in the overall relocs (DT_RELA).
2011 Therefore, we override the DT_RELASZ entry here to
2012 make it not include the JMPREL relocs. Since the
2013 linker script arranges for .rela.plt to follow all
2014 other relocation sections, we don't have to worry
2015 about changing the DT_RELA entry. */
2016 s = bfd_get_section_by_name (output_bfd, ".rela.plt");
2017 if (s != NULL)
2018 dyn.d_un.d_val -= s->size;
2019 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
2020 break;
2024 /* Fill in the first entry in the procedure linkage table. */
2025 if (splt->size > 0)
2027 memcpy (splt->contents, elf_vax_plt0_entry, PLT_ENTRY_SIZE);
2028 bfd_put_32 (output_bfd,
2029 (sgot->output_section->vma
2030 + sgot->output_offset + 4
2031 - (splt->output_section->vma + 6)),
2032 splt->contents + 2);
2033 bfd_put_32 (output_bfd,
2034 (sgot->output_section->vma
2035 + sgot->output_offset + 8
2036 - (splt->output_section->vma + 12)),
2037 splt->contents + 8);
2038 elf_section_data (splt->output_section)->this_hdr.sh_entsize
2039 = PLT_ENTRY_SIZE;
2043 /* Fill in the first three entries in the global offset table. */
2044 if (sgot->size > 0)
2046 if (sdyn == NULL)
2047 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
2048 else
2049 bfd_put_32 (output_bfd,
2050 sdyn->output_section->vma + sdyn->output_offset,
2051 sgot->contents);
2052 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 4);
2053 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 8);
2056 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
2058 return TRUE;
2061 #define TARGET_LITTLE_SYM bfd_elf32_vax_vec
2062 #define TARGET_LITTLE_NAME "elf32-vax"
2063 #define ELF_MACHINE_CODE EM_VAX
2064 #define ELF_MAXPAGESIZE 0x1000
2066 #define elf_backend_create_dynamic_sections \
2067 _bfd_elf_create_dynamic_sections
2068 #define bfd_elf32_bfd_link_hash_table_create \
2069 elf_vax_link_hash_table_create
2070 #define bfd_elf32_bfd_final_link bfd_elf_gc_common_final_link
2072 #define elf_backend_check_relocs elf_vax_check_relocs
2073 #define elf_backend_adjust_dynamic_symbol \
2074 elf_vax_adjust_dynamic_symbol
2075 #define elf_backend_size_dynamic_sections \
2076 elf_vax_size_dynamic_sections
2077 #define elf_backend_init_index_section _bfd_elf_init_1_index_section
2078 #define elf_backend_relocate_section elf_vax_relocate_section
2079 #define elf_backend_finish_dynamic_symbol \
2080 elf_vax_finish_dynamic_symbol
2081 #define elf_backend_finish_dynamic_sections \
2082 elf_vax_finish_dynamic_sections
2083 #define elf_backend_gc_mark_hook elf_vax_gc_mark_hook
2084 #define elf_backend_gc_sweep_hook elf_vax_gc_sweep_hook
2085 #define bfd_elf32_bfd_merge_private_bfd_data \
2086 elf32_vax_merge_private_bfd_data
2087 #define bfd_elf32_bfd_set_private_flags \
2088 elf32_vax_set_private_flags
2089 #define bfd_elf32_bfd_print_private_bfd_data \
2090 elf32_vax_print_private_bfd_data
2092 #define elf_backend_can_gc_sections 1
2093 #define elf_backend_want_got_plt 1
2094 #define elf_backend_plt_readonly 1
2095 #define elf_backend_want_plt_sym 0
2096 #define elf_backend_got_header_size 16
2097 #define elf_backend_rela_normal 1
2099 #include "elf32-target.h"