Add global parameters.
[platform/upstream/binutils.git] / gold / dynobj.cc
1 // dynobj.cc -- dynamic object support for gold
2
3 #include "gold.h"
4
5 #include <vector>
6 #include <cstring>
7
8 #include "elfcpp.h"
9 #include "parameters.h"
10 #include "symtab.h"
11 #include "dynobj.h"
12
13 namespace gold
14 {
15
16 // Class Dynobj.
17
18 // Return the string to use in a DT_NEEDED entry.
19
20 const char*
21 Dynobj::soname() const
22 {
23   if (!this->soname_.empty())
24     return this->soname_.c_str();
25   return this->name().c_str();
26 }
27
28 // Class Sized_dynobj.
29
30 template<int size, bool big_endian>
31 Sized_dynobj<size, big_endian>::Sized_dynobj(
32     const std::string& name,
33     Input_file* input_file,
34     off_t offset,
35     const elfcpp::Ehdr<size, big_endian>& ehdr)
36   : Dynobj(name, input_file, offset),
37     elf_file_(this, ehdr)
38 {
39 }
40
41 // Set up the object.
42
43 template<int size, bool big_endian>
44 void
45 Sized_dynobj<size, big_endian>::setup(
46     const elfcpp::Ehdr<size, big_endian>& ehdr)
47 {
48   this->set_target(ehdr.get_e_machine(), size, big_endian,
49                    ehdr.get_e_ident()[elfcpp::EI_OSABI],
50                    ehdr.get_e_ident()[elfcpp::EI_ABIVERSION]);
51
52   const unsigned int shnum = this->elf_file_.shnum();
53   this->set_shnum(shnum);
54 }
55
56 // Find the SHT_DYNSYM section and the various version sections, and
57 // the dynamic section, given the section headers.
58
59 template<int size, bool big_endian>
60 void
61 Sized_dynobj<size, big_endian>::find_dynsym_sections(
62     const unsigned char* pshdrs,
63     unsigned int* pdynsym_shndx,
64     unsigned int* pversym_shndx,
65     unsigned int* pverdef_shndx,
66     unsigned int* pverneed_shndx,
67     unsigned int* pdynamic_shndx)
68 {
69   *pdynsym_shndx = -1U;
70   *pversym_shndx = -1U;
71   *pverdef_shndx = -1U;
72   *pverneed_shndx = -1U;
73   *pdynamic_shndx = -1U;
74
75   const unsigned int shnum = this->shnum();
76   const unsigned char* p = pshdrs;
77   for (unsigned int i = 0; i < shnum; ++i, p += This::shdr_size)
78     {
79       typename This::Shdr shdr(p);
80
81       unsigned int* pi;
82       switch (shdr.get_sh_type())
83         {
84         case elfcpp::SHT_DYNSYM:
85           pi = pdynsym_shndx;
86           break;
87         case elfcpp::SHT_GNU_versym:
88           pi = pversym_shndx;
89           break;
90         case elfcpp::SHT_GNU_verdef:
91           pi = pverdef_shndx;
92           break;
93         case elfcpp::SHT_GNU_verneed:
94           pi = pverneed_shndx;
95           break;
96         case elfcpp::SHT_DYNAMIC:
97           pi = pdynamic_shndx;
98           break;
99         default:
100           pi = NULL;
101           break;
102         }
103
104       if (pi == NULL)
105         continue;
106
107       if (*pi != -1U)
108         {
109           fprintf(stderr,
110                   _("%s: %s: unexpected duplicate type %u section: %u, %u\n"),
111                   program_name, this->name().c_str(), shdr.get_sh_type(),
112                   *pi, i);
113           gold_exit(false);
114         }
115
116       *pi = i;
117     }
118 }
119
120 // Read the contents of section SHNDX.  PSHDRS points to the section
121 // headers.  TYPE is the expected section type.  LINK is the expected
122 // section link.  Store the data in *VIEW and *VIEW_SIZE.  The
123 // section's sh_info field is stored in *VIEW_INFO.
124
125 template<int size, bool big_endian>
126 void
127 Sized_dynobj<size, big_endian>::read_dynsym_section(
128     const unsigned char* pshdrs,
129     unsigned int shndx,
130     elfcpp::SHT type,
131     unsigned int link,
132     File_view** view,
133     off_t* view_size,
134     unsigned int* view_info)
135 {
136   if (shndx == -1U)
137     {
138       *view = NULL;
139       *view_size = 0;
140       *view_info = 0;
141       return;
142     }
143
144   typename This::Shdr shdr(pshdrs + shndx * This::shdr_size);
145
146   gold_assert(shdr.get_sh_type() == type);
147
148   if (shdr.get_sh_link() != link)
149     {
150       fprintf(stderr,
151               _("%s: %s: unexpected link in section %u header: %u != %u\n"),
152               program_name, this->name().c_str(), shndx,
153               shdr.get_sh_link(), link);
154       gold_exit(false);
155     }
156
157   *view = this->get_lasting_view(shdr.get_sh_offset(), shdr.get_sh_size());
158   *view_size = shdr.get_sh_size();
159   *view_info = shdr.get_sh_info();
160 }
161
162 // Set the soname field if this shared object has a DT_SONAME tag.
163 // PSHDRS points to the section headers.  DYNAMIC_SHNDX is the section
164 // index of the SHT_DYNAMIC section.  STRTAB_SHNDX, STRTAB, and
165 // STRTAB_SIZE are the section index and contents of a string table
166 // which may be the one associated with the SHT_DYNAMIC section.
167
168 template<int size, bool big_endian>
169 void
170 Sized_dynobj<size, big_endian>::set_soname(const unsigned char* pshdrs,
171                                            unsigned int dynamic_shndx,
172                                            unsigned int strtab_shndx,
173                                            const unsigned char* strtabu,
174                                            off_t strtab_size)
175 {
176   typename This::Shdr dynamicshdr(pshdrs + dynamic_shndx * This::shdr_size);
177   gold_assert(dynamicshdr.get_sh_type() == elfcpp::SHT_DYNAMIC);
178
179   const off_t dynamic_size = dynamicshdr.get_sh_size();
180   const unsigned char* pdynamic = this->get_view(dynamicshdr.get_sh_offset(),
181                                                  dynamic_size);
182
183   const unsigned int link = dynamicshdr.get_sh_link();
184   if (link != strtab_shndx)
185     {
186       if (link >= this->shnum())
187         {
188           fprintf(stderr,
189                   _("%s: %s: DYNAMIC section %u link out of range: %u\n"),
190                   program_name, this->name().c_str(),
191                   dynamic_shndx, link);
192           gold_exit(false);
193         }
194
195       typename This::Shdr strtabshdr(pshdrs + link * This::shdr_size);
196       if (strtabshdr.get_sh_type() != elfcpp::SHT_STRTAB)
197         {
198           fprintf(stderr,
199                   _("%s: %s: DYNAMIC section %u link %u is not a strtab\n"),
200                   program_name, this->name().c_str(),
201                   dynamic_shndx, link);
202           gold_exit(false);
203         }
204
205       strtab_size = strtabshdr.get_sh_size();
206       strtabu = this->get_view(strtabshdr.get_sh_offset(), strtab_size);
207     }
208
209   for (const unsigned char* p = pdynamic;
210        p < pdynamic + dynamic_size;
211        p += This::dyn_size)
212     {
213       typename This::Dyn dyn(p);
214
215       if (dyn.get_d_tag() == elfcpp::DT_SONAME)
216         {
217           off_t val = dyn.get_d_val();
218           if (val >= strtab_size)
219             {
220               fprintf(stderr,
221                       _("%s: %s: DT_SONAME value out of range: "
222                         "%lld >= %lld\n"),
223                       program_name, this->name().c_str(),
224                       static_cast<long long>(val),
225                       static_cast<long long>(strtab_size));
226               gold_exit(false);
227             }
228
229           const char* strtab = reinterpret_cast<const char*>(strtabu);
230           this->set_soname_string(strtab + val);
231           return;
232         }
233
234       if (dyn.get_d_tag() == elfcpp::DT_NULL)
235         return;
236     }
237
238   fprintf(stderr, _("%s: %s: missing DT_NULL in dynamic segment\n"),
239           program_name, this->name().c_str());
240   gold_exit(false);
241 }
242
243 // Read the symbols and sections from a dynamic object.  We read the
244 // dynamic symbols, not the normal symbols.
245
246 template<int size, bool big_endian>
247 void
248 Sized_dynobj<size, big_endian>::do_read_symbols(Read_symbols_data* sd)
249 {
250   this->read_section_data(&this->elf_file_, sd);
251
252   const unsigned char* const pshdrs = sd->section_headers->data();
253
254   unsigned int dynsym_shndx;
255   unsigned int versym_shndx;
256   unsigned int verdef_shndx;
257   unsigned int verneed_shndx;
258   unsigned int dynamic_shndx;
259   this->find_dynsym_sections(pshdrs, &dynsym_shndx, &versym_shndx,
260                              &verdef_shndx, &verneed_shndx, &dynamic_shndx);
261
262   unsigned int strtab_shndx = -1U;
263
264   if (dynsym_shndx == -1U)
265     {
266       sd->symbols = NULL;
267       sd->symbols_size = 0;
268       sd->symbol_names = NULL;
269       sd->symbol_names_size = 0;
270     }
271   else
272     {
273       // Get the dynamic symbols.
274       typename This::Shdr dynsymshdr(pshdrs + dynsym_shndx * This::shdr_size);
275       gold_assert(dynsymshdr.get_sh_type() == elfcpp::SHT_DYNSYM);
276
277       sd->symbols = this->get_lasting_view(dynsymshdr.get_sh_offset(),
278                                            dynsymshdr.get_sh_size());
279       sd->symbols_size = dynsymshdr.get_sh_size();
280
281       // Get the symbol names.
282       strtab_shndx = dynsymshdr.get_sh_link();
283       if (strtab_shndx >= this->shnum())
284         {
285           fprintf(stderr,
286                   _("%s: %s: invalid dynamic symbol table name index: %u\n"),
287                   program_name, this->name().c_str(), strtab_shndx);
288           gold_exit(false);
289         }
290       typename This::Shdr strtabshdr(pshdrs + strtab_shndx * This::shdr_size);
291       if (strtabshdr.get_sh_type() != elfcpp::SHT_STRTAB)
292         {
293           fprintf(stderr,
294                   _("%s: %s: dynamic symbol table name section "
295                     "has wrong type: %u\n"),
296                   program_name, this->name().c_str(),
297                   static_cast<unsigned int>(strtabshdr.get_sh_type()));
298           gold_exit(false);
299         }
300
301       sd->symbol_names = this->get_lasting_view(strtabshdr.get_sh_offset(),
302                                                 strtabshdr.get_sh_size());
303       sd->symbol_names_size = strtabshdr.get_sh_size();
304
305       // Get the version information.
306
307       unsigned int dummy;
308       this->read_dynsym_section(pshdrs, versym_shndx, elfcpp::SHT_GNU_versym,
309                                 dynsym_shndx, &sd->versym, &sd->versym_size,
310                                 &dummy);
311
312       // We require that the version definition and need section link
313       // to the same string table as the dynamic symbol table.  This
314       // is not a technical requirement, but it always happens in
315       // practice.  We could change this if necessary.
316
317       this->read_dynsym_section(pshdrs, verdef_shndx, elfcpp::SHT_GNU_verdef,
318                                 strtab_shndx, &sd->verdef, &sd->verdef_size,
319                                 &sd->verdef_info);
320
321       this->read_dynsym_section(pshdrs, verneed_shndx, elfcpp::SHT_GNU_verneed,
322                                 strtab_shndx, &sd->verneed, &sd->verneed_size,
323                                 &sd->verneed_info);
324     }
325
326   // Read the SHT_DYNAMIC section to find whether this shared object
327   // has a DT_SONAME tag.  This doesn't really have anything to do
328   // with reading the symbols, but this is a convenient place to do
329   // it.
330   if (dynamic_shndx != -1U)
331     this->set_soname(pshdrs, dynamic_shndx, strtab_shndx,
332                      (sd->symbol_names == NULL
333                       ? NULL
334                       : sd->symbol_names->data()),
335                      sd->symbol_names_size);
336 }
337
338 // Lay out the input sections for a dynamic object.  We don't want to
339 // include sections from a dynamic object, so all that we actually do
340 // here is check for .gnu.warning sections.
341
342 template<int size, bool big_endian>
343 void
344 Sized_dynobj<size, big_endian>::do_layout(Symbol_table* symtab,
345                                           Layout*,
346                                           Read_symbols_data* sd)
347 {
348   const unsigned int shnum = this->shnum();
349   if (shnum == 0)
350     return;
351
352   // Get the section headers.
353   const unsigned char* pshdrs = sd->section_headers->data();
354
355   // Get the section names.
356   const unsigned char* pnamesu = sd->section_names->data();
357   const char* pnames = reinterpret_cast<const char*>(pnamesu);
358
359   // Skip the first, dummy, section.
360   pshdrs += This::shdr_size;
361   for (unsigned int i = 1; i < shnum; ++i, pshdrs += This::shdr_size)
362     {
363       typename This::Shdr shdr(pshdrs);
364
365       if (shdr.get_sh_name() >= sd->section_names_size)
366         {
367           fprintf(stderr,
368                   _("%s: %s: bad section name offset for section %u: %lu\n"),
369                   program_name, this->name().c_str(), i,
370                   static_cast<unsigned long>(shdr.get_sh_name()));
371           gold_exit(false);
372         }
373
374       const char* name = pnames + shdr.get_sh_name();
375
376       this->handle_gnu_warning_section(name, i, symtab);
377     }
378
379   delete sd->section_headers;
380   sd->section_headers = NULL;
381   delete sd->section_names;
382   sd->section_names = NULL;
383 }
384
385 // Add an entry to the vector mapping version numbers to version
386 // strings.
387
388 template<int size, bool big_endian>
389 void
390 Sized_dynobj<size, big_endian>::set_version_map(
391     Version_map* version_map,
392     unsigned int ndx,
393     const char* name) const
394 {
395   if (ndx >= version_map->size())
396     version_map->resize(ndx + 1);
397   if ((*version_map)[ndx] != NULL)
398     {
399       fprintf(stderr, _("%s: %s: duplicate definition for version %u\n"),
400               program_name, this->name().c_str(), ndx);
401       gold_exit(false);
402     }
403   (*version_map)[ndx] = name;
404 }
405
406 // Add mappings for the version definitions to VERSION_MAP.
407
408 template<int size, bool big_endian>
409 void
410 Sized_dynobj<size, big_endian>::make_verdef_map(
411     Read_symbols_data* sd,
412     Version_map* version_map) const
413 {
414   if (sd->verdef == NULL)
415     return;
416
417   const char* names = reinterpret_cast<const char*>(sd->symbol_names->data());
418   off_t names_size = sd->symbol_names_size;
419
420   const unsigned char* pverdef = sd->verdef->data();
421   off_t verdef_size = sd->verdef_size;
422   const unsigned int count = sd->verdef_info;
423
424   const unsigned char* p = pverdef;
425   for (unsigned int i = 0; i < count; ++i)
426     {
427       elfcpp::Verdef<size, big_endian> verdef(p);
428
429       if (verdef.get_vd_version() != elfcpp::VER_DEF_CURRENT)
430         {
431           fprintf(stderr, _("%s: %s: unexpected verdef version %u\n"),
432                   program_name, this->name().c_str(), verdef.get_vd_version());
433           gold_exit(false);
434         }
435
436       const unsigned int vd_ndx = verdef.get_vd_ndx();
437
438       // The GNU linker clears the VERSYM_HIDDEN bit.  I'm not
439       // sure why.
440
441       // The first Verdaux holds the name of this version.  Subsequent
442       // ones are versions that this one depends upon, which we don't
443       // care about here.
444       const unsigned int vd_cnt = verdef.get_vd_cnt();
445       if (vd_cnt < 1)
446         {
447           fprintf(stderr, _("%s: %s: verdef vd_cnt field too small: %u\n"),
448                   program_name, this->name().c_str(), vd_cnt);
449           gold_exit(false);
450         }
451
452       const unsigned int vd_aux = verdef.get_vd_aux();
453       if ((p - pverdef) + vd_aux >= verdef_size)
454         {
455           fprintf(stderr,
456                   _("%s: %s: verdef vd_aux field out of range: %u\n"),
457                   program_name, this->name().c_str(), vd_aux);
458           gold_exit(false);
459         }
460
461       const unsigned char* pvda = p + vd_aux;
462       elfcpp::Verdaux<size, big_endian> verdaux(pvda);
463
464       const unsigned int vda_name = verdaux.get_vda_name();
465       if (vda_name >= names_size)
466         {
467           fprintf(stderr,
468                   _("%s: %s: verdaux vda_name field out of range: %u\n"),
469                   program_name, this->name().c_str(), vda_name);
470           gold_exit(false);
471         }
472
473       this->set_version_map(version_map, vd_ndx, names + vda_name);
474
475       const unsigned int vd_next = verdef.get_vd_next();
476       if ((p - pverdef) + vd_next >= verdef_size)
477         {
478           fprintf(stderr,
479                   _("%s: %s: verdef vd_next field out of range: %u\n"),
480                   program_name, this->name().c_str(), vd_next);
481           gold_exit(false);
482         }
483
484       p += vd_next;
485     }
486 }
487
488 // Add mappings for the required versions to VERSION_MAP.
489
490 template<int size, bool big_endian>
491 void
492 Sized_dynobj<size, big_endian>::make_verneed_map(
493     Read_symbols_data* sd,
494     Version_map* version_map) const
495 {
496   if (sd->verneed == NULL)
497     return;
498
499   const char* names = reinterpret_cast<const char*>(sd->symbol_names->data());
500   off_t names_size = sd->symbol_names_size;
501
502   const unsigned char* pverneed = sd->verneed->data();
503   const off_t verneed_size = sd->verneed_size;
504   const unsigned int count = sd->verneed_info;
505
506   const unsigned char* p = pverneed;
507   for (unsigned int i = 0; i < count; ++i)
508     {
509       elfcpp::Verneed<size, big_endian> verneed(p);
510
511       if (verneed.get_vn_version() != elfcpp::VER_NEED_CURRENT)
512         {
513           fprintf(stderr, _("%s: %s: unexpected verneed version %u\n"),
514                   program_name, this->name().c_str(),
515                   verneed.get_vn_version());
516           gold_exit(false);
517         }
518
519       const unsigned int vn_aux = verneed.get_vn_aux();
520
521       if ((p - pverneed) + vn_aux >= verneed_size)
522         {
523           fprintf(stderr,
524                   _("%s: %s: verneed vn_aux field out of range: %u\n"),
525                   program_name, this->name().c_str(), vn_aux);
526           gold_exit(false);
527         }
528
529       const unsigned int vn_cnt = verneed.get_vn_cnt();
530       const unsigned char* pvna = p + vn_aux;
531       for (unsigned int j = 0; j < vn_cnt; ++j)
532         {
533           elfcpp::Vernaux<size, big_endian> vernaux(pvna);
534
535           const unsigned int vna_name = vernaux.get_vna_name();
536           if (vna_name >= names_size)
537             {
538               fprintf(stderr,
539                       _("%s: %s: vernaux vna_name field "
540                         "out of range: %u\n"),
541                       program_name, this->name().c_str(), vna_name);
542               gold_exit(false);
543             }
544
545           this->set_version_map(version_map, vernaux.get_vna_other(),
546                                 names + vna_name);
547
548           const unsigned int vna_next = vernaux.get_vna_next();
549           if ((pvna - pverneed) + vna_next >= verneed_size)
550             {
551               fprintf(stderr,
552                       _("%s: %s: verneed vna_next field "
553                         "out of range: %u\n"),
554                       program_name, this->name().c_str(), vna_next);
555               gold_exit(false);
556             }
557
558           pvna += vna_next;
559         }
560
561       const unsigned int vn_next = verneed.get_vn_next();
562       if ((p - pverneed) + vn_next >= verneed_size)
563         {
564           fprintf(stderr,
565                   _("%s: %s: verneed vn_next field out of range: %u\n"),
566                   program_name, this->name().c_str(), vn_next);
567           gold_exit(false);
568         }
569
570       p += vn_next;
571     }
572 }
573
574 // Create a vector mapping version numbers to version strings.
575
576 template<int size, bool big_endian>
577 void
578 Sized_dynobj<size, big_endian>::make_version_map(
579     Read_symbols_data* sd,
580     Version_map* version_map) const
581 {
582   if (sd->verdef == NULL && sd->verneed == NULL)
583     return;
584
585   // A guess at the maximum version number we will see.  If this is
586   // wrong we will be less efficient but still correct.
587   version_map->reserve(sd->verdef_info + sd->verneed_info * 10);
588
589   this->make_verdef_map(sd, version_map);
590   this->make_verneed_map(sd, version_map);
591 }
592
593 // Add the dynamic symbols to the symbol table.
594
595 template<int size, bool big_endian>
596 void
597 Sized_dynobj<size, big_endian>::do_add_symbols(Symbol_table* symtab,
598                                                Read_symbols_data* sd)
599 {
600   if (sd->symbols == NULL)
601     {
602       gold_assert(sd->symbol_names == NULL);
603       gold_assert(sd->versym == NULL && sd->verdef == NULL
604                   && sd->verneed == NULL);
605       return;
606     }
607
608   const int sym_size = This::sym_size;
609   const size_t symcount = sd->symbols_size / sym_size;
610   if (symcount * sym_size != sd->symbols_size)
611     {
612       fprintf(stderr,
613               _("%s: %s: size of dynamic symbols is not "
614                 "multiple of symbol size\n"),
615               program_name, this->name().c_str());
616       gold_exit(false);
617     }
618
619   Version_map version_map;
620   this->make_version_map(sd, &version_map);
621
622   const char* sym_names =
623     reinterpret_cast<const char*>(sd->symbol_names->data());
624   symtab->add_from_dynobj(this, sd->symbols->data(), symcount,
625                           sym_names, sd->symbol_names_size,
626                           (sd->versym == NULL
627                            ? NULL
628                            : sd->versym->data()),
629                           sd->versym_size,
630                           &version_map);
631
632   delete sd->symbols;
633   sd->symbols = NULL;
634   delete sd->symbol_names;
635   sd->symbol_names = NULL;
636   if (sd->versym != NULL)
637     {
638       delete sd->versym;
639       sd->versym = NULL;
640     }
641   if (sd->verdef != NULL)
642     {
643       delete sd->verdef;
644       sd->verdef = NULL;
645     }
646   if (sd->verneed != NULL)
647     {
648       delete sd->verneed;
649       sd->verneed = NULL;
650     }
651 }
652
653 // Given a vector of hash codes, compute the number of hash buckets to
654 // use.
655
656 unsigned int
657 Dynobj::compute_bucket_count(const std::vector<uint32_t>& hashcodes,
658                              bool for_gnu_hash_table)
659 {
660   // FIXME: Implement optional hash table optimization.
661
662   // Array used to determine the number of hash table buckets to use
663   // based on the number of symbols there are.  If there are fewer
664   // than 3 symbols we use 1 bucket, fewer than 17 symbols we use 3
665   // buckets, fewer than 37 we use 17 buckets, and so forth.  We never
666   // use more than 32771 buckets.  This is straight from the old GNU
667   // linker.
668   static const unsigned int buckets[] =
669   {
670     1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
671     16411, 32771
672   };
673   const int buckets_count = sizeof buckets / sizeof buckets[0];
674
675   unsigned int symcount = hashcodes.size();
676   unsigned int ret = 1;
677   for (int i = 0; i < buckets_count; ++i)
678     {
679       if (symcount < buckets[i])
680         break;
681       ret = buckets[i];
682     }
683
684   if (for_gnu_hash_table && ret < 2)
685     ret = 2;
686
687   return ret;
688 }
689
690 // The standard ELF hash function.  This hash function must not
691 // change, as the dynamic linker uses it also.
692
693 uint32_t
694 Dynobj::elf_hash(const char* name)
695 {
696   const unsigned char* nameu = reinterpret_cast<const unsigned char*>(name);
697   uint32_t h = 0;
698   unsigned char c;
699   while ((c = *nameu++) != '\0')
700     {
701       h = (h << 4) + c;
702       uint32_t g = h & 0xf0000000;
703       if (g != 0)
704         {
705           h ^= g >> 24;
706           // The ELF ABI says h &= ~g, but using xor is equivalent in
707           // this case (since g was set from h) and may save one
708           // instruction.
709           h ^= g;
710         }
711     }
712   return h;
713 }
714
715 // Create a standard ELF hash table, setting *PPHASH and *PHASHLEN.
716 // DYNSYMS is a vector with all the global dynamic symbols.
717 // LOCAL_DYNSYM_COUNT is the number of local symbols in the dynamic
718 // symbol table.
719
720 void
721 Dynobj::create_elf_hash_table(const Target* target,
722                               const std::vector<Symbol*>& dynsyms,
723                               unsigned int local_dynsym_count,
724                               unsigned char** pphash,
725                               unsigned int* phashlen)
726 {
727   unsigned int dynsym_count = dynsyms.size();
728
729   // Get the hash values for all the symbols.
730   std::vector<uint32_t> dynsym_hashvals(dynsym_count);
731   for (unsigned int i = 0; i < dynsym_count; ++i)
732     dynsym_hashvals[i] = Dynobj::elf_hash(dynsyms[i]->name());
733
734   const unsigned int bucketcount =
735     Dynobj::compute_bucket_count(dynsym_hashvals, false);
736
737   std::vector<uint32_t> bucket(bucketcount);
738   std::vector<uint32_t> chain(local_dynsym_count + dynsym_count);
739
740   for (unsigned int i = 0; i < dynsym_count; ++i)
741     {
742       unsigned int dynsym_index = dynsyms[i]->dynsym_index();
743       unsigned int bucketpos = dynsym_hashvals[i] % bucketcount;
744       chain[dynsym_index] = bucket[bucketpos];
745       bucket[bucketpos] = dynsym_index;
746     }
747
748   unsigned int hashlen = ((2
749                            + bucketcount
750                            + local_dynsym_count
751                            + dynsym_count)
752                           * 4);
753   unsigned char* phash = new unsigned char[hashlen];
754
755   if (target->is_big_endian())
756     Dynobj::sized_create_elf_hash_table<true>(bucket, chain, phash, hashlen);
757   else
758     Dynobj::sized_create_elf_hash_table<false>(bucket, chain, phash, hashlen);
759
760   *pphash = phash;
761   *phashlen = hashlen;
762 }
763
764 // Fill in an ELF hash table.
765
766 template<bool big_endian>
767 void
768 Dynobj::sized_create_elf_hash_table(const std::vector<uint32_t>& bucket,
769                                     const std::vector<uint32_t>& chain,
770                                     unsigned char* phash,
771                                     unsigned int hashlen)
772 {
773   unsigned char* p = phash;
774
775   const unsigned int bucketcount = bucket.size();
776   const unsigned int chaincount = chain.size();
777
778   elfcpp::Swap<32, big_endian>::writeval(p, bucketcount);
779   p += 4;
780   elfcpp::Swap<32, big_endian>::writeval(p, chaincount);
781   p += 4;
782
783   for (unsigned int i = 0; i < bucketcount; ++i)
784     {
785       elfcpp::Swap<32, big_endian>::writeval(p, bucket[i]);
786       p += 4;
787     }
788
789   for (unsigned int i = 0; i < chaincount; ++i)
790     {
791       elfcpp::Swap<32, big_endian>::writeval(p, chain[i]);
792       p += 4;
793     }
794
795   gold_assert(static_cast<unsigned int>(p - phash) == hashlen);
796 }
797
798 // The hash function used for the GNU hash table.  This hash function
799 // must not change, as the dynamic linker uses it also.
800
801 uint32_t
802 Dynobj::gnu_hash(const char* name)
803 {
804   const unsigned char* nameu = reinterpret_cast<const unsigned char*>(name);
805   uint32_t h = 5381;
806   unsigned char c;
807   while ((c = *nameu++) != '\0')
808     h = (h << 5) + h + c;
809   return h;
810 }
811
812 // Create a GNU hash table, setting *PPHASH and *PHASHLEN.  GNU hash
813 // tables are an extension to ELF which are recognized by the GNU
814 // dynamic linker.  They are referenced using dynamic tag DT_GNU_HASH.
815 // TARGET is the target.  DYNSYMS is a vector with all the global
816 // symbols which will be going into the dynamic symbol table.
817 // LOCAL_DYNSYM_COUNT is the number of local symbols in the dynamic
818 // symbol table.
819
820 void
821 Dynobj::create_gnu_hash_table(const Target* target,
822                               const std::vector<Symbol*>& dynsyms,
823                               unsigned int local_dynsym_count,
824                               unsigned char** pphash,
825                               unsigned int* phashlen)
826 {
827   const unsigned int count = dynsyms.size();
828
829   // Sort the dynamic symbols into two vectors.  Symbols which we do
830   // not want to put into the hash table we store into
831   // UNHASHED_DYNSYMS.  Symbols which we do want to store we put into
832   // HASHED_DYNSYMS.  DYNSYM_HASHVALS is parallel to HASHED_DYNSYMS,
833   // and records the hash codes.
834
835   std::vector<Symbol*> unhashed_dynsyms;
836   unhashed_dynsyms.reserve(count);
837
838   std::vector<Symbol*> hashed_dynsyms;
839   hashed_dynsyms.reserve(count);
840
841   std::vector<uint32_t> dynsym_hashvals;
842   dynsym_hashvals.reserve(count);
843   
844   for (unsigned int i = 0; i < count; ++i)
845     {
846       Symbol* sym = dynsyms[i];
847
848       // FIXME: Should put on unhashed_dynsyms if the symbol is
849       // hidden.
850       if (sym->is_undefined())
851         unhashed_dynsyms.push_back(sym);
852       else
853         {
854           hashed_dynsyms.push_back(sym);
855           dynsym_hashvals.push_back(Dynobj::gnu_hash(sym->name()));
856         }
857     }
858
859   // Put the unhashed symbols at the start of the global portion of
860   // the dynamic symbol table.
861   const unsigned int unhashed_count = unhashed_dynsyms.size();
862   unsigned int unhashed_dynsym_index = local_dynsym_count;
863   for (unsigned int i = 0; i < unhashed_count; ++i)
864     {
865       unhashed_dynsyms[i]->set_dynsym_index(unhashed_dynsym_index);
866       ++unhashed_dynsym_index;
867     }
868
869   // For the actual data generation we call out to a templatized
870   // function.
871   int size = target->get_size();
872   bool big_endian = target->is_big_endian();
873   if (size == 32)
874     {
875       if (big_endian)
876         Dynobj::sized_create_gnu_hash_table<32, true>(hashed_dynsyms,
877                                                       dynsym_hashvals,
878                                                       unhashed_dynsym_index,
879                                                       pphash,
880                                                       phashlen);
881       else
882         Dynobj::sized_create_gnu_hash_table<32, false>(hashed_dynsyms,
883                                                        dynsym_hashvals,
884                                                        unhashed_dynsym_index,
885                                                        pphash,
886                                                        phashlen);
887     }
888   else if (size == 64)
889     {
890       if (big_endian)
891         Dynobj::sized_create_gnu_hash_table<64, true>(hashed_dynsyms,
892                                                       dynsym_hashvals,
893                                                       unhashed_dynsym_index,
894                                                       pphash,
895                                                       phashlen);
896       else
897         Dynobj::sized_create_gnu_hash_table<64, false>(hashed_dynsyms,
898                                                        dynsym_hashvals,
899                                                        unhashed_dynsym_index,
900                                                        pphash,
901                                                        phashlen);
902     }
903   else
904     gold_unreachable();
905 }
906
907 // Create the actual data for a GNU hash table.  This is just a copy
908 // of the code from the old GNU linker.
909
910 template<int size, bool big_endian>
911 void
912 Dynobj::sized_create_gnu_hash_table(
913     const std::vector<Symbol*>& hashed_dynsyms,
914     const std::vector<uint32_t>& dynsym_hashvals,
915     unsigned int unhashed_dynsym_count,
916     unsigned char** pphash,
917     unsigned int* phashlen)
918 {
919   if (hashed_dynsyms.empty())
920     {
921       // Special case for the empty hash table.
922       unsigned int hashlen = 5 * 4 + size / 8;
923       unsigned char* phash = new unsigned char[hashlen];
924       // One empty bucket.
925       elfcpp::Swap<32, big_endian>::writeval(phash, 1);
926       // Symbol index above unhashed symbols.
927       elfcpp::Swap<32, big_endian>::writeval(phash + 4, unhashed_dynsym_count);
928       // One word for bitmask.
929       elfcpp::Swap<32, big_endian>::writeval(phash + 8, 1);
930       // Only bloom filter.
931       elfcpp::Swap<32, big_endian>::writeval(phash + 12, 0);
932       // No valid hashes.
933       elfcpp::Swap<size, big_endian>::writeval(phash + 16, 0);
934       // No hashes in only bucket.
935       elfcpp::Swap<32, big_endian>::writeval(phash + 16 + size / 8, 0);
936
937       *phashlen = hashlen;
938       *pphash = phash;
939
940       return;
941     }
942
943   const unsigned int bucketcount =
944     Dynobj::compute_bucket_count(dynsym_hashvals, true);
945
946   const unsigned int nsyms = hashed_dynsyms.size();
947
948   uint32_t maskbitslog2 = 1;
949   uint32_t x = nsyms >> 1;
950   while (x != 0)
951     {
952       ++maskbitslog2;
953       x >>= 1;
954     }
955   if (maskbitslog2 < 3)
956     maskbitslog2 = 5;
957   else if (((1U << (maskbitslog2 - 2)) & nsyms) != 0)
958     maskbitslog2 += 3;
959   else
960     maskbitslog2 += 2;
961
962   uint32_t shift1;
963   if (size == 32)
964     shift1 = 5;
965   else
966     {
967       if (maskbitslog2 == 5)
968         maskbitslog2 = 6;
969       shift1 = 6;
970     }
971   uint32_t mask = (1U << shift1) - 1U;
972   uint32_t shift2 = maskbitslog2;
973   uint32_t maskbits = 1U << maskbitslog2;
974   uint32_t maskwords = 1U << (maskbitslog2 - shift1);
975
976   typedef typename elfcpp::Elf_types<size>::Elf_WXword Word;
977   std::vector<Word> bitmask(maskwords);
978   std::vector<uint32_t> counts(bucketcount);
979   std::vector<uint32_t> indx(bucketcount);
980   uint32_t symindx = unhashed_dynsym_count;
981
982   // Count the number of times each hash bucket is used.
983   for (unsigned int i = 0; i < nsyms; ++i)
984     ++counts[dynsym_hashvals[i] % bucketcount];
985
986   unsigned int cnt = symindx;
987   for (unsigned int i = 0; i < bucketcount; ++i)
988     {
989       indx[i] = cnt;
990       cnt += counts[i];
991     }
992
993   unsigned int hashlen = (4 + bucketcount + nsyms) * 4;
994   hashlen += maskbits / 8;
995   unsigned char* phash = new unsigned char[hashlen];
996
997   elfcpp::Swap<32, big_endian>::writeval(phash, bucketcount);
998   elfcpp::Swap<32, big_endian>::writeval(phash + 4, symindx);
999   elfcpp::Swap<32, big_endian>::writeval(phash + 8, maskwords);
1000   elfcpp::Swap<32, big_endian>::writeval(phash + 12, shift2);
1001
1002   unsigned char* p = phash + 16 + maskbits / 8;
1003   for (unsigned int i = 0; i < bucketcount; ++i)
1004     {
1005       if (counts[i] == 0)
1006         elfcpp::Swap<32, big_endian>::writeval(p, 0);
1007       else
1008         elfcpp::Swap<32, big_endian>::writeval(p, indx[i]);
1009       p += 4;
1010     }
1011
1012   for (unsigned int i = 0; i < nsyms; ++i)
1013     {
1014       Symbol* sym = hashed_dynsyms[i];
1015       uint32_t hashval = dynsym_hashvals[i];
1016
1017       unsigned int bucket = hashval % bucketcount;
1018       unsigned int val = ((hashval >> shift1)
1019                           & ((maskbits >> shift1) - 1));
1020       bitmask[val] |= (static_cast<Word>(1U)) << (hashval & mask);
1021       bitmask[val] |= (static_cast<Word>(1U)) << ((hashval >> shift2) & mask);
1022       val = hashval & ~ 1U;
1023       if (counts[bucket] == 1)
1024         {
1025           // Last element terminates the chain.
1026           val |= 1;
1027         }
1028       elfcpp::Swap<32, big_endian>::writeval(p + (indx[bucket] - symindx) * 4,
1029                                              val);
1030       --counts[bucket];
1031
1032       sym->set_dynsym_index(indx[bucket]);
1033       ++indx[bucket];
1034     }
1035
1036   p = phash + 16;
1037   for (unsigned int i = 0; i < maskwords; ++i)
1038     {
1039       elfcpp::Swap<size, big_endian>::writeval(p, bitmask[i]);
1040       p += size / 8;
1041     }
1042
1043   *phashlen = hashlen;
1044   *pphash = phash;
1045 }
1046
1047 // Verdef methods.
1048
1049 // Write this definition to a buffer for the output section.
1050
1051 template<int size, bool big_endian>
1052 unsigned char*
1053 Verdef::write(const Stringpool* dynpool, bool is_last, unsigned char* pb
1054               ACCEPT_SIZE_ENDIAN) const
1055 {
1056   const int verdef_size = elfcpp::Elf_sizes<size>::verdef_size;
1057   const int verdaux_size = elfcpp::Elf_sizes<size>::verdaux_size;
1058
1059   elfcpp::Verdef_write<size, big_endian> vd(pb);
1060   vd.set_vd_version(elfcpp::VER_DEF_CURRENT);
1061   vd.set_vd_flags((this->is_base_ ? elfcpp::VER_FLG_BASE : 0)
1062                   | (this->is_weak_ ? elfcpp::VER_FLG_WEAK : 0));
1063   vd.set_vd_ndx(this->index());
1064   vd.set_vd_cnt(1 + this->deps_.size());
1065   vd.set_vd_hash(Dynobj::elf_hash(this->name()));
1066   vd.set_vd_aux(verdef_size);
1067   vd.set_vd_next(is_last
1068                  ? 0
1069                  : verdef_size + (1 + this->deps_.size()) * verdaux_size);
1070   pb += verdef_size;
1071
1072   elfcpp::Verdaux_write<size, big_endian> vda(pb);
1073   vda.set_vda_name(dynpool->get_offset(this->name()));
1074   vda.set_vda_next(this->deps_.empty() ? 0 : verdaux_size);
1075   pb += verdaux_size;
1076
1077   Deps::const_iterator p;
1078   unsigned int i;
1079   for (p = this->deps_.begin(), i = 0;
1080        p != this->deps_.end();
1081        ++p, ++i)
1082     {
1083       elfcpp::Verdaux_write<size, big_endian> vda(pb);
1084       vda.set_vda_name(dynpool->get_offset(*p));
1085       vda.set_vda_next(i + 1 >= this->deps_.size() ? 0 : verdaux_size);
1086       pb += verdaux_size;
1087     }
1088
1089   return pb;
1090 }
1091
1092 // Verneed methods.
1093
1094 Verneed::~Verneed()
1095 {
1096   for (Need_versions::iterator p = this->need_versions_.begin();
1097        p != this->need_versions_.end();
1098        ++p)
1099     delete *p;
1100 }
1101
1102 // Add a new version to this file reference.
1103
1104 Verneed_version*
1105 Verneed::add_name(const char* name)
1106 {
1107   Verneed_version* vv = new Verneed_version(name);
1108   this->need_versions_.push_back(vv);
1109   return vv;
1110 }
1111
1112 // Set the version indexes starting at INDEX.
1113
1114 unsigned int
1115 Verneed::finalize(unsigned int index)
1116 {
1117   for (Need_versions::iterator p = this->need_versions_.begin();
1118        p != this->need_versions_.end();
1119        ++p)
1120     {
1121       (*p)->set_index(index);
1122       ++index;
1123     }
1124   return index;
1125 }
1126
1127 // Write this list of referenced versions to a buffer for the output
1128 // section.
1129
1130 template<int size, bool big_endian>
1131 unsigned char*
1132 Verneed::write(const Stringpool* dynpool, bool is_last,
1133                unsigned char* pb ACCEPT_SIZE_ENDIAN) const
1134 {
1135   const int verneed_size = elfcpp::Elf_sizes<size>::verneed_size;
1136   const int vernaux_size = elfcpp::Elf_sizes<size>::vernaux_size;
1137
1138   elfcpp::Verneed_write<size, big_endian> vn(pb);
1139   vn.set_vn_version(elfcpp::VER_NEED_CURRENT);
1140   vn.set_vn_cnt(this->need_versions_.size());
1141   vn.set_vn_file(dynpool->get_offset(this->filename()));
1142   vn.set_vn_aux(verneed_size);
1143   vn.set_vn_next(is_last
1144                  ? 0
1145                  : verneed_size + this->need_versions_.size() * vernaux_size);
1146   pb += verneed_size;
1147
1148   Need_versions::const_iterator p;
1149   unsigned int i;
1150   for (p = this->need_versions_.begin(), i = 0;
1151        p != this->need_versions_.end();
1152        ++p, ++i)
1153     {
1154       elfcpp::Vernaux_write<size, big_endian> vna(pb);
1155       vna.set_vna_hash(Dynobj::elf_hash((*p)->version()));
1156       // FIXME: We need to sometimes set VER_FLG_WEAK here.
1157       vna.set_vna_flags(0);
1158       vna.set_vna_other((*p)->index());
1159       vna.set_vna_name(dynpool->get_offset((*p)->version()));
1160       vna.set_vna_next(i + 1 >= this->need_versions_.size()
1161                        ? 0
1162                        : vernaux_size);
1163       pb += vernaux_size;
1164     }
1165
1166   return pb;
1167 }
1168
1169 // Versions methods.
1170
1171 Versions::~Versions()
1172 {
1173   for (Defs::iterator p = this->defs_.begin();
1174        p != this->defs_.end();
1175        ++p)
1176     delete *p;
1177
1178   for (Needs::iterator p = this->needs_.begin();
1179        p != this->needs_.end();
1180        ++p)
1181     delete *p;
1182 }
1183
1184 // Record version information for a symbol going into the dynamic
1185 // symbol table.
1186
1187 void
1188 Versions::record_version(const General_options* options,
1189                          Stringpool* dynpool, const Symbol* sym)
1190 {
1191   gold_assert(!this->is_finalized_);
1192   gold_assert(sym->version() != NULL);
1193
1194   Stringpool::Key version_key;
1195   const char* version = dynpool->add(sym->version(), &version_key);
1196
1197   if (!sym->is_from_dynobj())
1198     {
1199       if (parameters->output_is_shared())
1200         this->add_def(options, sym, version, version_key);
1201     }
1202   else
1203     {
1204       // This is a version reference.
1205
1206       Object* object = sym->object();
1207       gold_assert(object->is_dynamic());
1208       Dynobj* dynobj = static_cast<Dynobj*>(object);
1209
1210       this->add_need(dynpool, dynobj->soname(), version, version_key);
1211     }
1212 }
1213
1214 // We've found a symbol SYM defined in version VERSION.
1215
1216 void
1217 Versions::add_def(const General_options* options, const Symbol* sym,
1218                   const char* version, Stringpool::Key version_key)
1219 {
1220   Key k(version_key, 0);
1221   Version_base* const vbnull = NULL;
1222   std::pair<Version_table::iterator, bool> ins =
1223     this->version_table_.insert(std::make_pair(k, vbnull));
1224
1225   if (!ins.second)
1226     {
1227       // We already have an entry for this version.
1228       Version_base* vb = ins.first->second;
1229
1230       // We have now seen a symbol in this version, so it is not
1231       // weak.
1232       vb->clear_weak();
1233
1234       // FIXME: When we support version scripts, we will need to
1235       // check whether this symbol should be forced local.
1236     }
1237   else
1238     {
1239       // If we are creating a shared object, it is an error to
1240       // find a definition of a symbol with a version which is not
1241       // in the version script.
1242       if (parameters->output_is_shared())
1243         {
1244           fprintf(stderr, _("%s: symbol %s has undefined version %s\n"),
1245                   program_name, sym->name(), version);
1246           gold_exit(false);
1247         }
1248
1249       // If this is the first version we are defining, first define
1250       // the base version.  FIXME: Should use soname here when
1251       // creating a shared object.
1252       Verdef* vdbase = new Verdef(options->output_file_name(), true, false,
1253                                   true);
1254       this->defs_.push_back(vdbase);
1255
1256       // When creating a regular executable, automatically define
1257       // a new version.
1258       Verdef* vd = new Verdef(version, false, false, false);
1259       this->defs_.push_back(vd);
1260       ins.first->second = vd;
1261     }
1262 }
1263
1264 // Add a reference to version NAME in file FILENAME.
1265
1266 void
1267 Versions::add_need(Stringpool* dynpool, const char* filename, const char* name,
1268                    Stringpool::Key name_key)
1269 {
1270   Stringpool::Key filename_key;
1271   filename = dynpool->add(filename, &filename_key);
1272
1273   Key k(name_key, filename_key);
1274   Version_base* const vbnull = NULL;
1275   std::pair<Version_table::iterator, bool> ins =
1276     this->version_table_.insert(std::make_pair(k, vbnull));
1277
1278   if (!ins.second)
1279     {
1280       // We already have an entry for this filename/version.
1281       return;
1282     }
1283
1284   // See whether we already have this filename.  We don't expect many
1285   // version references, so we just do a linear search.  This could be
1286   // replaced by a hash table.
1287   Verneed* vn = NULL;
1288   for (Needs::iterator p = this->needs_.begin();
1289        p != this->needs_.end();
1290        ++p)
1291     {
1292       if ((*p)->filename() == filename)
1293         {
1294           vn = *p;
1295           break;
1296         }
1297     }
1298
1299   if (vn == NULL)
1300     {
1301       // We have a new filename.
1302       vn = new Verneed(filename);
1303       this->needs_.push_back(vn);
1304     }
1305
1306   ins.first->second = vn->add_name(name);
1307 }
1308
1309 // Set the version indexes.  Create a new dynamic version symbol for
1310 // each new version definition.
1311
1312 unsigned int
1313 Versions::finalize(const Target* target, Symbol_table* symtab,
1314                    unsigned int dynsym_index, std::vector<Symbol*>* syms)
1315 {
1316   gold_assert(!this->is_finalized_);
1317
1318   unsigned int vi = 1;
1319
1320   for (Defs::iterator p = this->defs_.begin();
1321        p != this->defs_.end();
1322        ++p)
1323     {
1324       (*p)->set_index(vi);
1325       ++vi;
1326
1327       // Create a version symbol if necessary.
1328       if (!(*p)->is_symbol_created())
1329         {
1330           Symbol* vsym = symtab->define_as_constant(target, (*p)->name(),
1331                                                     (*p)->name(), 0, 0,
1332                                                     elfcpp::STT_OBJECT,
1333                                                     elfcpp::STB_GLOBAL,
1334                                                     elfcpp::STV_DEFAULT, 0,
1335                                                     false);
1336           vsym->set_needs_dynsym_entry();
1337           vsym->set_dynsym_index(dynsym_index);
1338           ++dynsym_index;
1339           syms->push_back(vsym);
1340           // The name is already in the dynamic pool.
1341         }
1342     }
1343
1344   // Index 1 is used for global symbols.
1345   if (vi == 1)
1346     {
1347       gold_assert(this->defs_.empty());
1348       vi = 2;
1349     }
1350
1351   for (Needs::iterator p = this->needs_.begin();
1352        p != this->needs_.end();
1353        ++p)
1354     vi = (*p)->finalize(vi);
1355
1356   this->is_finalized_ = true;
1357
1358   return dynsym_index;
1359 }
1360
1361 // Return the version index to use for a symbol.  This does two hash
1362 // table lookups: one in DYNPOOL and one in this->version_table_.
1363 // Another approach alternative would be store a pointer in SYM, which
1364 // would increase the size of the symbol table.  Or perhaps we could
1365 // use a hash table from dynamic symbol pointer values to Version_base
1366 // pointers.
1367
1368 unsigned int
1369 Versions::version_index(const Stringpool* dynpool, const Symbol* sym) const
1370 {
1371   Stringpool::Key version_key;
1372   const char* version = dynpool->find(sym->version(), &version_key);
1373   gold_assert(version != NULL);
1374
1375   Key k;
1376   if (!sym->is_from_dynobj())
1377     {
1378       if (!parameters->output_is_shared())
1379         return elfcpp::VER_NDX_GLOBAL;
1380       k = Key(version_key, 0);
1381     }
1382   else
1383     {
1384       Object* object = sym->object();
1385       gold_assert(object->is_dynamic());
1386       Dynobj* dynobj = static_cast<Dynobj*>(object);
1387
1388       Stringpool::Key filename_key;
1389       const char* filename = dynpool->find(dynobj->soname(), &filename_key);
1390       gold_assert(filename != NULL);
1391
1392       k = Key(version_key, filename_key);
1393     }
1394
1395   Version_table::const_iterator p = this->version_table_.find(k);
1396   gold_assert(p != this->version_table_.end());
1397
1398   return p->second->index();
1399 }
1400
1401 // Return an allocated buffer holding the contents of the symbol
1402 // version section.
1403
1404 template<int size, bool big_endian>
1405 void
1406 Versions::symbol_section_contents(const Stringpool* dynpool,
1407                                   unsigned int local_symcount,
1408                                   const std::vector<Symbol*>& syms,
1409                                   unsigned char** pp,
1410                                   unsigned int* psize
1411                                   ACCEPT_SIZE_ENDIAN) const
1412 {
1413   gold_assert(this->is_finalized_);
1414
1415   unsigned int sz = (local_symcount + syms.size()) * 2;
1416   unsigned char* pbuf = new unsigned char[sz];
1417
1418   for (unsigned int i = 0; i < local_symcount; ++i)
1419     elfcpp::Swap<16, big_endian>::writeval(pbuf + i * 2,
1420                                            elfcpp::VER_NDX_LOCAL);
1421
1422   for (std::vector<Symbol*>::const_iterator p = syms.begin();
1423        p != syms.end();
1424        ++p)
1425     {
1426       unsigned int version_index;
1427       const char* version = (*p)->version();
1428       if (version == NULL)
1429         version_index = elfcpp::VER_NDX_GLOBAL;
1430       else
1431         version_index = this->version_index(dynpool, *p);
1432       elfcpp::Swap<16, big_endian>::writeval(pbuf + (*p)->dynsym_index() * 2,
1433                                              version_index);
1434     }
1435
1436   *pp = pbuf;
1437   *psize = sz;
1438 }
1439
1440 // Return an allocated buffer holding the contents of the version
1441 // definition section.
1442
1443 template<int size, bool big_endian>
1444 void
1445 Versions::def_section_contents(const Stringpool* dynpool,
1446                                unsigned char** pp, unsigned int* psize,
1447                                unsigned int* pentries
1448                                ACCEPT_SIZE_ENDIAN) const
1449 {
1450   gold_assert(this->is_finalized_);
1451   gold_assert(!this->defs_.empty());
1452
1453   const int verdef_size = elfcpp::Elf_sizes<size>::verdef_size;
1454   const int verdaux_size = elfcpp::Elf_sizes<size>::verdaux_size;
1455
1456   unsigned int sz = 0;
1457   for (Defs::const_iterator p = this->defs_.begin();
1458        p != this->defs_.end();
1459        ++p)
1460     {
1461       sz += verdef_size + verdaux_size;
1462       sz += (*p)->count_dependencies() * verdaux_size;
1463     }
1464
1465   unsigned char* pbuf = new unsigned char[sz];
1466
1467   unsigned char* pb = pbuf;
1468   Defs::const_iterator p;
1469   unsigned int i;
1470   for (p = this->defs_.begin(), i = 0;
1471        p != this->defs_.end();
1472        ++p, ++i)
1473     pb = (*p)->write SELECT_SIZE_ENDIAN_NAME(size, big_endian)(
1474             dynpool, i + 1 >= this->defs_.size(), pb
1475             SELECT_SIZE_ENDIAN(size, big_endian));
1476
1477   gold_assert(static_cast<unsigned int>(pb - pbuf) == sz);
1478
1479   *pp = pbuf;
1480   *psize = sz;
1481   *pentries = this->defs_.size();
1482 }
1483
1484 // Return an allocated buffer holding the contents of the version
1485 // reference section.
1486
1487 template<int size, bool big_endian>
1488 void
1489 Versions::need_section_contents(const Stringpool* dynpool,
1490                                 unsigned char** pp, unsigned int *psize,
1491                                 unsigned int *pentries
1492                                 ACCEPT_SIZE_ENDIAN) const
1493 {
1494   gold_assert(this->is_finalized_);
1495   gold_assert(!this->needs_.empty());
1496
1497   const int verneed_size = elfcpp::Elf_sizes<size>::verneed_size;
1498   const int vernaux_size = elfcpp::Elf_sizes<size>::vernaux_size;
1499
1500   unsigned int sz = 0;
1501   for (Needs::const_iterator p = this->needs_.begin();
1502        p != this->needs_.end();
1503        ++p)
1504     {
1505       sz += verneed_size;
1506       sz += (*p)->count_versions() * vernaux_size;
1507     }
1508
1509   unsigned char* pbuf = new unsigned char[sz];
1510
1511   unsigned char* pb = pbuf;
1512   Needs::const_iterator p;
1513   unsigned int i;
1514   for (p = this->needs_.begin(), i = 0;
1515        p != this->needs_.end();
1516        ++p, ++i)
1517     pb = (*p)->write SELECT_SIZE_ENDIAN_NAME(size, big_endian)(
1518             dynpool, i + 1 >= this->needs_.size(), pb
1519             SELECT_SIZE_ENDIAN(size, big_endian));
1520
1521   gold_assert(static_cast<unsigned int>(pb - pbuf) == sz);
1522
1523   *pp = pbuf;
1524   *psize = sz;
1525   *pentries = this->needs_.size();
1526 }
1527
1528 // Instantiate the templates we need.  We could use the configure
1529 // script to restrict this to only the ones for implemented targets.
1530
1531 #ifdef HAVE_TARGET_32_LITTLE
1532 template
1533 class Sized_dynobj<32, false>;
1534 #endif
1535
1536 #ifdef HAVE_TARGET_32_BIG
1537 template
1538 class Sized_dynobj<32, true>;
1539 #endif
1540
1541 #ifdef HAVE_TARGET_64_LITTLE
1542 template
1543 class Sized_dynobj<64, false>;
1544 #endif
1545
1546 #ifdef HAVE_TARGET_64_BIG
1547 template
1548 class Sized_dynobj<64, true>;
1549 #endif
1550
1551 #ifdef HAVE_TARGET_32_LITTLE
1552 template
1553 void
1554 Versions::symbol_section_contents<32, false>(
1555     const Stringpool*,
1556     unsigned int,
1557     const std::vector<Symbol*>&,
1558     unsigned char**,
1559     unsigned int*
1560     ACCEPT_SIZE_ENDIAN_EXPLICIT(32, false)) const;
1561 #endif
1562
1563 #ifdef HAVE_TARGET_32_BIG
1564 template
1565 void
1566 Versions::symbol_section_contents<32, true>(
1567     const Stringpool*,
1568     unsigned int,
1569     const std::vector<Symbol*>&,
1570     unsigned char**,
1571     unsigned int*
1572     ACCEPT_SIZE_ENDIAN_EXPLICIT(32, true)) const;
1573 #endif
1574
1575 #ifdef HAVE_TARGET_64_LITTLE
1576 template
1577 void
1578 Versions::symbol_section_contents<64, false>(
1579     const Stringpool*,
1580     unsigned int,
1581     const std::vector<Symbol*>&,
1582     unsigned char**,
1583     unsigned int*
1584     ACCEPT_SIZE_ENDIAN_EXPLICIT(64, false)) const;
1585 #endif
1586
1587 #ifdef HAVE_TARGET_64_BIG
1588 template
1589 void
1590 Versions::symbol_section_contents<64, true>(
1591     const Stringpool*,
1592     unsigned int,
1593     const std::vector<Symbol*>&,
1594     unsigned char**,
1595     unsigned int*
1596     ACCEPT_SIZE_ENDIAN_EXPLICIT(64, true)) const;
1597 #endif
1598
1599 #ifdef HAVE_TARGET_32_LITTLE
1600 template
1601 void
1602 Versions::def_section_contents<32, false>(
1603     const Stringpool*,
1604     unsigned char**,
1605     unsigned int*,
1606     unsigned int*
1607     ACCEPT_SIZE_ENDIAN_EXPLICIT(32, false)) const;
1608 #endif
1609
1610 #ifdef HAVE_TARGET_32_BIG
1611 template
1612 void
1613 Versions::def_section_contents<32, true>(
1614     const Stringpool*,
1615     unsigned char**,
1616     unsigned int*,
1617     unsigned int*
1618     ACCEPT_SIZE_ENDIAN_EXPLICIT(32, true)) const;
1619 #endif
1620
1621 #ifdef HAVE_TARGET_64_LITTLE
1622 template
1623 void
1624 Versions::def_section_contents<64, false>(
1625     const Stringpool*,
1626     unsigned char**,
1627     unsigned int*,
1628     unsigned int*
1629     ACCEPT_SIZE_ENDIAN_EXPLICIT(64, false)) const;
1630 #endif
1631
1632 #ifdef HAVE_TARGET_64_BIG
1633 template
1634 void
1635 Versions::def_section_contents<64, true>(
1636     const Stringpool*,
1637     unsigned char**,
1638     unsigned int*,
1639     unsigned int*
1640     ACCEPT_SIZE_ENDIAN_EXPLICIT(64, true)) const;
1641 #endif
1642
1643 #ifdef HAVE_TARGET_32_LITTLE
1644 template
1645 void
1646 Versions::need_section_contents<32, false>(
1647     const Stringpool*,
1648     unsigned char**,
1649     unsigned int*,
1650     unsigned int*
1651     ACCEPT_SIZE_ENDIAN_EXPLICIT(32, false)) const;
1652 #endif
1653
1654 #ifdef HAVE_TARGET_32_BIG
1655 template
1656 void
1657 Versions::need_section_contents<32, true>(
1658     const Stringpool*,
1659     unsigned char**,
1660     unsigned int*,
1661     unsigned int*
1662     ACCEPT_SIZE_ENDIAN_EXPLICIT(32, true)) const;
1663 #endif
1664
1665 #ifdef HAVE_TARGET_64_LITTLE
1666 template
1667 void
1668 Versions::need_section_contents<64, false>(
1669     const Stringpool*,
1670     unsigned char**,
1671     unsigned int*,
1672     unsigned int*
1673     ACCEPT_SIZE_ENDIAN_EXPLICIT(64, false)) const;
1674 #endif
1675
1676 #ifdef HAVE_TARGET_64_BIG
1677 template
1678 void
1679 Versions::need_section_contents<64, true>(
1680     const Stringpool*,
1681     unsigned char**,
1682     unsigned int*,
1683     unsigned int*
1684     ACCEPT_SIZE_ENDIAN_EXPLICIT(64, true)) const;
1685 #endif
1686
1687 } // End namespace gold.