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