*** empty log message ***
[deliverable/binutils-gdb.git] / gold / symtab.cc
CommitLineData
14bfc3f5
ILT
1// symtab.cc -- the gold symbol table
2
0f3b89d8 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
14bfc3f5
ILT
23#include "gold.h"
24
04bf7072 25#include <cstring>
14bfc3f5 26#include <stdint.h>
04bf7072 27#include <algorithm>
70e654ba 28#include <set>
14bfc3f5
ILT
29#include <string>
30#include <utility>
a2b1aa12 31#include "demangle.h"
14bfc3f5 32
6d03d481 33#include "gc.h"
14bfc3f5 34#include "object.h"
70e654ba 35#include "dwarf_reader.h"
dbe717ef 36#include "dynobj.h"
75f65a3e 37#include "output.h"
61ba1cf9 38#include "target.h"
645f8123 39#include "workqueue.h"
14bfc3f5 40#include "symtab.h"
88a4108b 41#include "script.h"
89fc3421 42#include "plugin.h"
cdc29364 43#include "incremental.h"
14bfc3f5
ILT
44
45namespace gold
46{
47
48// Class Symbol.
49
ead1e424
ILT
50// Initialize fields in Symbol. This initializes everything except u_
51// and source_.
14bfc3f5 52
14bfc3f5 53void
2ea97941
ILT
54Symbol::init_fields(const char* name, const char* version,
55 elfcpp::STT type, elfcpp::STB binding,
56 elfcpp::STV visibility, unsigned char nonvis)
14bfc3f5 57{
2ea97941
ILT
58 this->name_ = name;
59 this->version_ = version;
c06b7b0b
ILT
60 this->symtab_index_ = 0;
61 this->dynsym_index_ = 0;
0a65a3a7 62 this->got_offsets_.init();
880cd20d 63 this->plt_offset_ = -1U;
2ea97941
ILT
64 this->type_ = type;
65 this->binding_ = binding;
66 this->visibility_ = visibility;
67 this->nonvis_ = nonvis;
1564db8d
ILT
68 this->is_def_ = false;
69 this->is_forwarder_ = false;
aeddab66 70 this->has_alias_ = false;
c06b7b0b 71 this->needs_dynsym_entry_ = false;
008db82e 72 this->in_reg_ = false;
ead1e424 73 this->in_dyn_ = false;
f6ce93d6 74 this->has_warning_ = false;
46fe1623 75 this->is_copied_from_dynobj_ = false;
55a93433 76 this->is_forced_local_ = false;
d491d34e 77 this->is_ordinary_shndx_ = false;
89fc3421 78 this->in_real_elf_ = false;
880cd20d 79 this->is_defined_in_discarded_section_ = false;
ce279a62
CC
80 this->undef_binding_set_ = false;
81 this->undef_binding_weak_ = false;
5146f448 82 this->is_predefined_ = false;
ead1e424
ILT
83}
84
a2b1aa12
ILT
85// Return the demangled version of the symbol's name, but only
86// if the --demangle flag was set.
87
88static std::string
2ea97941 89demangle(const char* name)
a2b1aa12 90{
086a1841 91 if (!parameters->options().do_demangle())
2ea97941 92 return name;
ff541f30 93
a2b1aa12
ILT
94 // cplus_demangle allocates memory for the result it returns,
95 // and returns NULL if the name is already demangled.
2ea97941 96 char* demangled_name = cplus_demangle(name, DMGL_ANSI | DMGL_PARAMS);
a2b1aa12 97 if (demangled_name == NULL)
2ea97941 98 return name;
a2b1aa12
ILT
99
100 std::string retval(demangled_name);
101 free(demangled_name);
102 return retval;
103}
104
105std::string
106Symbol::demangled_name() const
107{
ff541f30 108 return demangle(this->name());
a2b1aa12
ILT
109}
110
ead1e424
ILT
111// Initialize the fields in the base class Symbol for SYM in OBJECT.
112
113template<int size, bool big_endian>
114void
2ea97941 115Symbol::init_base_object(const char* name, const char* version, Object* object,
f3e9c5c5
ILT
116 const elfcpp::Sym<size, big_endian>& sym,
117 unsigned int st_shndx, bool is_ordinary)
ead1e424 118{
2ea97941 119 this->init_fields(name, version, sym.get_st_type(), sym.get_st_bind(),
ead1e424 120 sym.get_st_visibility(), sym.get_st_nonvis());
2ea97941 121 this->u_.from_object.object = object;
d491d34e
ILT
122 this->u_.from_object.shndx = st_shndx;
123 this->is_ordinary_shndx_ = is_ordinary;
ead1e424 124 this->source_ = FROM_OBJECT;
2ea97941
ILT
125 this->in_reg_ = !object->is_dynamic();
126 this->in_dyn_ = object->is_dynamic();
127 this->in_real_elf_ = object->pluginobj() == NULL;
14bfc3f5
ILT
128}
129
ead1e424
ILT
130// Initialize the fields in the base class Symbol for a symbol defined
131// in an Output_data.
132
133void
2ea97941
ILT
134Symbol::init_base_output_data(const char* name, const char* version,
135 Output_data* od, elfcpp::STT type,
136 elfcpp::STB binding, elfcpp::STV visibility,
5146f448
CC
137 unsigned char nonvis, bool offset_is_from_end,
138 bool is_predefined)
ead1e424 139{
2ea97941 140 this->init_fields(name, version, type, binding, visibility, nonvis);
ead1e424 141 this->u_.in_output_data.output_data = od;
2ea97941 142 this->u_.in_output_data.offset_is_from_end = offset_is_from_end;
ead1e424 143 this->source_ = IN_OUTPUT_DATA;
008db82e 144 this->in_reg_ = true;
89fc3421 145 this->in_real_elf_ = true;
5146f448 146 this->is_predefined_ = is_predefined;
ead1e424
ILT
147}
148
149// Initialize the fields in the base class Symbol for a symbol defined
150// in an Output_segment.
151
152void
2ea97941
ILT
153Symbol::init_base_output_segment(const char* name, const char* version,
154 Output_segment* os, elfcpp::STT type,
155 elfcpp::STB binding, elfcpp::STV visibility,
156 unsigned char nonvis,
5146f448
CC
157 Segment_offset_base offset_base,
158 bool is_predefined)
ead1e424 159{
2ea97941 160 this->init_fields(name, version, type, binding, visibility, nonvis);
ead1e424 161 this->u_.in_output_segment.output_segment = os;
2ea97941 162 this->u_.in_output_segment.offset_base = offset_base;
ead1e424 163 this->source_ = IN_OUTPUT_SEGMENT;
008db82e 164 this->in_reg_ = true;
89fc3421 165 this->in_real_elf_ = true;
5146f448 166 this->is_predefined_ = is_predefined;
ead1e424
ILT
167}
168
169// Initialize the fields in the base class Symbol for a symbol defined
170// as a constant.
171
172void
2ea97941
ILT
173Symbol::init_base_constant(const char* name, const char* version,
174 elfcpp::STT type, elfcpp::STB binding,
5146f448
CC
175 elfcpp::STV visibility, unsigned char nonvis,
176 bool is_predefined)
f3e9c5c5 177{
2ea97941 178 this->init_fields(name, version, type, binding, visibility, nonvis);
f3e9c5c5
ILT
179 this->source_ = IS_CONSTANT;
180 this->in_reg_ = true;
89fc3421 181 this->in_real_elf_ = true;
5146f448 182 this->is_predefined_ = is_predefined;
f3e9c5c5
ILT
183}
184
185// Initialize the fields in the base class Symbol for an undefined
186// symbol.
187
188void
2ea97941
ILT
189Symbol::init_base_undefined(const char* name, const char* version,
190 elfcpp::STT type, elfcpp::STB binding,
191 elfcpp::STV visibility, unsigned char nonvis)
ead1e424 192{
2ea97941 193 this->init_fields(name, version, type, binding, visibility, nonvis);
d7ab2a47 194 this->dynsym_index_ = -1U;
f3e9c5c5 195 this->source_ = IS_UNDEFINED;
008db82e 196 this->in_reg_ = true;
89fc3421 197 this->in_real_elf_ = true;
ead1e424
ILT
198}
199
c7912668
ILT
200// Allocate a common symbol in the base.
201
202void
203Symbol::allocate_base_common(Output_data* od)
204{
205 gold_assert(this->is_common());
206 this->source_ = IN_OUTPUT_DATA;
207 this->u_.in_output_data.output_data = od;
208 this->u_.in_output_data.offset_is_from_end = false;
209}
210
ead1e424 211// Initialize the fields in Sized_symbol for SYM in OBJECT.
14bfc3f5
ILT
212
213template<int size>
214template<bool big_endian>
215void
2ea97941
ILT
216Sized_symbol<size>::init_object(const char* name, const char* version,
217 Object* object,
f3e9c5c5
ILT
218 const elfcpp::Sym<size, big_endian>& sym,
219 unsigned int st_shndx, bool is_ordinary)
14bfc3f5 220{
2ea97941 221 this->init_base_object(name, version, object, sym, st_shndx, is_ordinary);
14bfc3f5 222 this->value_ = sym.get_st_value();
ead1e424
ILT
223 this->symsize_ = sym.get_st_size();
224}
225
226// Initialize the fields in Sized_symbol for a symbol defined in an
227// Output_data.
228
229template<int size>
230void
2ea97941
ILT
231Sized_symbol<size>::init_output_data(const char* name, const char* version,
232 Output_data* od, Value_type value,
233 Size_type symsize, elfcpp::STT type,
234 elfcpp::STB binding,
235 elfcpp::STV visibility,
236 unsigned char nonvis,
5146f448
CC
237 bool offset_is_from_end,
238 bool is_predefined)
ead1e424 239{
2ea97941 240 this->init_base_output_data(name, version, od, type, binding, visibility,
5146f448 241 nonvis, offset_is_from_end, is_predefined);
2ea97941
ILT
242 this->value_ = value;
243 this->symsize_ = symsize;
ead1e424
ILT
244}
245
246// Initialize the fields in Sized_symbol for a symbol defined in an
247// Output_segment.
248
249template<int size>
250void
2ea97941
ILT
251Sized_symbol<size>::init_output_segment(const char* name, const char* version,
252 Output_segment* os, Value_type value,
253 Size_type symsize, elfcpp::STT type,
254 elfcpp::STB binding,
255 elfcpp::STV visibility,
256 unsigned char nonvis,
5146f448
CC
257 Segment_offset_base offset_base,
258 bool is_predefined)
ead1e424 259{
2ea97941 260 this->init_base_output_segment(name, version, os, type, binding, visibility,
5146f448 261 nonvis, offset_base, is_predefined);
2ea97941
ILT
262 this->value_ = value;
263 this->symsize_ = symsize;
ead1e424
ILT
264}
265
266// Initialize the fields in Sized_symbol for a symbol defined as a
267// constant.
268
269template<int size>
270void
2ea97941
ILT
271Sized_symbol<size>::init_constant(const char* name, const char* version,
272 Value_type value, Size_type symsize,
273 elfcpp::STT type, elfcpp::STB binding,
5146f448
CC
274 elfcpp::STV visibility, unsigned char nonvis,
275 bool is_predefined)
ead1e424 276{
5146f448
CC
277 this->init_base_constant(name, version, type, binding, visibility, nonvis,
278 is_predefined);
2ea97941
ILT
279 this->value_ = value;
280 this->symsize_ = symsize;
14bfc3f5
ILT
281}
282
f3e9c5c5
ILT
283// Initialize the fields in Sized_symbol for an undefined symbol.
284
285template<int size>
286void
2ea97941
ILT
287Sized_symbol<size>::init_undefined(const char* name, const char* version,
288 elfcpp::STT type, elfcpp::STB binding,
289 elfcpp::STV visibility, unsigned char nonvis)
f3e9c5c5 290{
2ea97941 291 this->init_base_undefined(name, version, type, binding, visibility, nonvis);
f3e9c5c5
ILT
292 this->value_ = 0;
293 this->symsize_ = 0;
294}
295
6d1c4efb
ILT
296// Return an allocated string holding the symbol's name as
297// name@version. This is used for relocatable links.
298
299std::string
300Symbol::versioned_name() const
301{
302 gold_assert(this->version_ != NULL);
303 std::string ret = this->name_;
304 ret.push_back('@');
305 if (this->is_def_)
306 ret.push_back('@');
307 ret += this->version_;
308 return ret;
309}
310
8a5e3e08
ILT
311// Return true if SHNDX represents a common symbol.
312
313bool
2ea97941 314Symbol::is_common_shndx(unsigned int shndx)
8a5e3e08 315{
2ea97941
ILT
316 return (shndx == elfcpp::SHN_COMMON
317 || shndx == parameters->target().small_common_shndx()
318 || shndx == parameters->target().large_common_shndx());
8a5e3e08
ILT
319}
320
c7912668
ILT
321// Allocate a common symbol.
322
323template<int size>
324void
2ea97941 325Sized_symbol<size>::allocate_common(Output_data* od, Value_type value)
c7912668
ILT
326{
327 this->allocate_base_common(od);
2ea97941 328 this->value_ = value;
c7912668
ILT
329}
330
c82fbeee
CS
331// The ""'s around str ensure str is a string literal, so sizeof works.
332#define strprefix(var, str) (strncmp(var, str, sizeof("" str "") - 1) == 0)
333
436ca963
ILT
334// Return true if this symbol should be added to the dynamic symbol
335// table.
336
337inline bool
ce97fa81 338Symbol::should_add_dynsym_entry(Symbol_table* symtab) const
436ca963 339{
badc8139
RÁE
340 // If the symbol is only present on plugin files, the plugin decided we
341 // don't need it.
342 if (!this->in_real_elf())
343 return false;
344
436ca963
ILT
345 // If the symbol is used by a dynamic relocation, we need to add it.
346 if (this->needs_dynsym_entry())
347 return true;
348
6d03d481
ST
349 // If this symbol's section is not added, the symbol need not be added.
350 // The section may have been GCed. Note that export_dynamic is being
351 // overridden here. This should not be done for shared objects.
352 if (parameters->options().gc_sections()
353 && !parameters->options().shared()
354 && this->source() == Symbol::FROM_OBJECT
355 && !this->object()->is_dynamic())
356 {
357 Relobj* relobj = static_cast<Relobj*>(this->object());
358 bool is_ordinary;
2ea97941
ILT
359 unsigned int shndx = this->shndx(&is_ordinary);
360 if (is_ordinary && shndx != elfcpp::SHN_UNDEF
ce97fa81
ST
361 && !relobj->is_section_included(shndx)
362 && !symtab->is_section_folded(relobj, shndx))
6d03d481
ST
363 return false;
364 }
365
31821be0
CC
366 // If the symbol was forced dynamic in a --dynamic-list file
367 // or an --export-dynamic-symbol option, add it.
b24fdbf5
CC
368 if (!this->is_from_dynobj()
369 && (parameters->options().in_dynamic_list(this->name())
370 || parameters->options().is_export_dynamic_symbol(this->name())))
31821be0
CC
371 {
372 if (!this->is_forced_local())
373 return true;
374 gold_warning(_("Cannot export local symbol '%s'"),
375 this->demangled_name().c_str());
376 return false;
377 }
378
55a93433
ILT
379 // If the symbol was forced local in a version script, do not add it.
380 if (this->is_forced_local())
381 return false;
382
c82fbeee
CS
383 // If dynamic-list-data was specified, add any STT_OBJECT.
384 if (parameters->options().dynamic_list_data()
385 && !this->is_from_dynobj()
386 && this->type() == elfcpp::STT_OBJECT)
387 return true;
388
389 // If --dynamic-list-cpp-new was specified, add any new/delete symbol.
390 // If --dynamic-list-cpp-typeinfo was specified, add any typeinfo symbols.
391 if ((parameters->options().dynamic_list_cpp_new()
392 || parameters->options().dynamic_list_cpp_typeinfo())
393 && !this->is_from_dynobj())
394 {
395 // TODO(csilvers): We could probably figure out if we're an operator
396 // new/delete or typeinfo without the need to demangle.
2ea97941
ILT
397 char* demangled_name = cplus_demangle(this->name(),
398 DMGL_ANSI | DMGL_PARAMS);
399 if (demangled_name == NULL)
c82fbeee
CS
400 {
401 // Not a C++ symbol, so it can't satisfy these flags
402 }
403 else if (parameters->options().dynamic_list_cpp_new()
2ea97941
ILT
404 && (strprefix(demangled_name, "operator new")
405 || strprefix(demangled_name, "operator delete")))
c82fbeee 406 {
2ea97941 407 free(demangled_name);
c82fbeee
CS
408 return true;
409 }
410 else if (parameters->options().dynamic_list_cpp_typeinfo()
2ea97941
ILT
411 && (strprefix(demangled_name, "typeinfo name for")
412 || strprefix(demangled_name, "typeinfo for")))
c82fbeee 413 {
2ea97941 414 free(demangled_name);
c82fbeee
CS
415 return true;
416 }
417 else
2ea97941 418 free(demangled_name);
c82fbeee
CS
419 }
420
436ca963
ILT
421 // If exporting all symbols or building a shared library,
422 // and the symbol is defined in a regular object and is
423 // externally visible, we need to add it.
8851ecca 424 if ((parameters->options().export_dynamic() || parameters->options().shared())
436ca963 425 && !this->is_from_dynobj()
f3ae1b28 426 && !this->is_undefined()
436ca963
ILT
427 && this->is_externally_visible())
428 return true;
429
430 return false;
431}
432
b3b74ddc
ILT
433// Return true if the final value of this symbol is known at link
434// time.
435
436bool
437Symbol::final_value_is_known() const
438{
439 // If we are not generating an executable, then no final values are
440 // known, since they will change at runtime.
374ad285
ILT
441 if (parameters->options().output_is_position_independent()
442 || parameters->options().relocatable())
b3b74ddc
ILT
443 return false;
444
f3e9c5c5
ILT
445 // If the symbol is not from an object file, and is not undefined,
446 // then it is defined, and known.
b3b74ddc 447 if (this->source_ != FROM_OBJECT)
f3e9c5c5
ILT
448 {
449 if (this->source_ != IS_UNDEFINED)
450 return true;
451 }
452 else
453 {
454 // If the symbol is from a dynamic object, then the final value
455 // is not known.
456 if (this->object()->is_dynamic())
457 return false;
b3b74ddc 458
f3e9c5c5
ILT
459 // If the symbol is not undefined (it is defined or common),
460 // then the final value is known.
461 if (!this->is_undefined())
462 return true;
463 }
b3b74ddc
ILT
464
465 // If the symbol is undefined, then whether the final value is known
466 // depends on whether we are doing a static link. If we are doing a
467 // dynamic link, then the final value could be filled in at runtime.
468 // This could reasonably be the case for a weak undefined symbol.
469 return parameters->doing_static_link();
470}
471
77e65537 472// Return the output section where this symbol is defined.
a445fddf 473
77e65537
ILT
474Output_section*
475Symbol::output_section() const
a445fddf
ILT
476{
477 switch (this->source_)
478 {
479 case FROM_OBJECT:
77e65537 480 {
2ea97941
ILT
481 unsigned int shndx = this->u_.from_object.shndx;
482 if (shndx != elfcpp::SHN_UNDEF && this->is_ordinary_shndx_)
77e65537
ILT
483 {
484 gold_assert(!this->u_.from_object.object->is_dynamic());
89fc3421 485 gold_assert(this->u_.from_object.object->pluginobj() == NULL);
77e65537 486 Relobj* relobj = static_cast<Relobj*>(this->u_.from_object.object);
2ea97941 487 return relobj->output_section(shndx);
77e65537
ILT
488 }
489 return NULL;
490 }
491
a445fddf 492 case IN_OUTPUT_DATA:
77e65537
ILT
493 return this->u_.in_output_data.output_data->output_section();
494
a445fddf 495 case IN_OUTPUT_SEGMENT:
f3e9c5c5
ILT
496 case IS_CONSTANT:
497 case IS_UNDEFINED:
77e65537
ILT
498 return NULL;
499
500 default:
501 gold_unreachable();
502 }
503}
504
505// Set the symbol's output section. This is used for symbols defined
506// in scripts. This should only be called after the symbol table has
507// been finalized.
508
509void
510Symbol::set_output_section(Output_section* os)
511{
512 switch (this->source_)
513 {
514 case FROM_OBJECT:
515 case IN_OUTPUT_DATA:
516 gold_assert(this->output_section() == os);
517 break;
f3e9c5c5 518 case IS_CONSTANT:
77e65537
ILT
519 this->source_ = IN_OUTPUT_DATA;
520 this->u_.in_output_data.output_data = os;
521 this->u_.in_output_data.offset_is_from_end = false;
522 break;
523 case IN_OUTPUT_SEGMENT:
f3e9c5c5 524 case IS_UNDEFINED:
a445fddf
ILT
525 default:
526 gold_unreachable();
527 }
528}
529
14bfc3f5
ILT
530// Class Symbol_table.
531
09124467 532Symbol_table::Symbol_table(unsigned int count,
2ea97941 533 const Version_script_info& version_script)
6d013333 534 : saw_undefined_(0), offset_(0), table_(count), namepool_(),
8a5e3e08
ILT
535 forwarders_(), commons_(), tls_commons_(), small_commons_(),
536 large_commons_(), forced_locals_(), warnings_(),
2ea97941 537 version_script_(version_script), gc_(NULL), icf_(NULL)
14bfc3f5 538{
6d013333 539 namepool_.reserve(count);
14bfc3f5
ILT
540}
541
542Symbol_table::~Symbol_table()
543{
544}
545
ad8f37d1
ILT
546// The symbol table key equality function. This is called with
547// Stringpool keys.
14bfc3f5 548
ad8f37d1 549inline bool
14bfc3f5
ILT
550Symbol_table::Symbol_table_eq::operator()(const Symbol_table_key& k1,
551 const Symbol_table_key& k2) const
552{
553 return k1.first == k2.first && k1.second == k2.second;
554}
555
ef15dade 556bool
2ea97941 557Symbol_table::is_section_folded(Object* obj, unsigned int shndx) const
ef15dade 558{
032ce4e9 559 return (parameters->options().icf_enabled()
2ea97941 560 && this->icf_->is_section_folded(obj, shndx));
ef15dade
ST
561}
562
31821be0
CC
563// For symbols that have been listed with a -u or --export-dynamic-symbol
564// option, add them to the work list to avoid gc'ing them.
6d03d481
ST
565
566void
88a4108b 567Symbol_table::gc_mark_undef_symbols(Layout* layout)
6d03d481
ST
568{
569 for (options::String_set::const_iterator p =
570 parameters->options().undefined_begin();
571 p != parameters->options().undefined_end();
572 ++p)
573 {
2ea97941
ILT
574 const char* name = p->c_str();
575 Symbol* sym = this->lookup(name);
ca09d69a 576 gold_assert(sym != NULL);
6d03d481
ST
577 if (sym->source() == Symbol::FROM_OBJECT
578 && !sym->object()->is_dynamic())
579 {
580 Relobj* obj = static_cast<Relobj*>(sym->object());
581 bool is_ordinary;
2ea97941 582 unsigned int shndx = sym->shndx(&is_ordinary);
6d03d481
ST
583 if (is_ordinary)
584 {
585 gold_assert(this->gc_ != NULL);
2ea97941 586 this->gc_->worklist().push(Section_id(obj, shndx));
6d03d481
ST
587 }
588 }
589 }
88a4108b 590
31821be0
CC
591 for (options::String_set::const_iterator p =
592 parameters->options().export_dynamic_symbol_begin();
593 p != parameters->options().export_dynamic_symbol_end();
594 ++p)
595 {
596 const char* name = p->c_str();
597 Symbol* sym = this->lookup(name);
1d5dfe78
CC
598 // It's not an error if a symbol named by --export-dynamic-symbol
599 // is undefined.
600 if (sym != NULL
601 && sym->source() == Symbol::FROM_OBJECT
31821be0
CC
602 && !sym->object()->is_dynamic())
603 {
604 Relobj* obj = static_cast<Relobj*>(sym->object());
605 bool is_ordinary;
606 unsigned int shndx = sym->shndx(&is_ordinary);
607 if (is_ordinary)
608 {
609 gold_assert(this->gc_ != NULL);
610 this->gc_->worklist().push(Section_id(obj, shndx));
611 }
612 }
613 }
614
88a4108b
ILT
615 for (Script_options::referenced_const_iterator p =
616 layout->script_options()->referenced_begin();
617 p != layout->script_options()->referenced_end();
618 ++p)
619 {
620 Symbol* sym = this->lookup(p->c_str());
621 gold_assert(sym != NULL);
622 if (sym->source() == Symbol::FROM_OBJECT
623 && !sym->object()->is_dynamic())
624 {
625 Relobj* obj = static_cast<Relobj*>(sym->object());
626 bool is_ordinary;
627 unsigned int shndx = sym->shndx(&is_ordinary);
628 if (is_ordinary)
629 {
630 gold_assert(this->gc_ != NULL);
631 this->gc_->worklist().push(Section_id(obj, shndx));
632 }
633 }
634 }
6d03d481
ST
635}
636
637void
7257cc92 638Symbol_table::gc_mark_symbol(Symbol* sym)
6d03d481 639{
7257cc92
ST
640 // Add the object and section to the work list.
641 Relobj* obj = static_cast<Relobj*>(sym->object());
642 bool is_ordinary;
643 unsigned int shndx = sym->shndx(&is_ordinary);
644 if (is_ordinary && shndx != elfcpp::SHN_UNDEF)
6d03d481 645 {
7257cc92
ST
646 gold_assert(this->gc_!= NULL);
647 this->gc_->worklist().push(Section_id(obj, shndx));
6d03d481
ST
648 }
649}
650
651// When doing garbage collection, keep symbols that have been seen in
652// dynamic objects.
653inline void
654Symbol_table::gc_mark_dyn_syms(Symbol* sym)
655{
656 if (sym->in_dyn() && sym->source() == Symbol::FROM_OBJECT
657 && !sym->object()->is_dynamic())
7257cc92 658 this->gc_mark_symbol(sym);
6d03d481
ST
659}
660
dd8670e5 661// Make TO a symbol which forwards to FROM.
14bfc3f5
ILT
662
663void
664Symbol_table::make_forwarder(Symbol* from, Symbol* to)
665{
a3ad94ed
ILT
666 gold_assert(from != to);
667 gold_assert(!from->is_forwarder() && !to->is_forwarder());
14bfc3f5
ILT
668 this->forwarders_[from] = to;
669 from->set_forwarder();
670}
671
61ba1cf9
ILT
672// Resolve the forwards from FROM, returning the real symbol.
673
14bfc3f5 674Symbol*
c06b7b0b 675Symbol_table::resolve_forwards(const Symbol* from) const
14bfc3f5 676{
a3ad94ed 677 gold_assert(from->is_forwarder());
c06b7b0b 678 Unordered_map<const Symbol*, Symbol*>::const_iterator p =
14bfc3f5 679 this->forwarders_.find(from);
a3ad94ed 680 gold_assert(p != this->forwarders_.end());
14bfc3f5
ILT
681 return p->second;
682}
683
61ba1cf9
ILT
684// Look up a symbol by name.
685
686Symbol*
2ea97941 687Symbol_table::lookup(const char* name, const char* version) const
61ba1cf9 688{
f0641a0b 689 Stringpool::Key name_key;
2ea97941
ILT
690 name = this->namepool_.find(name, &name_key);
691 if (name == NULL)
61ba1cf9 692 return NULL;
f0641a0b
ILT
693
694 Stringpool::Key version_key = 0;
2ea97941 695 if (version != NULL)
61ba1cf9 696 {
2ea97941
ILT
697 version = this->namepool_.find(version, &version_key);
698 if (version == NULL)
61ba1cf9
ILT
699 return NULL;
700 }
701
f0641a0b 702 Symbol_table_key key(name_key, version_key);
61ba1cf9
ILT
703 Symbol_table::Symbol_table_type::const_iterator p = this->table_.find(key);
704 if (p == this->table_.end())
705 return NULL;
706 return p->second;
707}
708
14bfc3f5
ILT
709// Resolve a Symbol with another Symbol. This is only used in the
710// unusual case where there are references to both an unversioned
711// symbol and a symbol with a version, and we then discover that that
1564db8d
ILT
712// version is the default version. Because this is unusual, we do
713// this the slow way, by converting back to an ELF symbol.
14bfc3f5 714
1564db8d 715template<int size, bool big_endian>
14bfc3f5 716void
95d14cd3 717Symbol_table::resolve(Sized_symbol<size>* to, const Sized_symbol<size>* from)
14bfc3f5 718{
1564db8d
ILT
719 unsigned char buf[elfcpp::Elf_sizes<size>::sym_size];
720 elfcpp::Sym_write<size, big_endian> esym(buf);
d491d34e 721 // We don't bother to set the st_name or the st_shndx field.
1564db8d
ILT
722 esym.put_st_value(from->value());
723 esym.put_st_size(from->symsize());
724 esym.put_st_info(from->binding(), from->type());
ead1e424 725 esym.put_st_other(from->visibility(), from->nonvis());
d491d34e 726 bool is_ordinary;
2ea97941
ILT
727 unsigned int shndx = from->shndx(&is_ordinary);
728 this->resolve(to, esym.sym(), shndx, is_ordinary, shndx, from->object(),
95d14cd3 729 from->version());
1ebd95fd
ILT
730 if (from->in_reg())
731 to->set_in_reg();
732 if (from->in_dyn())
733 to->set_in_dyn();
6d03d481
ST
734 if (parameters->options().gc_sections())
735 this->gc_mark_dyn_syms(to);
14bfc3f5
ILT
736}
737
0602e05a
ILT
738// Record that a symbol is forced to be local by a version script or
739// by visibility.
55a93433
ILT
740
741void
742Symbol_table::force_local(Symbol* sym)
743{
744 if (!sym->is_defined() && !sym->is_common())
745 return;
746 if (sym->is_forced_local())
747 {
748 // We already got this one.
749 return;
750 }
751 sym->set_is_forced_local();
752 this->forced_locals_.push_back(sym);
753}
754
0864d551
ILT
755// Adjust NAME for wrapping, and update *NAME_KEY if necessary. This
756// is only called for undefined symbols, when at least one --wrap
757// option was used.
758
759const char*
2ea97941 760Symbol_table::wrap_symbol(const char* name, Stringpool::Key* name_key)
0864d551
ILT
761{
762 // For some targets, we need to ignore a specific character when
763 // wrapping, and add it back later.
764 char prefix = '\0';
2ea97941 765 if (name[0] == parameters->target().wrap_char())
0864d551 766 {
2ea97941
ILT
767 prefix = name[0];
768 ++name;
0864d551
ILT
769 }
770
2ea97941 771 if (parameters->options().is_wrap(name))
0864d551
ILT
772 {
773 // Turn NAME into __wrap_NAME.
774 std::string s;
775 if (prefix != '\0')
776 s += prefix;
777 s += "__wrap_";
2ea97941 778 s += name;
0864d551
ILT
779
780 // This will give us both the old and new name in NAMEPOOL_, but
781 // that is OK. Only the versions we need will wind up in the
782 // real string table in the output file.
783 return this->namepool_.add(s.c_str(), true, name_key);
784 }
785
786 const char* const real_prefix = "__real_";
787 const size_t real_prefix_length = strlen(real_prefix);
2ea97941
ILT
788 if (strncmp(name, real_prefix, real_prefix_length) == 0
789 && parameters->options().is_wrap(name + real_prefix_length))
0864d551
ILT
790 {
791 // Turn __real_NAME into NAME.
792 std::string s;
793 if (prefix != '\0')
794 s += prefix;
2ea97941 795 s += name + real_prefix_length;
0864d551
ILT
796 return this->namepool_.add(s.c_str(), true, name_key);
797 }
798
2ea97941 799 return name;
0864d551
ILT
800}
801
8c500701
ILT
802// This is called when we see a symbol NAME/VERSION, and the symbol
803// already exists in the symbol table, and VERSION is marked as being
804// the default version. SYM is the NAME/VERSION symbol we just added.
805// DEFAULT_IS_NEW is true if this is the first time we have seen the
806// symbol NAME/NULL. PDEF points to the entry for NAME/NULL.
807
808template<int size, bool big_endian>
809void
810Symbol_table::define_default_version(Sized_symbol<size>* sym,
811 bool default_is_new,
812 Symbol_table_type::iterator pdef)
813{
814 if (default_is_new)
815 {
816 // This is the first time we have seen NAME/NULL. Make
817 // NAME/NULL point to NAME/VERSION, and mark SYM as the default
818 // version.
819 pdef->second = sym;
820 sym->set_is_default();
821 }
822 else if (pdef->second == sym)
823 {
824 // NAME/NULL already points to NAME/VERSION. Don't mark the
825 // symbol as the default if it is not already the default.
826 }
827 else
828 {
829 // This is the unfortunate case where we already have entries
830 // for both NAME/VERSION and NAME/NULL. We now see a symbol
831 // NAME/VERSION where VERSION is the default version. We have
832 // already resolved this new symbol with the existing
833 // NAME/VERSION symbol.
834
835 // It's possible that NAME/NULL and NAME/VERSION are both
836 // defined in regular objects. This can only happen if one
837 // object file defines foo and another defines foo@@ver. This
838 // is somewhat obscure, but we call it a multiple definition
839 // error.
840
841 // It's possible that NAME/NULL actually has a version, in which
842 // case it won't be the same as VERSION. This happens with
843 // ver_test_7.so in the testsuite for the symbol t2_2. We see
844 // t2_2@@VER2, so we define both t2_2/VER2 and t2_2/NULL. We
845 // then see an unadorned t2_2 in an object file and give it
846 // version VER1 from the version script. This looks like a
847 // default definition for VER1, so it looks like we should merge
848 // t2_2/NULL with t2_2/VER1. That doesn't make sense, but it's
849 // not obvious that this is an error, either. So we just punt.
850
851 // If one of the symbols has non-default visibility, and the
852 // other is defined in a shared object, then they are different
853 // symbols.
854
855 // Otherwise, we just resolve the symbols as though they were
856 // the same.
857
858 if (pdef->second->version() != NULL)
859 gold_assert(pdef->second->version() != sym->version());
860 else if (sym->visibility() != elfcpp::STV_DEFAULT
861 && pdef->second->is_from_dynobj())
862 ;
863 else if (pdef->second->visibility() != elfcpp::STV_DEFAULT
864 && sym->is_from_dynobj())
865 ;
866 else
867 {
868 const Sized_symbol<size>* symdef;
869 symdef = this->get_sized_symbol<size>(pdef->second);
870 Symbol_table::resolve<size, big_endian>(sym, symdef);
871 this->make_forwarder(pdef->second, sym);
872 pdef->second = sym;
873 sym->set_is_default();
874 }
875 }
876}
877
14bfc3f5
ILT
878// Add one symbol from OBJECT to the symbol table. NAME is symbol
879// name and VERSION is the version; both are canonicalized. DEF is
d491d34e
ILT
880// whether this is the default version. ST_SHNDX is the symbol's
881// section index; IS_ORDINARY is whether this is a normal section
882// rather than a special code.
14bfc3f5 883
8781f709
ILT
884// If IS_DEFAULT_VERSION is true, then this is the definition of a
885// default version of a symbol. That means that any lookup of
886// NAME/NULL and any lookup of NAME/VERSION should always return the
887// same symbol. This is obvious for references, but in particular we
888// want to do this for definitions: overriding NAME/NULL should also
889// override NAME/VERSION. If we don't do that, it would be very hard
890// to override functions in a shared library which uses versioning.
14bfc3f5
ILT
891
892// We implement this by simply making both entries in the hash table
893// point to the same Symbol structure. That is easy enough if this is
894// the first time we see NAME/NULL or NAME/VERSION, but it is possible
895// that we have seen both already, in which case they will both have
896// independent entries in the symbol table. We can't simply change
897// the symbol table entry, because we have pointers to the entries
898// attached to the object files. So we mark the entry attached to the
899// object file as a forwarder, and record it in the forwarders_ map.
900// Note that entries in the hash table will never be marked as
901// forwarders.
70e654ba 902//
d491d34e
ILT
903// ORIG_ST_SHNDX and ST_SHNDX are almost always the same.
904// ORIG_ST_SHNDX is the section index in the input file, or SHN_UNDEF
905// for a special section code. ST_SHNDX may be modified if the symbol
906// is defined in a section being discarded.
14bfc3f5
ILT
907
908template<int size, bool big_endian>
aeddab66 909Sized_symbol<size>*
2ea97941 910Symbol_table::add_from_object(Object* object,
ca09d69a 911 const char* name,
f0641a0b 912 Stringpool::Key name_key,
ca09d69a 913 const char* version,
f0641a0b 914 Stringpool::Key version_key,
8781f709 915 bool is_default_version,
70e654ba 916 const elfcpp::Sym<size, big_endian>& sym,
d491d34e
ILT
917 unsigned int st_shndx,
918 bool is_ordinary,
919 unsigned int orig_st_shndx)
14bfc3f5 920{
c5818ff1 921 // Print a message if this symbol is being traced.
2ea97941 922 if (parameters->options().is_trace_symbol(name))
c5818ff1 923 {
d491d34e 924 if (orig_st_shndx == elfcpp::SHN_UNDEF)
2ea97941 925 gold_info(_("%s: reference to %s"), object->name().c_str(), name);
c5818ff1 926 else
2ea97941 927 gold_info(_("%s: definition of %s"), object->name().c_str(), name);
c5818ff1
CC
928 }
929
0864d551
ILT
930 // For an undefined symbol, we may need to adjust the name using
931 // --wrap.
d491d34e 932 if (orig_st_shndx == elfcpp::SHN_UNDEF
c5818ff1 933 && parameters->options().any_wrap())
0864d551 934 {
2ea97941
ILT
935 const char* wrap_name = this->wrap_symbol(name, &name_key);
936 if (wrap_name != name)
0864d551
ILT
937 {
938 // If we see a reference to malloc with version GLIBC_2.0,
939 // and we turn it into a reference to __wrap_malloc, then we
940 // discard the version number. Otherwise the user would be
941 // required to specify the correct version for
942 // __wrap_malloc.
2ea97941 943 version = NULL;
0864d551 944 version_key = 0;
2ea97941 945 name = wrap_name;
0864d551
ILT
946 }
947 }
948
14bfc3f5
ILT
949 Symbol* const snull = NULL;
950 std::pair<typename Symbol_table_type::iterator, bool> ins =
f0641a0b
ILT
951 this->table_.insert(std::make_pair(std::make_pair(name_key, version_key),
952 snull));
14bfc3f5 953
8781f709 954 std::pair<typename Symbol_table_type::iterator, bool> insdefault =
14bfc3f5 955 std::make_pair(this->table_.end(), false);
8781f709 956 if (is_default_version)
14bfc3f5 957 {
f0641a0b 958 const Stringpool::Key vnull_key = 0;
8781f709
ILT
959 insdefault = this->table_.insert(std::make_pair(std::make_pair(name_key,
960 vnull_key),
961 snull));
14bfc3f5
ILT
962 }
963
964 // ins.first: an iterator, which is a pointer to a pair.
965 // ins.first->first: the key (a pair of name and version).
966 // ins.first->second: the value (Symbol*).
967 // ins.second: true if new entry was inserted, false if not.
968
1564db8d 969 Sized_symbol<size>* ret;
ead1e424
ILT
970 bool was_undefined;
971 bool was_common;
14bfc3f5
ILT
972 if (!ins.second)
973 {
974 // We already have an entry for NAME/VERSION.
7d1a9ebb 975 ret = this->get_sized_symbol<size>(ins.first->second);
a3ad94ed 976 gold_assert(ret != NULL);
ead1e424
ILT
977
978 was_undefined = ret->is_undefined();
979 was_common = ret->is_common();
980
2ea97941
ILT
981 this->resolve(ret, sym, st_shndx, is_ordinary, orig_st_shndx, object,
982 version);
6d03d481
ST
983 if (parameters->options().gc_sections())
984 this->gc_mark_dyn_syms(ret);
14bfc3f5 985
8781f709
ILT
986 if (is_default_version)
987 this->define_default_version<size, big_endian>(ret, insdefault.second,
988 insdefault.first);
14bfc3f5
ILT
989 }
990 else
991 {
992 // This is the first time we have seen NAME/VERSION.
a3ad94ed 993 gold_assert(ins.first->second == NULL);
ead1e424 994
8781f709 995 if (is_default_version && !insdefault.second)
14bfc3f5 996 {
14b31740
ILT
997 // We already have an entry for NAME/NULL. If we override
998 // it, then change it to NAME/VERSION.
8781f709 999 ret = this->get_sized_symbol<size>(insdefault.first->second);
18e6b24e
ILT
1000
1001 was_undefined = ret->is_undefined();
1002 was_common = ret->is_common();
1003
2ea97941
ILT
1004 this->resolve(ret, sym, st_shndx, is_ordinary, orig_st_shndx, object,
1005 version);
6d03d481
ST
1006 if (parameters->options().gc_sections())
1007 this->gc_mark_dyn_syms(ret);
14bfc3f5
ILT
1008 ins.first->second = ret;
1009 }
1010 else
1011 {
18e6b24e
ILT
1012 was_undefined = false;
1013 was_common = false;
1014
f6ce93d6 1015 Sized_target<size, big_endian>* target =
029ba973 1016 parameters->sized_target<size, big_endian>();
1564db8d
ILT
1017 if (!target->has_make_symbol())
1018 ret = new Sized_symbol<size>();
1019 else
14bfc3f5 1020 {
1564db8d
ILT
1021 ret = target->make_symbol();
1022 if (ret == NULL)
14bfc3f5
ILT
1023 {
1024 // This means that we don't want a symbol table
1025 // entry after all.
8781f709 1026 if (!is_default_version)
14bfc3f5
ILT
1027 this->table_.erase(ins.first);
1028 else
1029 {
8781f709
ILT
1030 this->table_.erase(insdefault.first);
1031 // Inserting INSDEFAULT invalidated INS.
f0641a0b
ILT
1032 this->table_.erase(std::make_pair(name_key,
1033 version_key));
14bfc3f5
ILT
1034 }
1035 return NULL;
1036 }
1037 }
14bfc3f5 1038
2ea97941 1039 ret->init_object(name, version, object, sym, st_shndx, is_ordinary);
1564db8d 1040
14bfc3f5 1041 ins.first->second = ret;
8781f709 1042 if (is_default_version)
14bfc3f5
ILT
1043 {
1044 // This is the first time we have seen NAME/NULL. Point
1045 // it at the new entry for NAME/VERSION.
8781f709
ILT
1046 gold_assert(insdefault.second);
1047 insdefault.first->second = ret;
14bfc3f5
ILT
1048 }
1049 }
8c500701 1050
8781f709 1051 if (is_default_version)
8c500701 1052 ret->set_is_default();
14bfc3f5
ILT
1053 }
1054
ead1e424
ILT
1055 // Record every time we see a new undefined symbol, to speed up
1056 // archive groups.
1057 if (!was_undefined && ret->is_undefined())
0f3b89d8
ILT
1058 {
1059 ++this->saw_undefined_;
1060 if (parameters->options().has_plugins())
1061 parameters->options().plugins()->new_undefined_symbol(ret);
1062 }
ead1e424
ILT
1063
1064 // Keep track of common symbols, to speed up common symbol
1065 // allocation.
1066 if (!was_common && ret->is_common())
155a0dd7 1067 {
8a5e3e08 1068 if (ret->type() == elfcpp::STT_TLS)
155a0dd7 1069 this->tls_commons_.push_back(ret);
8a5e3e08
ILT
1070 else if (!is_ordinary
1071 && st_shndx == parameters->target().small_common_shndx())
1072 this->small_commons_.push_back(ret);
1073 else if (!is_ordinary
1074 && st_shndx == parameters->target().large_common_shndx())
1075 this->large_commons_.push_back(ret);
1076 else
1077 this->commons_.push_back(ret);
155a0dd7 1078 }
ead1e424 1079
0602e05a
ILT
1080 // If we're not doing a relocatable link, then any symbol with
1081 // hidden or internal visibility is local.
1082 if ((ret->visibility() == elfcpp::STV_HIDDEN
1083 || ret->visibility() == elfcpp::STV_INTERNAL)
1084 && (ret->binding() == elfcpp::STB_GLOBAL
adcf2816 1085 || ret->binding() == elfcpp::STB_GNU_UNIQUE
0602e05a
ILT
1086 || ret->binding() == elfcpp::STB_WEAK)
1087 && !parameters->options().relocatable())
1088 this->force_local(ret);
1089
14bfc3f5
ILT
1090 return ret;
1091}
1092
f6ce93d6 1093// Add all the symbols in a relocatable object to the hash table.
14bfc3f5
ILT
1094
1095template<int size, bool big_endian>
1096void
dbe717ef 1097Symbol_table::add_from_relobj(
6fa2a40b 1098 Sized_relobj_file<size, big_endian>* relobj,
f6ce93d6 1099 const unsigned char* syms,
14bfc3f5 1100 size_t count,
d491d34e 1101 size_t symndx_offset,
14bfc3f5
ILT
1102 const char* sym_names,
1103 size_t sym_name_size,
6fa2a40b 1104 typename Sized_relobj_file<size, big_endian>::Symbols* sympointers,
ca09d69a 1105 size_t* defined)
14bfc3f5 1106{
92de84a6
ILT
1107 *defined = 0;
1108
8851ecca 1109 gold_assert(size == parameters->target().get_size());
14bfc3f5 1110
a783673b
ILT
1111 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
1112
88dd47ac
ILT
1113 const bool just_symbols = relobj->just_symbols();
1114
f6ce93d6 1115 const unsigned char* p = syms;
a783673b 1116 for (size_t i = 0; i < count; ++i, p += sym_size)
14bfc3f5 1117 {
92de84a6
ILT
1118 (*sympointers)[i] = NULL;
1119
14bfc3f5
ILT
1120 elfcpp::Sym<size, big_endian> sym(p);
1121
d491d34e 1122 unsigned int st_name = sym.get_st_name();
14bfc3f5
ILT
1123 if (st_name >= sym_name_size)
1124 {
75f2446e
ILT
1125 relobj->error(_("bad global symbol name offset %u at %zu"),
1126 st_name, i);
1127 continue;
14bfc3f5
ILT
1128 }
1129
2ea97941 1130 const char* name = sym_names + st_name;
dbe717ef 1131
d491d34e
ILT
1132 bool is_ordinary;
1133 unsigned int st_shndx = relobj->adjust_sym_shndx(i + symndx_offset,
1134 sym.get_st_shndx(),
1135 &is_ordinary);
1136 unsigned int orig_st_shndx = st_shndx;
1137 if (!is_ordinary)
1138 orig_st_shndx = elfcpp::SHN_UNDEF;
1139
92de84a6
ILT
1140 if (st_shndx != elfcpp::SHN_UNDEF)
1141 ++*defined;
1142
a783673b
ILT
1143 // A symbol defined in a section which we are not including must
1144 // be treated as an undefined symbol.
880cd20d 1145 bool is_defined_in_discarded_section = false;
a783673b 1146 if (st_shndx != elfcpp::SHN_UNDEF
d491d34e 1147 && is_ordinary
ce97fa81
ST
1148 && !relobj->is_section_included(st_shndx)
1149 && !this->is_section_folded(relobj, st_shndx))
880cd20d
ILT
1150 {
1151 st_shndx = elfcpp::SHN_UNDEF;
1152 is_defined_in_discarded_section = true;
1153 }
a783673b 1154
14bfc3f5
ILT
1155 // In an object file, an '@' in the name separates the symbol
1156 // name from the version name. If there are two '@' characters,
1157 // this is the default version.
2ea97941 1158 const char* ver = strchr(name, '@');
057ead22 1159 Stringpool::Key ver_key = 0;
09124467 1160 int namelen = 0;
8781f709
ILT
1161 // IS_DEFAULT_VERSION: is the version default?
1162 // IS_FORCED_LOCAL: is the symbol forced local?
1163 bool is_default_version = false;
1164 bool is_forced_local = false;
09124467 1165
a7dac153
CC
1166 // FIXME: For incremental links, we don't store version information,
1167 // so we need to ignore version symbols for now.
1168 if (parameters->incremental_update() && ver != NULL)
1169 {
1170 namelen = ver - name;
1171 ver = NULL;
1172 }
1173
09124467
ILT
1174 if (ver != NULL)
1175 {
1176 // The symbol name is of the form foo@VERSION or foo@@VERSION
2ea97941 1177 namelen = ver - name;
09124467
ILT
1178 ++ver;
1179 if (*ver == '@')
1180 {
8781f709 1181 is_default_version = true;
09124467
ILT
1182 ++ver;
1183 }
057ead22 1184 ver = this->namepool_.add(ver, true, &ver_key);
09124467 1185 }
5871526f
ILT
1186 // We don't want to assign a version to an undefined symbol,
1187 // even if it is listed in the version script. FIXME: What
1188 // about a common symbol?
057ead22
ILT
1189 else
1190 {
2ea97941 1191 namelen = strlen(name);
057ead22
ILT
1192 if (!this->version_script_.empty()
1193 && st_shndx != elfcpp::SHN_UNDEF)
1194 {
1195 // The symbol name did not have a version, but the
1196 // version script may assign a version anyway.
2ea97941 1197 std::string version;
98e090bd
ILT
1198 bool is_global;
1199 if (this->version_script_.get_symbol_version(name, &version,
1200 &is_global))
057ead22 1201 {
98e090bd
ILT
1202 if (!is_global)
1203 is_forced_local = true;
1204 else if (!version.empty())
057ead22 1205 {
2ea97941
ILT
1206 ver = this->namepool_.add_with_length(version.c_str(),
1207 version.length(),
057ead22
ILT
1208 true,
1209 &ver_key);
8781f709 1210 is_default_version = true;
057ead22
ILT
1211 }
1212 }
057ead22
ILT
1213 }
1214 }
14bfc3f5 1215
d491d34e
ILT
1216 elfcpp::Sym<size, big_endian>* psym = &sym;
1217 unsigned char symbuf[sym_size];
1218 elfcpp::Sym<size, big_endian> sym2(symbuf);
88dd47ac
ILT
1219 if (just_symbols)
1220 {
d491d34e 1221 memcpy(symbuf, p, sym_size);
88dd47ac 1222 elfcpp::Sym_write<size, big_endian> sw(symbuf);
9590bf25
CC
1223 if (orig_st_shndx != elfcpp::SHN_UNDEF
1224 && is_ordinary
1225 && relobj->e_type() == elfcpp::ET_REL)
88dd47ac 1226 {
9590bf25
CC
1227 // Symbol values in relocatable object files are section
1228 // relative. This is normally what we want, but since here
1229 // we are converting the symbol to absolute we need to add
1230 // the section address. The section address in an object
88dd47ac
ILT
1231 // file is normally zero, but people can use a linker
1232 // script to change it.
d491d34e
ILT
1233 sw.put_st_value(sym.get_st_value()
1234 + relobj->section_address(orig_st_shndx));
88dd47ac 1235 }
d491d34e
ILT
1236 st_shndx = elfcpp::SHN_ABS;
1237 is_ordinary = false;
88dd47ac
ILT
1238 psym = &sym2;
1239 }
1240
65514900 1241 // Fix up visibility if object has no-export set.
1c74fab0
ILT
1242 if (relobj->no_export()
1243 && (orig_st_shndx != elfcpp::SHN_UNDEF || !is_ordinary))
65514900
CC
1244 {
1245 // We may have copied symbol already above.
1246 if (psym != &sym2)
1247 {
1248 memcpy(symbuf, p, sym_size);
1249 psym = &sym2;
1250 }
1251
1252 elfcpp::STV visibility = sym2.get_st_visibility();
1253 if (visibility == elfcpp::STV_DEFAULT
1254 || visibility == elfcpp::STV_PROTECTED)
1255 {
1256 elfcpp::Sym_write<size, big_endian> sw(symbuf);
1257 unsigned char nonvis = sym2.get_st_nonvis();
1258 sw.put_st_other(elfcpp::STV_HIDDEN, nonvis);
1259 }
1260 }
1261
057ead22 1262 Stringpool::Key name_key;
2ea97941 1263 name = this->namepool_.add_with_length(name, namelen, true,
057ead22
ILT
1264 &name_key);
1265
aeddab66 1266 Sized_symbol<size>* res;
2ea97941 1267 res = this->add_from_object(relobj, name, name_key, ver, ver_key,
8781f709
ILT
1268 is_default_version, *psym, st_shndx,
1269 is_ordinary, orig_st_shndx);
6d03d481 1270
804eb480
ST
1271 if (is_forced_local)
1272 this->force_local(res);
1273
7257cc92
ST
1274 // Do not treat this symbol as garbage if this symbol will be
1275 // exported to the dynamic symbol table. This is true when
1276 // building a shared library or using --export-dynamic and
1277 // the symbol is externally visible.
1278 if (parameters->options().gc_sections()
1279 && res->is_externally_visible()
1280 && !res->is_from_dynobj()
1281 && (parameters->options().shared()
1282 || parameters->options().export_dynamic()))
1283 this->gc_mark_symbol(res);
f0641a0b 1284
880cd20d
ILT
1285 if (is_defined_in_discarded_section)
1286 res->set_is_defined_in_discarded_section();
1287
730cdc88 1288 (*sympointers)[i] = res;
14bfc3f5
ILT
1289 }
1290}
1291
89fc3421
CC
1292// Add a symbol from a plugin-claimed file.
1293
1294template<int size, bool big_endian>
1295Symbol*
1296Symbol_table::add_from_pluginobj(
1297 Sized_pluginobj<size, big_endian>* obj,
2ea97941 1298 const char* name,
89fc3421
CC
1299 const char* ver,
1300 elfcpp::Sym<size, big_endian>* sym)
1301{
1302 unsigned int st_shndx = sym->get_st_shndx();
24998053 1303 bool is_ordinary = st_shndx < elfcpp::SHN_LORESERVE;
89fc3421
CC
1304
1305 Stringpool::Key ver_key = 0;
8781f709
ILT
1306 bool is_default_version = false;
1307 bool is_forced_local = false;
89fc3421
CC
1308
1309 if (ver != NULL)
1310 {
1311 ver = this->namepool_.add(ver, true, &ver_key);
1312 }
1313 // We don't want to assign a version to an undefined symbol,
1314 // even if it is listed in the version script. FIXME: What
1315 // about a common symbol?
1316 else
1317 {
1318 if (!this->version_script_.empty()
1319 && st_shndx != elfcpp::SHN_UNDEF)
1320 {
1321 // The symbol name did not have a version, but the
1322 // version script may assign a version anyway.
2ea97941 1323 std::string version;
98e090bd
ILT
1324 bool is_global;
1325 if (this->version_script_.get_symbol_version(name, &version,
1326 &is_global))
89fc3421 1327 {
98e090bd
ILT
1328 if (!is_global)
1329 is_forced_local = true;
1330 else if (!version.empty())
89fc3421 1331 {
2ea97941
ILT
1332 ver = this->namepool_.add_with_length(version.c_str(),
1333 version.length(),
89fc3421
CC
1334 true,
1335 &ver_key);
8781f709 1336 is_default_version = true;
89fc3421
CC
1337 }
1338 }
89fc3421
CC
1339 }
1340 }
1341
1342 Stringpool::Key name_key;
2ea97941 1343 name = this->namepool_.add(name, true, &name_key);
89fc3421
CC
1344
1345 Sized_symbol<size>* res;
2ea97941 1346 res = this->add_from_object(obj, name, name_key, ver, ver_key,
8781f709
ILT
1347 is_default_version, *sym, st_shndx,
1348 is_ordinary, st_shndx);
89fc3421 1349
8781f709 1350 if (is_forced_local)
0602e05a 1351 this->force_local(res);
89fc3421
CC
1352
1353 return res;
1354}
1355
dbe717ef
ILT
1356// Add all the symbols in a dynamic object to the hash table.
1357
1358template<int size, bool big_endian>
1359void
1360Symbol_table::add_from_dynobj(
1361 Sized_dynobj<size, big_endian>* dynobj,
1362 const unsigned char* syms,
1363 size_t count,
1364 const char* sym_names,
1365 size_t sym_name_size,
1366 const unsigned char* versym,
1367 size_t versym_size,
92de84a6 1368 const std::vector<const char*>* version_map,
6fa2a40b 1369 typename Sized_relobj_file<size, big_endian>::Symbols* sympointers,
92de84a6 1370 size_t* defined)
dbe717ef 1371{
92de84a6
ILT
1372 *defined = 0;
1373
8851ecca 1374 gold_assert(size == parameters->target().get_size());
dbe717ef 1375
88dd47ac
ILT
1376 if (dynobj->just_symbols())
1377 {
1378 gold_error(_("--just-symbols does not make sense with a shared object"));
1379 return;
1380 }
1381
a7dac153
CC
1382 // FIXME: For incremental links, we don't store version information,
1383 // so we need to ignore version symbols for now.
1384 if (parameters->incremental_update())
1385 versym = NULL;
1386
dbe717ef
ILT
1387 if (versym != NULL && versym_size / 2 < count)
1388 {
75f2446e
ILT
1389 dynobj->error(_("too few symbol versions"));
1390 return;
dbe717ef
ILT
1391 }
1392
1393 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
1394
aeddab66
ILT
1395 // We keep a list of all STT_OBJECT symbols, so that we can resolve
1396 // weak aliases. This is necessary because if the dynamic object
1397 // provides the same variable under two names, one of which is a
1398 // weak definition, and the regular object refers to the weak
1399 // definition, we have to put both the weak definition and the
1400 // strong definition into the dynamic symbol table. Given a weak
1401 // definition, the only way that we can find the corresponding
1402 // strong definition, if any, is to search the symbol table.
1403 std::vector<Sized_symbol<size>*> object_symbols;
1404
dbe717ef
ILT
1405 const unsigned char* p = syms;
1406 const unsigned char* vs = versym;
1407 for (size_t i = 0; i < count; ++i, p += sym_size, vs += 2)
1408 {
1409 elfcpp::Sym<size, big_endian> sym(p);
1410
92de84a6
ILT
1411 if (sympointers != NULL)
1412 (*sympointers)[i] = NULL;
1413
65778909
ILT
1414 // Ignore symbols with local binding or that have
1415 // internal or hidden visibility.
1416 if (sym.get_st_bind() == elfcpp::STB_LOCAL
1417 || sym.get_st_visibility() == elfcpp::STV_INTERNAL
1418 || sym.get_st_visibility() == elfcpp::STV_HIDDEN)
dbe717ef
ILT
1419 continue;
1420
8bdcdf2c
ILT
1421 // A protected symbol in a shared library must be treated as a
1422 // normal symbol when viewed from outside the shared library.
1423 // Implement this by overriding the visibility here.
1424 elfcpp::Sym<size, big_endian>* psym = &sym;
1425 unsigned char symbuf[sym_size];
1426 elfcpp::Sym<size, big_endian> sym2(symbuf);
1427 if (sym.get_st_visibility() == elfcpp::STV_PROTECTED)
1428 {
1429 memcpy(symbuf, p, sym_size);
1430 elfcpp::Sym_write<size, big_endian> sw(symbuf);
1431 sw.put_st_other(elfcpp::STV_DEFAULT, sym.get_st_nonvis());
1432 psym = &sym2;
1433 }
1434
1435 unsigned int st_name = psym->get_st_name();
dbe717ef
ILT
1436 if (st_name >= sym_name_size)
1437 {
75f2446e
ILT
1438 dynobj->error(_("bad symbol name offset %u at %zu"),
1439 st_name, i);
1440 continue;
dbe717ef
ILT
1441 }
1442
2ea97941 1443 const char* name = sym_names + st_name;
dbe717ef 1444
d491d34e 1445 bool is_ordinary;
8bdcdf2c 1446 unsigned int st_shndx = dynobj->adjust_sym_shndx(i, psym->get_st_shndx(),
d491d34e
ILT
1447 &is_ordinary);
1448
92de84a6
ILT
1449 if (st_shndx != elfcpp::SHN_UNDEF)
1450 ++*defined;
1451
aeddab66
ILT
1452 Sized_symbol<size>* res;
1453
dbe717ef
ILT
1454 if (versym == NULL)
1455 {
1456 Stringpool::Key name_key;
2ea97941
ILT
1457 name = this->namepool_.add(name, true, &name_key);
1458 res = this->add_from_object(dynobj, name, name_key, NULL, 0,
8bdcdf2c 1459 false, *psym, st_shndx, is_ordinary,
d491d34e 1460 st_shndx);
dbe717ef 1461 }
aeddab66
ILT
1462 else
1463 {
1464 // Read the version information.
dbe717ef 1465
aeddab66 1466 unsigned int v = elfcpp::Swap<16, big_endian>::readval(vs);
dbe717ef 1467
aeddab66
ILT
1468 bool hidden = (v & elfcpp::VERSYM_HIDDEN) != 0;
1469 v &= elfcpp::VERSYM_VERSION;
dbe717ef 1470
aeddab66
ILT
1471 // The Sun documentation says that V can be VER_NDX_LOCAL,
1472 // or VER_NDX_GLOBAL, or a version index. The meaning of
1473 // VER_NDX_LOCAL is defined as "Symbol has local scope."
1474 // The old GNU linker will happily generate VER_NDX_LOCAL
1475 // for an undefined symbol. I don't know what the Sun
1476 // linker will generate.
dbe717ef 1477
aeddab66 1478 if (v == static_cast<unsigned int>(elfcpp::VER_NDX_LOCAL)
d491d34e 1479 && st_shndx != elfcpp::SHN_UNDEF)
aeddab66
ILT
1480 {
1481 // This symbol should not be visible outside the object.
1482 continue;
1483 }
64707334 1484
aeddab66
ILT
1485 // At this point we are definitely going to add this symbol.
1486 Stringpool::Key name_key;
2ea97941 1487 name = this->namepool_.add(name, true, &name_key);
dbe717ef 1488
aeddab66
ILT
1489 if (v == static_cast<unsigned int>(elfcpp::VER_NDX_LOCAL)
1490 || v == static_cast<unsigned int>(elfcpp::VER_NDX_GLOBAL))
1491 {
1492 // This symbol does not have a version.
2ea97941 1493 res = this->add_from_object(dynobj, name, name_key, NULL, 0,
8bdcdf2c 1494 false, *psym, st_shndx, is_ordinary,
d491d34e 1495 st_shndx);
aeddab66
ILT
1496 }
1497 else
1498 {
1499 if (v >= version_map->size())
1500 {
1501 dynobj->error(_("versym for symbol %zu out of range: %u"),
1502 i, v);
1503 continue;
1504 }
dbe717ef 1505
2ea97941
ILT
1506 const char* version = (*version_map)[v];
1507 if (version == NULL)
aeddab66
ILT
1508 {
1509 dynobj->error(_("versym for symbol %zu has no name: %u"),
1510 i, v);
1511 continue;
1512 }
dbe717ef 1513
aeddab66 1514 Stringpool::Key version_key;
2ea97941 1515 version = this->namepool_.add(version, true, &version_key);
aeddab66
ILT
1516
1517 // If this is an absolute symbol, and the version name
1518 // and symbol name are the same, then this is the
1519 // version definition symbol. These symbols exist to
1520 // support using -u to pull in particular versions. We
1521 // do not want to record a version for them.
d491d34e
ILT
1522 if (st_shndx == elfcpp::SHN_ABS
1523 && !is_ordinary
aeddab66 1524 && name_key == version_key)
2ea97941 1525 res = this->add_from_object(dynobj, name, name_key, NULL, 0,
8bdcdf2c 1526 false, *psym, st_shndx, is_ordinary,
d491d34e 1527 st_shndx);
aeddab66
ILT
1528 else
1529 {
8781f709
ILT
1530 const bool is_default_version =
1531 !hidden && st_shndx != elfcpp::SHN_UNDEF;
2ea97941 1532 res = this->add_from_object(dynobj, name, name_key, version,
8781f709
ILT
1533 version_key, is_default_version,
1534 *psym, st_shndx,
d491d34e 1535 is_ordinary, st_shndx);
aeddab66
ILT
1536 }
1537 }
dbe717ef
ILT
1538 }
1539
99a37bfd 1540 // Note that it is possible that RES was overridden by an
a4bb589a 1541 // earlier object, in which case it can't be aliased here.
d491d34e
ILT
1542 if (st_shndx != elfcpp::SHN_UNDEF
1543 && is_ordinary
8bdcdf2c 1544 && psym->get_st_type() == elfcpp::STT_OBJECT
99a37bfd
ILT
1545 && res->source() == Symbol::FROM_OBJECT
1546 && res->object() == dynobj)
aeddab66 1547 object_symbols.push_back(res);
92de84a6
ILT
1548
1549 if (sympointers != NULL)
1550 (*sympointers)[i] = res;
aeddab66
ILT
1551 }
1552
1553 this->record_weak_aliases(&object_symbols);
1554}
1555
cdc29364
CC
1556// Add a symbol from a incremental object file.
1557
1558template<int size, bool big_endian>
26d3c67d 1559Sized_symbol<size>*
cdc29364
CC
1560Symbol_table::add_from_incrobj(
1561 Object* obj,
1562 const char* name,
1563 const char* ver,
1564 elfcpp::Sym<size, big_endian>* sym)
1565{
1566 unsigned int st_shndx = sym->get_st_shndx();
1567 bool is_ordinary = st_shndx < elfcpp::SHN_LORESERVE;
1568
1569 Stringpool::Key ver_key = 0;
1570 bool is_default_version = false;
1571 bool is_forced_local = false;
1572
1573 Stringpool::Key name_key;
1574 name = this->namepool_.add(name, true, &name_key);
1575
1576 Sized_symbol<size>* res;
1577 res = this->add_from_object(obj, name, name_key, ver, ver_key,
1578 is_default_version, *sym, st_shndx,
1579 is_ordinary, st_shndx);
1580
1581 if (is_forced_local)
1582 this->force_local(res);
1583
1584 return res;
1585}
1586
aeddab66
ILT
1587// This is used to sort weak aliases. We sort them first by section
1588// index, then by offset, then by weak ahead of strong.
1589
1590template<int size>
1591class Weak_alias_sorter
1592{
1593 public:
1594 bool operator()(const Sized_symbol<size>*, const Sized_symbol<size>*) const;
1595};
1596
1597template<int size>
1598bool
1599Weak_alias_sorter<size>::operator()(const Sized_symbol<size>* s1,
1600 const Sized_symbol<size>* s2) const
1601{
d491d34e
ILT
1602 bool is_ordinary;
1603 unsigned int s1_shndx = s1->shndx(&is_ordinary);
1604 gold_assert(is_ordinary);
1605 unsigned int s2_shndx = s2->shndx(&is_ordinary);
1606 gold_assert(is_ordinary);
1607 if (s1_shndx != s2_shndx)
1608 return s1_shndx < s2_shndx;
1609
aeddab66
ILT
1610 if (s1->value() != s2->value())
1611 return s1->value() < s2->value();
1612 if (s1->binding() != s2->binding())
1613 {
1614 if (s1->binding() == elfcpp::STB_WEAK)
1615 return true;
1616 if (s2->binding() == elfcpp::STB_WEAK)
1617 return false;
1618 }
1619 return std::string(s1->name()) < std::string(s2->name());
1620}
dbe717ef 1621
aeddab66
ILT
1622// SYMBOLS is a list of object symbols from a dynamic object. Look
1623// for any weak aliases, and record them so that if we add the weak
1624// alias to the dynamic symbol table, we also add the corresponding
1625// strong symbol.
dbe717ef 1626
aeddab66
ILT
1627template<int size>
1628void
1629Symbol_table::record_weak_aliases(std::vector<Sized_symbol<size>*>* symbols)
1630{
1631 // Sort the vector by section index, then by offset, then by weak
1632 // ahead of strong.
1633 std::sort(symbols->begin(), symbols->end(), Weak_alias_sorter<size>());
1634
1635 // Walk through the vector. For each weak definition, record
1636 // aliases.
1637 for (typename std::vector<Sized_symbol<size>*>::const_iterator p =
1638 symbols->begin();
1639 p != symbols->end();
1640 ++p)
1641 {
1642 if ((*p)->binding() != elfcpp::STB_WEAK)
1643 continue;
1644
1645 // Build a circular list of weak aliases. Each symbol points to
1646 // the next one in the circular list.
1647
1648 Sized_symbol<size>* from_sym = *p;
1649 typename std::vector<Sized_symbol<size>*>::const_iterator q;
1650 for (q = p + 1; q != symbols->end(); ++q)
dbe717ef 1651 {
d491d34e
ILT
1652 bool dummy;
1653 if ((*q)->shndx(&dummy) != from_sym->shndx(&dummy)
aeddab66
ILT
1654 || (*q)->value() != from_sym->value())
1655 break;
1656
1657 this->weak_aliases_[from_sym] = *q;
1658 from_sym->set_has_alias();
1659 from_sym = *q;
dbe717ef
ILT
1660 }
1661
aeddab66
ILT
1662 if (from_sym != *p)
1663 {
1664 this->weak_aliases_[from_sym] = *p;
1665 from_sym->set_has_alias();
1666 }
dbe717ef 1667
aeddab66 1668 p = q - 1;
dbe717ef
ILT
1669 }
1670}
1671
ead1e424
ILT
1672// Create and return a specially defined symbol. If ONLY_IF_REF is
1673// true, then only create the symbol if there is a reference to it.
86f2e683 1674// If this does not return NULL, it sets *POLDSYM to the existing
8c500701
ILT
1675// symbol if there is one. This sets *RESOLVE_OLDSYM if we should
1676// resolve the newly created symbol to the old one. This
1677// canonicalizes *PNAME and *PVERSION.
ead1e424
ILT
1678
1679template<int size, bool big_endian>
1680Sized_symbol<size>*
9b07f471
ILT
1681Symbol_table::define_special_symbol(const char** pname, const char** pversion,
1682 bool only_if_ref,
8c500701 1683 Sized_symbol<size>** poldsym,
ca09d69a 1684 bool* resolve_oldsym)
ead1e424 1685{
8c500701 1686 *resolve_oldsym = false;
8cc69fb6 1687 *poldsym = NULL;
ead1e424 1688
55a93433
ILT
1689 // If the caller didn't give us a version, see if we get one from
1690 // the version script.
057ead22 1691 std::string v;
8c500701 1692 bool is_default_version = false;
55a93433
ILT
1693 if (*pversion == NULL)
1694 {
98e090bd
ILT
1695 bool is_global;
1696 if (this->version_script_.get_symbol_version(*pname, &v, &is_global))
057ead22 1697 {
98e090bd
ILT
1698 if (is_global && !v.empty())
1699 {
1700 *pversion = v.c_str();
1701 // If we get the version from a version script, then we
1702 // are also the default version.
1703 is_default_version = true;
1704 }
057ead22 1705 }
55a93433
ILT
1706 }
1707
8c500701
ILT
1708 Symbol* oldsym;
1709 Sized_symbol<size>* sym;
1710
1711 bool add_to_table = false;
1712 typename Symbol_table_type::iterator add_loc = this->table_.end();
1713 bool add_def_to_table = false;
1714 typename Symbol_table_type::iterator add_def_loc = this->table_.end();
1715
ead1e424
ILT
1716 if (only_if_ref)
1717 {
306d9ef0 1718 oldsym = this->lookup(*pname, *pversion);
8c500701
ILT
1719 if (oldsym == NULL && is_default_version)
1720 oldsym = this->lookup(*pname, NULL);
f6ce93d6 1721 if (oldsym == NULL || !oldsym->is_undefined())
ead1e424 1722 return NULL;
306d9ef0
ILT
1723
1724 *pname = oldsym->name();
eebd87a5
ILT
1725 if (is_default_version)
1726 *pversion = this->namepool_.add(*pversion, true, NULL);
1727 else
8c500701 1728 *pversion = oldsym->version();
ead1e424
ILT
1729 }
1730 else
1731 {
14b31740 1732 // Canonicalize NAME and VERSION.
f0641a0b 1733 Stringpool::Key name_key;
cfd73a4e 1734 *pname = this->namepool_.add(*pname, true, &name_key);
ead1e424 1735
14b31740 1736 Stringpool::Key version_key = 0;
306d9ef0 1737 if (*pversion != NULL)
cfd73a4e 1738 *pversion = this->namepool_.add(*pversion, true, &version_key);
14b31740 1739
ead1e424 1740 Symbol* const snull = NULL;
ead1e424 1741 std::pair<typename Symbol_table_type::iterator, bool> ins =
14b31740
ILT
1742 this->table_.insert(std::make_pair(std::make_pair(name_key,
1743 version_key),
ead1e424
ILT
1744 snull));
1745
8781f709 1746 std::pair<typename Symbol_table_type::iterator, bool> insdefault =
8c500701
ILT
1747 std::make_pair(this->table_.end(), false);
1748 if (is_default_version)
1749 {
1750 const Stringpool::Key vnull = 0;
8781f709
ILT
1751 insdefault =
1752 this->table_.insert(std::make_pair(std::make_pair(name_key,
1753 vnull),
1754 snull));
8c500701
ILT
1755 }
1756
ead1e424
ILT
1757 if (!ins.second)
1758 {
14b31740 1759 // We already have a symbol table entry for NAME/VERSION.
ead1e424 1760 oldsym = ins.first->second;
a3ad94ed 1761 gold_assert(oldsym != NULL);
8c500701
ILT
1762
1763 if (is_default_version)
1764 {
1765 Sized_symbol<size>* soldsym =
1766 this->get_sized_symbol<size>(oldsym);
1767 this->define_default_version<size, big_endian>(soldsym,
8781f709
ILT
1768 insdefault.second,
1769 insdefault.first);
8c500701 1770 }
ead1e424
ILT
1771 }
1772 else
1773 {
1774 // We haven't seen this symbol before.
a3ad94ed 1775 gold_assert(ins.first->second == NULL);
8c500701
ILT
1776
1777 add_to_table = true;
1778 add_loc = ins.first;
1779
8781f709 1780 if (is_default_version && !insdefault.second)
8c500701
ILT
1781 {
1782 // We are adding NAME/VERSION, and it is the default
1783 // version. We already have an entry for NAME/NULL.
8781f709 1784 oldsym = insdefault.first->second;
8c500701
ILT
1785 *resolve_oldsym = true;
1786 }
1787 else
1788 {
1789 oldsym = NULL;
1790
1791 if (is_default_version)
1792 {
1793 add_def_to_table = true;
8781f709 1794 add_def_loc = insdefault.first;
8c500701
ILT
1795 }
1796 }
ead1e424
ILT
1797 }
1798 }
1799
8851ecca
ILT
1800 const Target& target = parameters->target();
1801 if (!target.has_make_symbol())
86f2e683
ILT
1802 sym = new Sized_symbol<size>();
1803 else
ead1e424 1804 {
029ba973
ILT
1805 Sized_target<size, big_endian>* sized_target =
1806 parameters->sized_target<size, big_endian>();
86f2e683
ILT
1807 sym = sized_target->make_symbol();
1808 if (sym == NULL)
1809 return NULL;
1810 }
ead1e424 1811
86f2e683
ILT
1812 if (add_to_table)
1813 add_loc->second = sym;
1814 else
1815 gold_assert(oldsym != NULL);
ead1e424 1816
8c500701
ILT
1817 if (add_def_to_table)
1818 add_def_loc->second = sym;
1819
7d1a9ebb 1820 *poldsym = this->get_sized_symbol<size>(oldsym);
ead1e424
ILT
1821
1822 return sym;
1823}
1824
1825// Define a symbol based on an Output_data.
1826
14b31740 1827Symbol*
2ea97941
ILT
1828Symbol_table::define_in_output_data(const char* name,
1829 const char* version,
99fff23b 1830 Defined defined,
9b07f471 1831 Output_data* od,
2ea97941
ILT
1832 uint64_t value,
1833 uint64_t symsize,
9b07f471
ILT
1834 elfcpp::STT type,
1835 elfcpp::STB binding,
ead1e424
ILT
1836 elfcpp::STV visibility,
1837 unsigned char nonvis,
2ea97941 1838 bool offset_is_from_end,
ead1e424
ILT
1839 bool only_if_ref)
1840{
8851ecca 1841 if (parameters->target().get_size() == 32)
86f2e683
ILT
1842 {
1843#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
99fff23b 1844 return this->do_define_in_output_data<32>(name, version, defined, od,
2ea97941 1845 value, symsize, type, binding,
86f2e683 1846 visibility, nonvis,
2ea97941 1847 offset_is_from_end,
86f2e683
ILT
1848 only_if_ref);
1849#else
1850 gold_unreachable();
1851#endif
1852 }
8851ecca 1853 else if (parameters->target().get_size() == 64)
86f2e683
ILT
1854 {
1855#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
99fff23b 1856 return this->do_define_in_output_data<64>(name, version, defined, od,
2ea97941 1857 value, symsize, type, binding,
86f2e683 1858 visibility, nonvis,
2ea97941 1859 offset_is_from_end,
86f2e683
ILT
1860 only_if_ref);
1861#else
1862 gold_unreachable();
1863#endif
1864 }
ead1e424 1865 else
a3ad94ed 1866 gold_unreachable();
ead1e424
ILT
1867}
1868
1869// Define a symbol in an Output_data, sized version.
1870
1871template<int size>
14b31740 1872Sized_symbol<size>*
ead1e424 1873Symbol_table::do_define_in_output_data(
2ea97941
ILT
1874 const char* name,
1875 const char* version,
99fff23b 1876 Defined defined,
ead1e424 1877 Output_data* od,
2ea97941
ILT
1878 typename elfcpp::Elf_types<size>::Elf_Addr value,
1879 typename elfcpp::Elf_types<size>::Elf_WXword symsize,
ead1e424
ILT
1880 elfcpp::STT type,
1881 elfcpp::STB binding,
1882 elfcpp::STV visibility,
1883 unsigned char nonvis,
2ea97941 1884 bool offset_is_from_end,
ead1e424
ILT
1885 bool only_if_ref)
1886{
1887 Sized_symbol<size>* sym;
86f2e683 1888 Sized_symbol<size>* oldsym;
8c500701 1889 bool resolve_oldsym;
ead1e424 1890
8851ecca 1891 if (parameters->target().is_big_endian())
193a53d9
ILT
1892 {
1893#if defined(HAVE_TARGET_32_BIG) || defined(HAVE_TARGET_64_BIG)
2ea97941 1894 sym = this->define_special_symbol<size, true>(&name, &version,
8c500701
ILT
1895 only_if_ref, &oldsym,
1896 &resolve_oldsym);
193a53d9
ILT
1897#else
1898 gold_unreachable();
1899#endif
1900 }
ead1e424 1901 else
193a53d9
ILT
1902 {
1903#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_64_LITTLE)
2ea97941 1904 sym = this->define_special_symbol<size, false>(&name, &version,
8c500701
ILT
1905 only_if_ref, &oldsym,
1906 &resolve_oldsym);
193a53d9
ILT
1907#else
1908 gold_unreachable();
1909#endif
1910 }
ead1e424
ILT
1911
1912 if (sym == NULL)
14b31740 1913 return NULL;
ead1e424 1914
2ea97941 1915 sym->init_output_data(name, version, od, value, symsize, type, binding,
5146f448
CC
1916 visibility, nonvis, offset_is_from_end,
1917 defined == PREDEFINED);
14b31740 1918
e5756efb 1919 if (oldsym == NULL)
55a93433
ILT
1920 {
1921 if (binding == elfcpp::STB_LOCAL
2ea97941 1922 || this->version_script_.symbol_is_local(name))
55a93433 1923 this->force_local(sym);
2ea97941 1924 else if (version != NULL)
75517b77 1925 sym->set_is_default();
55a93433
ILT
1926 return sym;
1927 }
86f2e683 1928
62855347 1929 if (Symbol_table::should_override_with_special(oldsym, type, defined))
e5756efb 1930 this->override_with_special(oldsym, sym);
8c500701
ILT
1931
1932 if (resolve_oldsym)
1933 return sym;
1934 else
1935 {
1936 delete sym;
1937 return oldsym;
1938 }
ead1e424
ILT
1939}
1940
1941// Define a symbol based on an Output_segment.
1942
14b31740 1943Symbol*
2ea97941 1944Symbol_table::define_in_output_segment(const char* name,
99fff23b
ILT
1945 const char* version,
1946 Defined defined,
1947 Output_segment* os,
2ea97941
ILT
1948 uint64_t value,
1949 uint64_t symsize,
9b07f471
ILT
1950 elfcpp::STT type,
1951 elfcpp::STB binding,
ead1e424
ILT
1952 elfcpp::STV visibility,
1953 unsigned char nonvis,
2ea97941 1954 Symbol::Segment_offset_base offset_base,
ead1e424
ILT
1955 bool only_if_ref)
1956{
8851ecca 1957 if (parameters->target().get_size() == 32)
86f2e683
ILT
1958 {
1959#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
99fff23b 1960 return this->do_define_in_output_segment<32>(name, version, defined, os,
2ea97941 1961 value, symsize, type,
86f2e683 1962 binding, visibility, nonvis,
2ea97941 1963 offset_base, only_if_ref);
86f2e683
ILT
1964#else
1965 gold_unreachable();
1966#endif
1967 }
8851ecca 1968 else if (parameters->target().get_size() == 64)
86f2e683
ILT
1969 {
1970#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
99fff23b 1971 return this->do_define_in_output_segment<64>(name, version, defined, os,
2ea97941 1972 value, symsize, type,
86f2e683 1973 binding, visibility, nonvis,
2ea97941 1974 offset_base, only_if_ref);
86f2e683
ILT
1975#else
1976 gold_unreachable();
1977#endif
1978 }
ead1e424 1979 else
a3ad94ed 1980 gold_unreachable();
ead1e424
ILT
1981}
1982
1983// Define a symbol in an Output_segment, sized version.
1984
1985template<int size>
14b31740 1986Sized_symbol<size>*
ead1e424 1987Symbol_table::do_define_in_output_segment(
2ea97941
ILT
1988 const char* name,
1989 const char* version,
99fff23b 1990 Defined defined,
ead1e424 1991 Output_segment* os,
2ea97941
ILT
1992 typename elfcpp::Elf_types<size>::Elf_Addr value,
1993 typename elfcpp::Elf_types<size>::Elf_WXword symsize,
ead1e424
ILT
1994 elfcpp::STT type,
1995 elfcpp::STB binding,
1996 elfcpp::STV visibility,
1997 unsigned char nonvis,
2ea97941 1998 Symbol::Segment_offset_base offset_base,
ead1e424
ILT
1999 bool only_if_ref)
2000{
2001 Sized_symbol<size>* sym;
86f2e683 2002 Sized_symbol<size>* oldsym;
8c500701 2003 bool resolve_oldsym;
ead1e424 2004
8851ecca 2005 if (parameters->target().is_big_endian())
9025d29d
ILT
2006 {
2007#if defined(HAVE_TARGET_32_BIG) || defined(HAVE_TARGET_64_BIG)
2ea97941 2008 sym = this->define_special_symbol<size, true>(&name, &version,
8c500701
ILT
2009 only_if_ref, &oldsym,
2010 &resolve_oldsym);
9025d29d
ILT
2011#else
2012 gold_unreachable();
2013#endif
2014 }
ead1e424 2015 else
9025d29d
ILT
2016 {
2017#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_64_LITTLE)
2ea97941 2018 sym = this->define_special_symbol<size, false>(&name, &version,
8c500701
ILT
2019 only_if_ref, &oldsym,
2020 &resolve_oldsym);
9025d29d
ILT
2021#else
2022 gold_unreachable();
2023#endif
2024 }
ead1e424
ILT
2025
2026 if (sym == NULL)
14b31740 2027 return NULL;
ead1e424 2028
2ea97941 2029 sym->init_output_segment(name, version, os, value, symsize, type, binding,
5146f448
CC
2030 visibility, nonvis, offset_base,
2031 defined == PREDEFINED);
14b31740 2032
e5756efb 2033 if (oldsym == NULL)
55a93433
ILT
2034 {
2035 if (binding == elfcpp::STB_LOCAL
2ea97941 2036 || this->version_script_.symbol_is_local(name))
55a93433 2037 this->force_local(sym);
2ea97941 2038 else if (version != NULL)
75517b77 2039 sym->set_is_default();
55a93433
ILT
2040 return sym;
2041 }
86f2e683 2042
62855347 2043 if (Symbol_table::should_override_with_special(oldsym, type, defined))
e5756efb 2044 this->override_with_special(oldsym, sym);
8c500701
ILT
2045
2046 if (resolve_oldsym)
2047 return sym;
2048 else
2049 {
2050 delete sym;
2051 return oldsym;
2052 }
ead1e424
ILT
2053}
2054
2055// Define a special symbol with a constant value. It is a multiple
2056// definition error if this symbol is already defined.
2057
14b31740 2058Symbol*
2ea97941
ILT
2059Symbol_table::define_as_constant(const char* name,
2060 const char* version,
99fff23b 2061 Defined defined,
2ea97941
ILT
2062 uint64_t value,
2063 uint64_t symsize,
9b07f471
ILT
2064 elfcpp::STT type,
2065 elfcpp::STB binding,
2066 elfcpp::STV visibility,
2067 unsigned char nonvis,
caa9d5d9
ILT
2068 bool only_if_ref,
2069 bool force_override)
ead1e424 2070{
8851ecca 2071 if (parameters->target().get_size() == 32)
86f2e683
ILT
2072 {
2073#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
99fff23b 2074 return this->do_define_as_constant<32>(name, version, defined, value,
2ea97941 2075 symsize, type, binding,
caa9d5d9
ILT
2076 visibility, nonvis, only_if_ref,
2077 force_override);
86f2e683
ILT
2078#else
2079 gold_unreachable();
2080#endif
2081 }
8851ecca 2082 else if (parameters->target().get_size() == 64)
86f2e683
ILT
2083 {
2084#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
99fff23b 2085 return this->do_define_as_constant<64>(name, version, defined, value,
2ea97941 2086 symsize, type, binding,
caa9d5d9
ILT
2087 visibility, nonvis, only_if_ref,
2088 force_override);
86f2e683
ILT
2089#else
2090 gold_unreachable();
2091#endif
2092 }
ead1e424 2093 else
a3ad94ed 2094 gold_unreachable();
ead1e424
ILT
2095}
2096
2097// Define a symbol as a constant, sized version.
2098
2099template<int size>
14b31740 2100Sized_symbol<size>*
ead1e424 2101Symbol_table::do_define_as_constant(
2ea97941
ILT
2102 const char* name,
2103 const char* version,
99fff23b 2104 Defined defined,
2ea97941
ILT
2105 typename elfcpp::Elf_types<size>::Elf_Addr value,
2106 typename elfcpp::Elf_types<size>::Elf_WXword symsize,
ead1e424
ILT
2107 elfcpp::STT type,
2108 elfcpp::STB binding,
2109 elfcpp::STV visibility,
2110 unsigned char nonvis,
caa9d5d9
ILT
2111 bool only_if_ref,
2112 bool force_override)
ead1e424
ILT
2113{
2114 Sized_symbol<size>* sym;
86f2e683 2115 Sized_symbol<size>* oldsym;
8c500701 2116 bool resolve_oldsym;
ead1e424 2117
8851ecca 2118 if (parameters->target().is_big_endian())
9025d29d
ILT
2119 {
2120#if defined(HAVE_TARGET_32_BIG) || defined(HAVE_TARGET_64_BIG)
2ea97941 2121 sym = this->define_special_symbol<size, true>(&name, &version,
8c500701
ILT
2122 only_if_ref, &oldsym,
2123 &resolve_oldsym);
9025d29d
ILT
2124#else
2125 gold_unreachable();
2126#endif
2127 }
ead1e424 2128 else
9025d29d
ILT
2129 {
2130#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_64_LITTLE)
2ea97941 2131 sym = this->define_special_symbol<size, false>(&name, &version,
8c500701
ILT
2132 only_if_ref, &oldsym,
2133 &resolve_oldsym);
9025d29d
ILT
2134#else
2135 gold_unreachable();
2136#endif
2137 }
ead1e424
ILT
2138
2139 if (sym == NULL)
14b31740 2140 return NULL;
ead1e424 2141
2ea97941 2142 sym->init_constant(name, version, value, symsize, type, binding, visibility,
5146f448 2143 nonvis, defined == PREDEFINED);
14b31740 2144
e5756efb 2145 if (oldsym == NULL)
55a93433 2146 {
686c8caf
ILT
2147 // Version symbols are absolute symbols with name == version.
2148 // We don't want to force them to be local.
2ea97941
ILT
2149 if ((version == NULL
2150 || name != version
2151 || value != 0)
686c8caf 2152 && (binding == elfcpp::STB_LOCAL
2ea97941 2153 || this->version_script_.symbol_is_local(name)))
55a93433 2154 this->force_local(sym);
2ea97941
ILT
2155 else if (version != NULL
2156 && (name != version || value != 0))
75517b77 2157 sym->set_is_default();
55a93433
ILT
2158 return sym;
2159 }
86f2e683 2160
99fff23b 2161 if (force_override
62855347 2162 || Symbol_table::should_override_with_special(oldsym, type, defined))
e5756efb 2163 this->override_with_special(oldsym, sym);
8c500701
ILT
2164
2165 if (resolve_oldsym)
2166 return sym;
2167 else
2168 {
2169 delete sym;
2170 return oldsym;
2171 }
ead1e424
ILT
2172}
2173
2174// Define a set of symbols in output sections.
2175
2176void
9b07f471 2177Symbol_table::define_symbols(const Layout* layout, int count,
a445fddf
ILT
2178 const Define_symbol_in_section* p,
2179 bool only_if_ref)
ead1e424
ILT
2180{
2181 for (int i = 0; i < count; ++i, ++p)
2182 {
2183 Output_section* os = layout->find_output_section(p->output_section);
2184 if (os != NULL)
99fff23b 2185 this->define_in_output_data(p->name, NULL, PREDEFINED, os, p->value,
14b31740
ILT
2186 p->size, p->type, p->binding,
2187 p->visibility, p->nonvis,
a445fddf
ILT
2188 p->offset_is_from_end,
2189 only_if_ref || p->only_if_ref);
ead1e424 2190 else
99fff23b
ILT
2191 this->define_as_constant(p->name, NULL, PREDEFINED, 0, p->size,
2192 p->type, p->binding, p->visibility, p->nonvis,
caa9d5d9
ILT
2193 only_if_ref || p->only_if_ref,
2194 false);
ead1e424
ILT
2195 }
2196}
2197
2198// Define a set of symbols in output segments.
2199
2200void
9b07f471 2201Symbol_table::define_symbols(const Layout* layout, int count,
a445fddf
ILT
2202 const Define_symbol_in_segment* p,
2203 bool only_if_ref)
ead1e424
ILT
2204{
2205 for (int i = 0; i < count; ++i, ++p)
2206 {
2207 Output_segment* os = layout->find_output_segment(p->segment_type,
2208 p->segment_flags_set,
2209 p->segment_flags_clear);
2210 if (os != NULL)
99fff23b 2211 this->define_in_output_segment(p->name, NULL, PREDEFINED, os, p->value,
14b31740
ILT
2212 p->size, p->type, p->binding,
2213 p->visibility, p->nonvis,
a445fddf
ILT
2214 p->offset_base,
2215 only_if_ref || p->only_if_ref);
ead1e424 2216 else
99fff23b
ILT
2217 this->define_as_constant(p->name, NULL, PREDEFINED, 0, p->size,
2218 p->type, p->binding, p->visibility, p->nonvis,
caa9d5d9
ILT
2219 only_if_ref || p->only_if_ref,
2220 false);
ead1e424
ILT
2221 }
2222}
2223
46fe1623
ILT
2224// Define CSYM using a COPY reloc. POSD is the Output_data where the
2225// symbol should be defined--typically a .dyn.bss section. VALUE is
2226// the offset within POSD.
2227
2228template<int size>
2229void
fe8718a4 2230Symbol_table::define_with_copy_reloc(
fe8718a4
ILT
2231 Sized_symbol<size>* csym,
2232 Output_data* posd,
2ea97941 2233 typename elfcpp::Elf_types<size>::Elf_Addr value)
46fe1623
ILT
2234{
2235 gold_assert(csym->is_from_dynobj());
2236 gold_assert(!csym->is_copied_from_dynobj());
2ea97941
ILT
2237 Object* object = csym->object();
2238 gold_assert(object->is_dynamic());
2239 Dynobj* dynobj = static_cast<Dynobj*>(object);
46fe1623
ILT
2240
2241 // Our copied variable has to override any variable in a shared
2242 // library.
2243 elfcpp::STB binding = csym->binding();
2244 if (binding == elfcpp::STB_WEAK)
2245 binding = elfcpp::STB_GLOBAL;
2246
99fff23b 2247 this->define_in_output_data(csym->name(), csym->version(), COPY,
2ea97941 2248 posd, value, csym->symsize(),
46fe1623
ILT
2249 csym->type(), binding,
2250 csym->visibility(), csym->nonvis(),
2251 false, false);
2252
2253 csym->set_is_copied_from_dynobj();
2254 csym->set_needs_dynsym_entry();
2255
2256 this->copied_symbol_dynobjs_[csym] = dynobj;
2257
2258 // We have now defined all aliases, but we have not entered them all
2259 // in the copied_symbol_dynobjs_ map.
2260 if (csym->has_alias())
2261 {
2262 Symbol* sym = csym;
2263 while (true)
2264 {
2265 sym = this->weak_aliases_[sym];
2266 if (sym == csym)
2267 break;
2268 gold_assert(sym->output_data() == posd);
2269
2270 sym->set_is_copied_from_dynobj();
2271 this->copied_symbol_dynobjs_[sym] = dynobj;
2272 }
2273 }
2274}
2275
2276// SYM is defined using a COPY reloc. Return the dynamic object where
2277// the original definition was found.
2278
2279Dynobj*
2280Symbol_table::get_copy_source(const Symbol* sym) const
2281{
2282 gold_assert(sym->is_copied_from_dynobj());
2283 Copied_symbol_dynobjs::const_iterator p =
2284 this->copied_symbol_dynobjs_.find(sym);
2285 gold_assert(p != this->copied_symbol_dynobjs_.end());
2286 return p->second;
2287}
2288
f3e9c5c5
ILT
2289// Add any undefined symbols named on the command line.
2290
2291void
88a4108b 2292Symbol_table::add_undefined_symbols_from_command_line(Layout* layout)
f3e9c5c5 2293{
88a4108b
ILT
2294 if (parameters->options().any_undefined()
2295 || layout->script_options()->any_unreferenced())
f3e9c5c5
ILT
2296 {
2297 if (parameters->target().get_size() == 32)
2298 {
5adf9721 2299#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
88a4108b 2300 this->do_add_undefined_symbols_from_command_line<32>(layout);
f3e9c5c5
ILT
2301#else
2302 gold_unreachable();
2303#endif
2304 }
2305 else if (parameters->target().get_size() == 64)
2306 {
2307#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
88a4108b 2308 this->do_add_undefined_symbols_from_command_line<64>(layout);
f3e9c5c5
ILT
2309#else
2310 gold_unreachable();
2311#endif
2312 }
2313 else
2314 gold_unreachable();
2315 }
2316}
2317
2318template<int size>
2319void
88a4108b 2320Symbol_table::do_add_undefined_symbols_from_command_line(Layout* layout)
f3e9c5c5
ILT
2321{
2322 for (options::String_set::const_iterator p =
2323 parameters->options().undefined_begin();
2324 p != parameters->options().undefined_end();
2325 ++p)
88a4108b 2326 this->add_undefined_symbol_from_command_line<size>(p->c_str());
f3e9c5c5 2327
31821be0
CC
2328 for (options::String_set::const_iterator p =
2329 parameters->options().export_dynamic_symbol_begin();
2330 p != parameters->options().export_dynamic_symbol_end();
2331 ++p)
2332 this->add_undefined_symbol_from_command_line<size>(p->c_str());
2333
88a4108b
ILT
2334 for (Script_options::referenced_const_iterator p =
2335 layout->script_options()->referenced_begin();
2336 p != layout->script_options()->referenced_end();
2337 ++p)
2338 this->add_undefined_symbol_from_command_line<size>(p->c_str());
2339}
2340
2341template<int size>
2342void
2343Symbol_table::add_undefined_symbol_from_command_line(const char* name)
2344{
2345 if (this->lookup(name) != NULL)
2346 return;
f3e9c5c5 2347
88a4108b 2348 const char* version = NULL;
f3e9c5c5 2349
88a4108b
ILT
2350 Sized_symbol<size>* sym;
2351 Sized_symbol<size>* oldsym;
2352 bool resolve_oldsym;
2353 if (parameters->target().is_big_endian())
2354 {
f3e9c5c5 2355#if defined(HAVE_TARGET_32_BIG) || defined(HAVE_TARGET_64_BIG)
88a4108b
ILT
2356 sym = this->define_special_symbol<size, true>(&name, &version,
2357 false, &oldsym,
2358 &resolve_oldsym);
f3e9c5c5 2359#else
88a4108b 2360 gold_unreachable();
f3e9c5c5 2361#endif
88a4108b
ILT
2362 }
2363 else
2364 {
f3e9c5c5 2365#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_64_LITTLE)
88a4108b
ILT
2366 sym = this->define_special_symbol<size, false>(&name, &version,
2367 false, &oldsym,
2368 &resolve_oldsym);
f3e9c5c5 2369#else
88a4108b 2370 gold_unreachable();
f3e9c5c5 2371#endif
88a4108b 2372 }
f3e9c5c5 2373
88a4108b 2374 gold_assert(oldsym == NULL);
f3e9c5c5 2375
88a4108b
ILT
2376 sym->init_undefined(name, version, elfcpp::STT_NOTYPE, elfcpp::STB_GLOBAL,
2377 elfcpp::STV_DEFAULT, 0);
2378 ++this->saw_undefined_;
f3e9c5c5
ILT
2379}
2380
a3ad94ed
ILT
2381// Set the dynamic symbol indexes. INDEX is the index of the first
2382// global dynamic symbol. Pointers to the symbols are stored into the
2383// vector SYMS. The names are added to DYNPOOL. This returns an
2384// updated dynamic symbol index.
2385
2386unsigned int
9b07f471 2387Symbol_table::set_dynsym_indexes(unsigned int index,
a3ad94ed 2388 std::vector<Symbol*>* syms,
14b31740
ILT
2389 Stringpool* dynpool,
2390 Versions* versions)
a3ad94ed
ILT
2391{
2392 for (Symbol_table_type::iterator p = this->table_.begin();
2393 p != this->table_.end();
2394 ++p)
2395 {
2396 Symbol* sym = p->second;
16649710
ILT
2397
2398 // Note that SYM may already have a dynamic symbol index, since
2399 // some symbols appear more than once in the symbol table, with
2400 // and without a version.
2401
ce97fa81 2402 if (!sym->should_add_dynsym_entry(this))
16649710
ILT
2403 sym->set_dynsym_index(-1U);
2404 else if (!sym->has_dynsym_index())
a3ad94ed
ILT
2405 {
2406 sym->set_dynsym_index(index);
2407 ++index;
2408 syms->push_back(sym);
cfd73a4e 2409 dynpool->add(sym->name(), false, NULL);
14b31740
ILT
2410
2411 // Record any version information.
09124467
ILT
2412 if (sym->version() != NULL)
2413 versions->record_version(this, dynpool, sym);
594c8e5e
ILT
2414
2415 // If the symbol is defined in a dynamic object and is
2416 // referenced in a regular object, then mark the dynamic
2417 // object as needed. This is used to implement --as-needed.
2418 if (sym->is_from_dynobj() && sym->in_reg())
2419 sym->object()->set_is_needed();
a3ad94ed
ILT
2420 }
2421 }
2422
14b31740
ILT
2423 // Finish up the versions. In some cases this may add new dynamic
2424 // symbols.
9b07f471 2425 index = versions->finalize(this, index, syms);
14b31740 2426
a3ad94ed
ILT
2427 return index;
2428}
2429
c06b7b0b 2430// Set the final values for all the symbols. The index of the first
55a93433
ILT
2431// global symbol in the output file is *PLOCAL_SYMCOUNT. Record the
2432// file offset OFF. Add their names to POOL. Return the new file
2433// offset. Update *PLOCAL_SYMCOUNT if necessary.
54dc6425 2434
75f65a3e 2435off_t
55a93433
ILT
2436Symbol_table::finalize(off_t off, off_t dynoff, size_t dyn_global_index,
2437 size_t dyncount, Stringpool* pool,
ca09d69a 2438 unsigned int* plocal_symcount)
54dc6425 2439{
f6ce93d6
ILT
2440 off_t ret;
2441
55a93433
ILT
2442 gold_assert(*plocal_symcount != 0);
2443 this->first_global_index_ = *plocal_symcount;
c06b7b0b 2444
16649710
ILT
2445 this->dynamic_offset_ = dynoff;
2446 this->first_dynamic_global_index_ = dyn_global_index;
2447 this->dynamic_count_ = dyncount;
2448
8851ecca 2449 if (parameters->target().get_size() == 32)
9025d29d
ILT
2450 {
2451#if defined(HAVE_TARGET_32_BIG) || defined(HAVE_TARGET_32_LITTLE)
55a93433 2452 ret = this->sized_finalize<32>(off, pool, plocal_symcount);
9025d29d
ILT
2453#else
2454 gold_unreachable();
2455#endif
2456 }
8851ecca 2457 else if (parameters->target().get_size() == 64)
9025d29d
ILT
2458 {
2459#if defined(HAVE_TARGET_64_BIG) || defined(HAVE_TARGET_64_LITTLE)
55a93433 2460 ret = this->sized_finalize<64>(off, pool, plocal_symcount);
9025d29d
ILT
2461#else
2462 gold_unreachable();
2463#endif
2464 }
61ba1cf9 2465 else
a3ad94ed 2466 gold_unreachable();
f6ce93d6
ILT
2467
2468 // Now that we have the final symbol table, we can reliably note
2469 // which symbols should get warnings.
cb295612 2470 this->warnings_.note_warnings(this);
f6ce93d6
ILT
2471
2472 return ret;
75f65a3e
ILT
2473}
2474
55a93433
ILT
2475// SYM is going into the symbol table at *PINDEX. Add the name to
2476// POOL, update *PINDEX and *POFF.
2477
2478template<int size>
2479void
2480Symbol_table::add_to_final_symtab(Symbol* sym, Stringpool* pool,
2481 unsigned int* pindex, off_t* poff)
2482{
2483 sym->set_symtab_index(*pindex);
6d1c4efb
ILT
2484 if (sym->version() == NULL || !parameters->options().relocatable())
2485 pool->add(sym->name(), false, NULL);
2486 else
2487 pool->add(sym->versioned_name(), true, NULL);
55a93433
ILT
2488 ++*pindex;
2489 *poff += elfcpp::Elf_sizes<size>::sym_size;
2490}
2491
ead1e424
ILT
2492// Set the final value for all the symbols. This is called after
2493// Layout::finalize, so all the output sections have their final
2494// address.
75f65a3e
ILT
2495
2496template<int size>
2497off_t
55a93433
ILT
2498Symbol_table::sized_finalize(off_t off, Stringpool* pool,
2499 unsigned int* plocal_symcount)
75f65a3e 2500{
ead1e424 2501 off = align_address(off, size >> 3);
75f65a3e
ILT
2502 this->offset_ = off;
2503
55a93433
ILT
2504 unsigned int index = *plocal_symcount;
2505 const unsigned int orig_index = index;
c06b7b0b 2506
55a93433
ILT
2507 // First do all the symbols which have been forced to be local, as
2508 // they must appear before all global symbols.
2509 for (Forced_locals::iterator p = this->forced_locals_.begin();
2510 p != this->forced_locals_.end();
2511 ++p)
2512 {
2513 Symbol* sym = *p;
2514 gold_assert(sym->is_forced_local());
2515 if (this->sized_finalize_symbol<size>(sym))
2516 {
2517 this->add_to_final_symtab<size>(sym, pool, &index, &off);
2518 ++*plocal_symcount;
2519 }
2520 }
2521
2522 // Now do all the remaining symbols.
c06b7b0b
ILT
2523 for (Symbol_table_type::iterator p = this->table_.begin();
2524 p != this->table_.end();
2525 ++p)
54dc6425 2526 {
55a93433
ILT
2527 Symbol* sym = p->second;
2528 if (this->sized_finalize_symbol<size>(sym))
2529 this->add_to_final_symtab<size>(sym, pool, &index, &off);
2530 }
54dc6425 2531
55a93433 2532 this->output_count_ = index - orig_index;
a3ad94ed 2533
55a93433
ILT
2534 return off;
2535}
75f65a3e 2536
c0a62865
DK
2537// Compute the final value of SYM and store status in location PSTATUS.
2538// During relaxation, this may be called multiple times for a symbol to
2539// compute its would-be final value in each relaxation pass.
008db82e 2540
55a93433 2541template<int size>
c0a62865
DK
2542typename Sized_symbol<size>::Value_type
2543Symbol_table::compute_final_value(
2544 const Sized_symbol<size>* sym,
2545 Compute_final_value_status* pstatus) const
55a93433 2546{
ef9beddf 2547 typedef typename Sized_symbol<size>::Value_type Value_type;
2ea97941 2548 Value_type value;
ead1e424 2549
55a93433
ILT
2550 switch (sym->source())
2551 {
2552 case Symbol::FROM_OBJECT:
2553 {
d491d34e 2554 bool is_ordinary;
2ea97941 2555 unsigned int shndx = sym->shndx(&is_ordinary);
ead1e424 2556
d491d34e 2557 if (!is_ordinary
2ea97941
ILT
2558 && shndx != elfcpp::SHN_ABS
2559 && !Symbol::is_common_shndx(shndx))
55a93433 2560 {
c0a62865
DK
2561 *pstatus = CFVS_UNSUPPORTED_SYMBOL_SECTION;
2562 return 0;
ead1e424 2563 }
ead1e424 2564
55a93433
ILT
2565 Object* symobj = sym->object();
2566 if (symobj->is_dynamic())
ead1e424 2567 {
2ea97941
ILT
2568 value = 0;
2569 shndx = elfcpp::SHN_UNDEF;
ead1e424 2570 }
89fc3421
CC
2571 else if (symobj->pluginobj() != NULL)
2572 {
2ea97941
ILT
2573 value = 0;
2574 shndx = elfcpp::SHN_UNDEF;
89fc3421 2575 }
2ea97941
ILT
2576 else if (shndx == elfcpp::SHN_UNDEF)
2577 value = 0;
d491d34e 2578 else if (!is_ordinary
2ea97941
ILT
2579 && (shndx == elfcpp::SHN_ABS
2580 || Symbol::is_common_shndx(shndx)))
2581 value = sym->value();
55a93433 2582 else
ead1e424 2583 {
55a93433 2584 Relobj* relobj = static_cast<Relobj*>(symobj);
2ea97941 2585 Output_section* os = relobj->output_section(shndx);
55a93433 2586
2ea97941 2587 if (this->is_section_folded(relobj, shndx))
ef15dade
ST
2588 {
2589 gold_assert(os == NULL);
2590 // Get the os of the section it is folded onto.
2591 Section_id folded = this->icf_->get_folded_section(relobj,
2ea97941 2592 shndx);
ef15dade
ST
2593 gold_assert(folded.first != NULL);
2594 Relobj* folded_obj = reinterpret_cast<Relobj*>(folded.first);
d6344fb5
DK
2595 unsigned folded_shndx = folded.second;
2596
2597 os = folded_obj->output_section(folded_shndx);
ef15dade 2598 gold_assert(os != NULL);
d6344fb5
DK
2599
2600 // Replace (relobj, shndx) with canonical ICF input section.
2601 shndx = folded_shndx;
2602 relobj = folded_obj;
ef15dade
ST
2603 }
2604
d6344fb5 2605 uint64_t secoff64 = relobj->output_section_offset(shndx);
ef15dade 2606 if (os == NULL)
ead1e424 2607 {
6d03d481
ST
2608 bool static_or_reloc = (parameters->doing_static_link() ||
2609 parameters->options().relocatable());
2610 gold_assert(static_or_reloc || sym->dynsym_index() == -1U);
2611
c0a62865
DK
2612 *pstatus = CFVS_NO_OUTPUT_SECTION;
2613 return 0;
ead1e424 2614 }
55a93433 2615
eff45813
CC
2616 if (secoff64 == -1ULL)
2617 {
2618 // The section needs special handling (e.g., a merge section).
ef15dade 2619
2ea97941 2620 value = os->output_address(relobj, shndx, sym->value());
eff45813
CC
2621 }
2622 else
2623 {
2624 Value_type secoff =
2625 convert_types<Value_type, uint64_t>(secoff64);
2626 if (sym->type() == elfcpp::STT_TLS)
2ea97941 2627 value = sym->value() + os->tls_offset() + secoff;
eff45813 2628 else
2ea97941 2629 value = sym->value() + os->address() + secoff;
eff45813 2630 }
ead1e424 2631 }
55a93433
ILT
2632 }
2633 break;
2634
2635 case Symbol::IN_OUTPUT_DATA:
2636 {
2637 Output_data* od = sym->output_data();
2ea97941 2638 value = sym->value();
155a0dd7 2639 if (sym->type() != elfcpp::STT_TLS)
2ea97941 2640 value += od->address();
155a0dd7
ILT
2641 else
2642 {
2643 Output_section* os = od->output_section();
2644 gold_assert(os != NULL);
2ea97941 2645 value += os->tls_offset() + (od->address() - os->address());
155a0dd7 2646 }
55a93433 2647 if (sym->offset_is_from_end())
2ea97941 2648 value += od->data_size();
55a93433
ILT
2649 }
2650 break;
2651
2652 case Symbol::IN_OUTPUT_SEGMENT:
2653 {
2654 Output_segment* os = sym->output_segment();
2ea97941 2655 value = sym->value();
edfbb029 2656 if (sym->type() != elfcpp::STT_TLS)
2ea97941 2657 value += os->vaddr();
55a93433
ILT
2658 switch (sym->offset_base())
2659 {
2660 case Symbol::SEGMENT_START:
2661 break;
2662 case Symbol::SEGMENT_END:
2ea97941 2663 value += os->memsz();
55a93433
ILT
2664 break;
2665 case Symbol::SEGMENT_BSS:
2ea97941 2666 value += os->filesz();
55a93433
ILT
2667 break;
2668 default:
2669 gold_unreachable();
2670 }
2671 }
2672 break;
ead1e424 2673
f3e9c5c5 2674 case Symbol::IS_CONSTANT:
2ea97941 2675 value = sym->value();
55a93433 2676 break;
ead1e424 2677
f3e9c5c5 2678 case Symbol::IS_UNDEFINED:
2ea97941 2679 value = 0;
f3e9c5c5
ILT
2680 break;
2681
55a93433
ILT
2682 default:
2683 gold_unreachable();
2684 }
ead1e424 2685
c0a62865 2686 *pstatus = CFVS_OK;
2ea97941 2687 return value;
c0a62865
DK
2688}
2689
2690// Finalize the symbol SYM. This returns true if the symbol should be
2691// added to the symbol table, false otherwise.
2692
2693template<int size>
2694bool
2695Symbol_table::sized_finalize_symbol(Symbol* unsized_sym)
2696{
2697 typedef typename Sized_symbol<size>::Value_type Value_type;
2698
2699 Sized_symbol<size>* sym = static_cast<Sized_symbol<size>*>(unsized_sym);
2700
2701 // The default version of a symbol may appear twice in the symbol
2702 // table. We only need to finalize it once.
2703 if (sym->has_symtab_index())
2704 return false;
2705
2706 if (!sym->in_reg())
2707 {
2708 gold_assert(!sym->has_symtab_index());
2709 sym->set_symtab_index(-1U);
2710 gold_assert(sym->dynsym_index() == -1U);
2711 return false;
2712 }
2713
badc8139
RÁE
2714 // If the symbol is only present on plugin files, the plugin decided we
2715 // don't need it.
2716 if (!sym->in_real_elf())
2717 {
2718 gold_assert(!sym->has_symtab_index());
2719 sym->set_symtab_index(-1U);
2720 return false;
2721 }
2722
c0a62865
DK
2723 // Compute final symbol value.
2724 Compute_final_value_status status;
2ea97941 2725 Value_type value = this->compute_final_value(sym, &status);
c0a62865
DK
2726
2727 switch (status)
2728 {
2729 case CFVS_OK:
2730 break;
2731 case CFVS_UNSUPPORTED_SYMBOL_SECTION:
2732 {
2733 bool is_ordinary;
2ea97941 2734 unsigned int shndx = sym->shndx(&is_ordinary);
c0a62865 2735 gold_error(_("%s: unsupported symbol section 0x%x"),
2ea97941 2736 sym->demangled_name().c_str(), shndx);
c0a62865
DK
2737 }
2738 break;
2739 case CFVS_NO_OUTPUT_SECTION:
2740 sym->set_symtab_index(-1U);
2741 return false;
2742 default:
2743 gold_unreachable();
2744 }
2745
2ea97941 2746 sym->set_value(value);
9e2dcb77 2747
8c604651
CS
2748 if (parameters->options().strip_all()
2749 || !parameters->options().should_retain_symbol(sym->name()))
55a93433
ILT
2750 {
2751 sym->set_symtab_index(-1U);
2752 return false;
54dc6425 2753 }
75f65a3e 2754
55a93433 2755 return true;
54dc6425
ILT
2756}
2757
61ba1cf9
ILT
2758// Write out the global symbols.
2759
2760void
fd9d194f 2761Symbol_table::write_globals(const Stringpool* sympool,
d491d34e
ILT
2762 const Stringpool* dynpool,
2763 Output_symtab_xindex* symtab_xindex,
2764 Output_symtab_xindex* dynsym_xindex,
2765 Output_file* of) const
61ba1cf9 2766{
8851ecca 2767 switch (parameters->size_and_endianness())
61ba1cf9 2768 {
9025d29d 2769#ifdef HAVE_TARGET_32_LITTLE
8851ecca 2770 case Parameters::TARGET_32_LITTLE:
fd9d194f 2771 this->sized_write_globals<32, false>(sympool, dynpool, symtab_xindex,
d491d34e 2772 dynsym_xindex, of);
8851ecca 2773 break;
9025d29d 2774#endif
8851ecca
ILT
2775#ifdef HAVE_TARGET_32_BIG
2776 case Parameters::TARGET_32_BIG:
fd9d194f 2777 this->sized_write_globals<32, true>(sympool, dynpool, symtab_xindex,
d491d34e 2778 dynsym_xindex, of);
8851ecca 2779 break;
9025d29d 2780#endif
9025d29d 2781#ifdef HAVE_TARGET_64_LITTLE
8851ecca 2782 case Parameters::TARGET_64_LITTLE:
fd9d194f 2783 this->sized_write_globals<64, false>(sympool, dynpool, symtab_xindex,
d491d34e 2784 dynsym_xindex, of);
8851ecca 2785 break;
9025d29d 2786#endif
8851ecca
ILT
2787#ifdef HAVE_TARGET_64_BIG
2788 case Parameters::TARGET_64_BIG:
fd9d194f 2789 this->sized_write_globals<64, true>(sympool, dynpool, symtab_xindex,
d491d34e 2790 dynsym_xindex, of);
8851ecca
ILT
2791 break;
2792#endif
2793 default:
2794 gold_unreachable();
61ba1cf9 2795 }
61ba1cf9
ILT
2796}
2797
2798// Write out the global symbols.
2799
2800template<int size, bool big_endian>
2801void
fd9d194f 2802Symbol_table::sized_write_globals(const Stringpool* sympool,
16649710 2803 const Stringpool* dynpool,
d491d34e
ILT
2804 Output_symtab_xindex* symtab_xindex,
2805 Output_symtab_xindex* dynsym_xindex,
61ba1cf9
ILT
2806 Output_file* of) const
2807{
8851ecca 2808 const Target& target = parameters->target();
9a2d6984 2809
61ba1cf9 2810 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
55a93433
ILT
2811
2812 const unsigned int output_count = this->output_count_;
2813 const section_size_type oview_size = output_count * sym_size;
2814 const unsigned int first_global_index = this->first_global_index_;
5fe2a0f5
ILT
2815 unsigned char* psyms;
2816 if (this->offset_ == 0 || output_count == 0)
2817 psyms = NULL;
2818 else
2819 psyms = of->get_output_view(this->offset_, oview_size);
16649710 2820
55a93433
ILT
2821 const unsigned int dynamic_count = this->dynamic_count_;
2822 const section_size_type dynamic_size = dynamic_count * sym_size;
2823 const unsigned int first_dynamic_global_index =
2824 this->first_dynamic_global_index_;
16649710 2825 unsigned char* dynamic_view;
5fe2a0f5 2826 if (this->dynamic_offset_ == 0 || dynamic_count == 0)
16649710
ILT
2827 dynamic_view = NULL;
2828 else
2829 dynamic_view = of->get_output_view(this->dynamic_offset_, dynamic_size);
c06b7b0b 2830
61ba1cf9
ILT
2831 for (Symbol_table_type::const_iterator p = this->table_.begin();
2832 p != this->table_.end();
2833 ++p)
2834 {
2835 Sized_symbol<size>* sym = static_cast<Sized_symbol<size>*>(p->second);
2836
9a2d6984 2837 // Possibly warn about unresolved symbols in shared libraries.
fd9d194f 2838 this->warn_about_undefined_dynobj_symbol(sym);
e2827e5f 2839
a3ad94ed 2840 unsigned int sym_index = sym->symtab_index();
16649710
ILT
2841 unsigned int dynsym_index;
2842 if (dynamic_view == NULL)
2843 dynsym_index = -1U;
2844 else
2845 dynsym_index = sym->dynsym_index();
2846
2847 if (sym_index == -1U && dynsym_index == -1U)
a3ad94ed
ILT
2848 {
2849 // This symbol is not included in the output file.
2850 continue;
2851 }
16649710 2852
2ea97941 2853 unsigned int shndx;
88dd47ac
ILT
2854 typename elfcpp::Elf_types<size>::Elf_Addr sym_value = sym->value();
2855 typename elfcpp::Elf_types<size>::Elf_Addr dynsym_value = sym_value;
ce279a62 2856 elfcpp::STB binding = sym->binding();
9634ed06
CC
2857
2858 // If --no-gnu-unique is set, change STB_GNU_UNIQUE to STB_GLOBAL.
2859 if (binding == elfcpp::STB_GNU_UNIQUE
2860 && !parameters->options().gnu_unique())
2861 binding = elfcpp::STB_GLOBAL;
2862
ead1e424
ILT
2863 switch (sym->source())
2864 {
2865 case Symbol::FROM_OBJECT:
2866 {
d491d34e
ILT
2867 bool is_ordinary;
2868 unsigned int in_shndx = sym->shndx(&is_ordinary);
ead1e424 2869
d491d34e 2870 if (!is_ordinary
0dfbdef4 2871 && in_shndx != elfcpp::SHN_ABS
8a5e3e08 2872 && !Symbol::is_common_shndx(in_shndx))
ead1e424 2873 {
75f2446e 2874 gold_error(_("%s: unsupported symbol section 0x%x"),
a2b1aa12 2875 sym->demangled_name().c_str(), in_shndx);
2ea97941 2876 shndx = in_shndx;
f6ce93d6 2877 }
ead1e424
ILT
2878 else
2879 {
75f2446e
ILT
2880 Object* symobj = sym->object();
2881 if (symobj->is_dynamic())
2882 {
2883 if (sym->needs_dynsym_value())
8851ecca 2884 dynsym_value = target.dynsym_value(sym);
2ea97941 2885 shndx = elfcpp::SHN_UNDEF;
ce279a62
CC
2886 if (sym->is_undef_binding_weak())
2887 binding = elfcpp::STB_WEAK;
74f67560
DK
2888 else
2889 binding = elfcpp::STB_GLOBAL;
75f2446e 2890 }
89fc3421 2891 else if (symobj->pluginobj() != NULL)
2ea97941 2892 shndx = elfcpp::SHN_UNDEF;
75f2446e 2893 else if (in_shndx == elfcpp::SHN_UNDEF
d491d34e
ILT
2894 || (!is_ordinary
2895 && (in_shndx == elfcpp::SHN_ABS
8a5e3e08 2896 || Symbol::is_common_shndx(in_shndx))))
2ea97941 2897 shndx = in_shndx;
75f2446e
ILT
2898 else
2899 {
2900 Relobj* relobj = static_cast<Relobj*>(symobj);
ef9beddf 2901 Output_section* os = relobj->output_section(in_shndx);
ef15dade
ST
2902 if (this->is_section_folded(relobj, in_shndx))
2903 {
2904 // This global symbol must be written out even though
2905 // it is folded.
2906 // Get the os of the section it is folded onto.
2907 Section_id folded =
2908 this->icf_->get_folded_section(relobj, in_shndx);
2909 gold_assert(folded.first !=NULL);
2910 Relobj* folded_obj =
2911 reinterpret_cast<Relobj*>(folded.first);
2912 os = folded_obj->output_section(folded.second);
2913 gold_assert(os != NULL);
2914 }
75f2446e 2915 gold_assert(os != NULL);
2ea97941 2916 shndx = os->out_shndx();
88dd47ac 2917
2ea97941 2918 if (shndx >= elfcpp::SHN_LORESERVE)
d491d34e
ILT
2919 {
2920 if (sym_index != -1U)
2ea97941 2921 symtab_xindex->add(sym_index, shndx);
d491d34e 2922 if (dynsym_index != -1U)
2ea97941
ILT
2923 dynsym_xindex->add(dynsym_index, shndx);
2924 shndx = elfcpp::SHN_XINDEX;
d491d34e
ILT
2925 }
2926
88dd47ac
ILT
2927 // In object files symbol values are section
2928 // relative.
8851ecca 2929 if (parameters->options().relocatable())
88dd47ac 2930 sym_value -= os->address();
75f2446e 2931 }
ead1e424
ILT
2932 }
2933 }
2934 break;
2935
2936 case Symbol::IN_OUTPUT_DATA:
2ea97941
ILT
2937 shndx = sym->output_data()->out_shndx();
2938 if (shndx >= elfcpp::SHN_LORESERVE)
d491d34e
ILT
2939 {
2940 if (sym_index != -1U)
2ea97941 2941 symtab_xindex->add(sym_index, shndx);
d491d34e 2942 if (dynsym_index != -1U)
2ea97941
ILT
2943 dynsym_xindex->add(dynsym_index, shndx);
2944 shndx = elfcpp::SHN_XINDEX;
d491d34e 2945 }
ead1e424
ILT
2946 break;
2947
2948 case Symbol::IN_OUTPUT_SEGMENT:
2ea97941 2949 shndx = elfcpp::SHN_ABS;
ead1e424
ILT
2950 break;
2951
f3e9c5c5 2952 case Symbol::IS_CONSTANT:
2ea97941 2953 shndx = elfcpp::SHN_ABS;
ead1e424
ILT
2954 break;
2955
f3e9c5c5 2956 case Symbol::IS_UNDEFINED:
2ea97941 2957 shndx = elfcpp::SHN_UNDEF;
f3e9c5c5
ILT
2958 break;
2959
ead1e424 2960 default:
a3ad94ed 2961 gold_unreachable();
ead1e424 2962 }
61ba1cf9 2963
16649710
ILT
2964 if (sym_index != -1U)
2965 {
55a93433
ILT
2966 sym_index -= first_global_index;
2967 gold_assert(sym_index < output_count);
2968 unsigned char* ps = psyms + (sym_index * sym_size);
2ea97941 2969 this->sized_write_symbol<size, big_endian>(sym, sym_value, shndx,
ce279a62 2970 binding, sympool, ps);
16649710 2971 }
61ba1cf9 2972
16649710
ILT
2973 if (dynsym_index != -1U)
2974 {
2975 dynsym_index -= first_dynamic_global_index;
2976 gold_assert(dynsym_index < dynamic_count);
2977 unsigned char* pd = dynamic_view + (dynsym_index * sym_size);
2ea97941 2978 this->sized_write_symbol<size, big_endian>(sym, dynsym_value, shndx,
ce279a62 2979 binding, dynpool, pd);
16649710 2980 }
61ba1cf9
ILT
2981 }
2982
c06b7b0b 2983 of->write_output_view(this->offset_, oview_size, psyms);
16649710
ILT
2984 if (dynamic_view != NULL)
2985 of->write_output_view(this->dynamic_offset_, dynamic_size, dynamic_view);
2986}
2987
2988// Write out the symbol SYM, in section SHNDX, to P. POOL is the
2989// strtab holding the name.
2990
2991template<int size, bool big_endian>
2992void
ab5c9e90
ILT
2993Symbol_table::sized_write_symbol(
2994 Sized_symbol<size>* sym,
2ea97941
ILT
2995 typename elfcpp::Elf_types<size>::Elf_Addr value,
2996 unsigned int shndx,
ce279a62 2997 elfcpp::STB binding,
ab5c9e90 2998 const Stringpool* pool,
7d1a9ebb 2999 unsigned char* p) const
16649710
ILT
3000{
3001 elfcpp::Sym_write<size, big_endian> osym(p);
6d1c4efb
ILT
3002 if (sym->version() == NULL || !parameters->options().relocatable())
3003 osym.put_st_name(pool->get_offset(sym->name()));
3004 else
3005 osym.put_st_name(pool->get_offset(sym->versioned_name()));
2ea97941 3006 osym.put_st_value(value);
58e54ac2 3007 // Use a symbol size of zero for undefined symbols from shared libraries.
2ea97941 3008 if (shndx == elfcpp::SHN_UNDEF && sym->is_from_dynobj())
58e54ac2
CD
3009 osym.put_st_size(0);
3010 else
3011 osym.put_st_size(sym->symsize());
53d7974c
L
3012 elfcpp::STT type = sym->type();
3013 // Turn IFUNC symbols from shared libraries into normal FUNC symbols.
3014 if (type == elfcpp::STT_GNU_IFUNC
3015 && sym->is_from_dynobj())
3016 type = elfcpp::STT_FUNC;
55a93433
ILT
3017 // A version script may have overridden the default binding.
3018 if (sym->is_forced_local())
53d7974c 3019 osym.put_st_info(elfcpp::elf_st_info(elfcpp::STB_LOCAL, type));
55a93433 3020 else
ce279a62 3021 osym.put_st_info(elfcpp::elf_st_info(binding, type));
16649710 3022 osym.put_st_other(elfcpp::elf_st_other(sym->visibility(), sym->nonvis()));
2ea97941 3023 osym.put_st_shndx(shndx);
61ba1cf9
ILT
3024}
3025
9a2d6984
ILT
3026// Check for unresolved symbols in shared libraries. This is
3027// controlled by the --allow-shlib-undefined option.
3028
3029// We only warn about libraries for which we have seen all the
3030// DT_NEEDED entries. We don't try to track down DT_NEEDED entries
3031// which were not seen in this link. If we didn't see a DT_NEEDED
3032// entry, we aren't going to be able to reliably report whether the
3033// symbol is undefined.
3034
fd9d194f
ILT
3035// We also don't warn about libraries found in a system library
3036// directory (e.g., /lib or /usr/lib); we assume that those libraries
3037// are OK. This heuristic avoids problems on GNU/Linux, in which -ldl
3038// can have undefined references satisfied by ld-linux.so.
9a2d6984
ILT
3039
3040inline void
fd9d194f 3041Symbol_table::warn_about_undefined_dynobj_symbol(Symbol* sym) const
9a2d6984 3042{
d491d34e 3043 bool dummy;
9a2d6984
ILT
3044 if (sym->source() == Symbol::FROM_OBJECT
3045 && sym->object()->is_dynamic()
d491d34e 3046 && sym->shndx(&dummy) == elfcpp::SHN_UNDEF
9a2d6984 3047 && sym->binding() != elfcpp::STB_WEAK
8851ecca
ILT
3048 && !parameters->options().allow_shlib_undefined()
3049 && !parameters->target().is_defined_by_abi(sym)
fd9d194f 3050 && !sym->object()->is_in_system_directory())
9a2d6984
ILT
3051 {
3052 // A very ugly cast.
3053 Dynobj* dynobj = static_cast<Dynobj*>(sym->object());
3054 if (!dynobj->has_unknown_needed_entries())
f073bbf7 3055 gold_undefined_symbol(sym);
9a2d6984
ILT
3056 }
3057}
3058
a3ad94ed
ILT
3059// Write out a section symbol. Return the update offset.
3060
3061void
ca09d69a 3062Symbol_table::write_section_symbol(const Output_section* os,
d491d34e 3063 Output_symtab_xindex* symtab_xindex,
a3ad94ed
ILT
3064 Output_file* of,
3065 off_t offset) const
3066{
8851ecca 3067 switch (parameters->size_and_endianness())
a3ad94ed 3068 {
9025d29d 3069#ifdef HAVE_TARGET_32_LITTLE
8851ecca 3070 case Parameters::TARGET_32_LITTLE:
d491d34e
ILT
3071 this->sized_write_section_symbol<32, false>(os, symtab_xindex, of,
3072 offset);
8851ecca 3073 break;
9025d29d 3074#endif
8851ecca
ILT
3075#ifdef HAVE_TARGET_32_BIG
3076 case Parameters::TARGET_32_BIG:
d491d34e
ILT
3077 this->sized_write_section_symbol<32, true>(os, symtab_xindex, of,
3078 offset);
8851ecca 3079 break;
9025d29d 3080#endif
9025d29d 3081#ifdef HAVE_TARGET_64_LITTLE
8851ecca 3082 case Parameters::TARGET_64_LITTLE:
d491d34e
ILT
3083 this->sized_write_section_symbol<64, false>(os, symtab_xindex, of,
3084 offset);
8851ecca 3085 break;
9025d29d 3086#endif
8851ecca
ILT
3087#ifdef HAVE_TARGET_64_BIG
3088 case Parameters::TARGET_64_BIG:
d491d34e
ILT
3089 this->sized_write_section_symbol<64, true>(os, symtab_xindex, of,
3090 offset);
8851ecca
ILT
3091 break;
3092#endif
3093 default:
3094 gold_unreachable();
a3ad94ed 3095 }
a3ad94ed
ILT
3096}
3097
3098// Write out a section symbol, specialized for size and endianness.
3099
3100template<int size, bool big_endian>
3101void
3102Symbol_table::sized_write_section_symbol(const Output_section* os,
d491d34e 3103 Output_symtab_xindex* symtab_xindex,
a3ad94ed
ILT
3104 Output_file* of,
3105 off_t offset) const
3106{
3107 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
3108
3109 unsigned char* pov = of->get_output_view(offset, sym_size);
3110
3111 elfcpp::Sym_write<size, big_endian> osym(pov);
3112 osym.put_st_name(0);
b4ecf66b
ILT
3113 if (parameters->options().relocatable())
3114 osym.put_st_value(0);
3115 else
3116 osym.put_st_value(os->address());
a3ad94ed
ILT
3117 osym.put_st_size(0);
3118 osym.put_st_info(elfcpp::elf_st_info(elfcpp::STB_LOCAL,
3119 elfcpp::STT_SECTION));
3120 osym.put_st_other(elfcpp::elf_st_other(elfcpp::STV_DEFAULT, 0));
d491d34e 3121
2ea97941
ILT
3122 unsigned int shndx = os->out_shndx();
3123 if (shndx >= elfcpp::SHN_LORESERVE)
d491d34e 3124 {
2ea97941
ILT
3125 symtab_xindex->add(os->symtab_index(), shndx);
3126 shndx = elfcpp::SHN_XINDEX;
d491d34e 3127 }
2ea97941 3128 osym.put_st_shndx(shndx);
a3ad94ed
ILT
3129
3130 of->write_output_view(offset, sym_size, pov);
3131}
3132
abaa3995
ILT
3133// Print statistical information to stderr. This is used for --stats.
3134
3135void
3136Symbol_table::print_stats() const
3137{
3138#if defined(HAVE_TR1_UNORDERED_MAP) || defined(HAVE_EXT_HASH_MAP)
3139 fprintf(stderr, _("%s: symbol table entries: %zu; buckets: %zu\n"),
3140 program_name, this->table_.size(), this->table_.bucket_count());
3141#else
3142 fprintf(stderr, _("%s: symbol table entries: %zu\n"),
3143 program_name, this->table_.size());
3144#endif
ad8f37d1 3145 this->namepool_.print_stats("symbol table stringpool");
abaa3995
ILT
3146}
3147
ff541f30
ILT
3148// We check for ODR violations by looking for symbols with the same
3149// name for which the debugging information reports that they were
71ff8986 3150// defined in disjoint source locations. When comparing the source
55382fb7
ILT
3151// location, we consider instances with the same base filename to be
3152// the same. This is because different object files/shared libraries
3153// can include the same header file using different paths, and
3154// different optimization settings can make the line number appear to
3155// be a couple lines off, and we don't want to report an ODR violation
3156// in those cases.
ff541f30
ILT
3157
3158// This struct is used to compare line information, as returned by
7bf1f802 3159// Dwarf_line_info::one_addr2line. It implements a < comparison
71ff8986 3160// operator used with std::sort.
ff541f30
ILT
3161
3162struct Odr_violation_compare
3163{
3164 bool
3165 operator()(const std::string& s1, const std::string& s2) const
3166 {
55382fb7 3167 // Inputs should be of the form "dirname/filename:linenum" where
71ff8986 3168 // "dirname/" is optional. We want to compare just the filename:linenum.
55382fb7 3169
71ff8986 3170 // Find the last '/' in each string.
55382fb7
ILT
3171 std::string::size_type s1begin = s1.rfind('/');
3172 std::string::size_type s2begin = s2.rfind('/');
55382fb7
ILT
3173 // If there was no '/' in a string, start at the beginning.
3174 if (s1begin == std::string::npos)
3175 s1begin = 0;
3176 if (s2begin == std::string::npos)
3177 s2begin = 0;
71ff8986
ILT
3178 return s1.compare(s1begin, std::string::npos,
3179 s2, s2begin, std::string::npos) < 0;
ff541f30
ILT
3180 }
3181};
3182
71ff8986
ILT
3183// Returns all of the lines attached to LOC, not just the one the
3184// instruction actually came from.
3185std::vector<std::string>
3186Symbol_table::linenos_from_loc(const Task* task,
3187 const Symbol_location& loc)
3188{
3189 // We need to lock the object in order to read it. This
3190 // means that we have to run in a singleton Task. If we
3191 // want to run this in a general Task for better
3192 // performance, we will need one Task for object, plus
3193 // appropriate locking to ensure that we don't conflict with
3194 // other uses of the object. Also note, one_addr2line is not
3195 // currently thread-safe.
3196 Task_lock_obj<Object> tl(task, loc.object);
3197
3198 std::vector<std::string> result;
3199 // 16 is the size of the object-cache that one_addr2line should use.
3200 std::string canonical_result = Dwarf_line_info::one_addr2line(
3201 loc.object, loc.shndx, loc.offset, 16, &result);
3202 if (!canonical_result.empty())
3203 result.push_back(canonical_result);
3204 return result;
3205}
3206
3207// OutputIterator that records if it was ever assigned to. This
3208// allows it to be used with std::set_intersection() to check for
3209// intersection rather than computing the intersection.
3210struct Check_intersection
3211{
3212 Check_intersection()
3213 : value_(false)
3214 {}
3215
3216 bool had_intersection() const
3217 { return this->value_; }
3218
3219 Check_intersection& operator++()
3220 { return *this; }
3221
3222 Check_intersection& operator*()
3223 { return *this; }
3224
3225 template<typename T>
3226 Check_intersection& operator=(const T&)
3227 {
3228 this->value_ = true;
3229 return *this;
3230 }
3231
3232 private:
3233 bool value_;
3234};
3235
70e654ba 3236// Check candidate_odr_violations_ to find symbols with the same name
71ff8986
ILT
3237// but apparently different definitions (different source-file/line-no
3238// for each line assigned to the first instruction).
70e654ba
ILT
3239
3240void
17a1d0a9
ILT
3241Symbol_table::detect_odr_violations(const Task* task,
3242 const char* output_file_name) const
70e654ba
ILT
3243{
3244 for (Odr_map::const_iterator it = candidate_odr_violations_.begin();
3245 it != candidate_odr_violations_.end();
3246 ++it)
3247 {
71ff8986
ILT
3248 const char* const symbol_name = it->first;
3249
3250 std::string first_object_name;
3251 std::vector<std::string> first_object_linenos;
3252
3253 Unordered_set<Symbol_location, Symbol_location_hash>::const_iterator
3254 locs = it->second.begin();
3255 const Unordered_set<Symbol_location, Symbol_location_hash>::const_iterator
3256 locs_end = it->second.end();
3257 for (; locs != locs_end && first_object_linenos.empty(); ++locs)
70e654ba 3258 {
71ff8986
ILT
3259 // Save the line numbers from the first definition to
3260 // compare to the other definitions. Ideally, we'd compare
3261 // every definition to every other, but we don't want to
3262 // take O(N^2) time to do this. This shortcut may cause
3263 // false negatives that appear or disappear depending on the
3264 // link order, but it won't cause false positives.
3265 first_object_name = locs->object->name();
3266 first_object_linenos = this->linenos_from_loc(task, *locs);
70e654ba
ILT
3267 }
3268
71ff8986
ILT
3269 // Sort by Odr_violation_compare to make std::set_intersection work.
3270 std::sort(first_object_linenos.begin(), first_object_linenos.end(),
3271 Odr_violation_compare());
3272
3273 for (; locs != locs_end; ++locs)
70e654ba 3274 {
71ff8986
ILT
3275 std::vector<std::string> linenos =
3276 this->linenos_from_loc(task, *locs);
3277 // linenos will be empty if we couldn't parse the debug info.
3278 if (linenos.empty())
3279 continue;
3280 // Sort by Odr_violation_compare to make std::set_intersection work.
3281 std::sort(linenos.begin(), linenos.end(), Odr_violation_compare());
3282
3283 Check_intersection intersection_result =
3284 std::set_intersection(first_object_linenos.begin(),
3285 first_object_linenos.end(),
3286 linenos.begin(),
3287 linenos.end(),
3288 Check_intersection(),
3289 Odr_violation_compare());
3290 if (!intersection_result.had_intersection())
3291 {
3292 gold_warning(_("while linking %s: symbol '%s' defined in "
3293 "multiple places (possible ODR violation):"),
3294 output_file_name, demangle(symbol_name).c_str());
3295 // This only prints one location from each definition,
3296 // which may not be the location we expect to intersect
3297 // with another definition. We could print the whole
3298 // set of locations, but that seems too verbose.
3299 gold_assert(!first_object_linenos.empty());
3300 gold_assert(!linenos.empty());
3301 fprintf(stderr, _(" %s from %s\n"),
3302 first_object_linenos[0].c_str(),
3303 first_object_name.c_str());
3304 fprintf(stderr, _(" %s from %s\n"),
3305 linenos[0].c_str(),
3306 locs->object->name().c_str());
3307 // Only print one broken pair, to avoid needing to
3308 // compare against a list of the disjoint definition
3309 // locations we've found so far. (If we kept comparing
3310 // against just the first one, we'd get a lot of
3311 // redundant complaints about the second definition
3312 // location.)
3313 break;
3314 }
70e654ba
ILT
3315 }
3316 }
e4e5049b
CS
3317 // We only call one_addr2line() in this function, so we can clear its cache.
3318 Dwarf_line_info::clear_addr2line_cache();
70e654ba
ILT
3319}
3320
f6ce93d6
ILT
3321// Warnings functions.
3322
3323// Add a new warning.
3324
3325void
2ea97941 3326Warnings::add_warning(Symbol_table* symtab, const char* name, Object* obj,
cb295612 3327 const std::string& warning)
f6ce93d6 3328{
2ea97941
ILT
3329 name = symtab->canonicalize_name(name);
3330 this->warnings_[name].set(obj, warning);
f6ce93d6
ILT
3331}
3332
3333// Look through the warnings and mark the symbols for which we should
3334// warn. This is called during Layout::finalize when we know the
3335// sources for all the symbols.
3336
3337void
cb295612 3338Warnings::note_warnings(Symbol_table* symtab)
f6ce93d6
ILT
3339{
3340 for (Warning_table::iterator p = this->warnings_.begin();
3341 p != this->warnings_.end();
3342 ++p)
3343 {
3344 Symbol* sym = symtab->lookup(p->first, NULL);
3345 if (sym != NULL
3346 && sym->source() == Symbol::FROM_OBJECT
3347 && sym->object() == p->second.object)
cb295612 3348 sym->set_has_warning();
f6ce93d6
ILT
3349 }
3350}
3351
3352// Issue a warning. This is called when we see a relocation against a
3353// symbol for which has a warning.
3354
75f2446e 3355template<int size, bool big_endian>
f6ce93d6 3356void
75f2446e
ILT
3357Warnings::issue_warning(const Symbol* sym,
3358 const Relocate_info<size, big_endian>* relinfo,
3359 size_t relnum, off_t reloffset) const
f6ce93d6 3360{
a3ad94ed 3361 gold_assert(sym->has_warning());
9d3b0698
ILT
3362
3363 // We don't want to issue a warning for a relocation against the
3364 // symbol in the same object file in which the symbol is defined.
3365 if (sym->object() == relinfo->object)
3366 return;
3367
f6ce93d6 3368 Warning_table::const_iterator p = this->warnings_.find(sym->name());
a3ad94ed 3369 gold_assert(p != this->warnings_.end());
75f2446e
ILT
3370 gold_warning_at_location(relinfo, relnum, reloffset,
3371 "%s", p->second.text.c_str());
f6ce93d6
ILT
3372}
3373
14bfc3f5
ILT
3374// Instantiate the templates we need. We could use the configure
3375// script to restrict this to only the ones needed for implemented
3376// targets.
3377
c7912668
ILT
3378#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
3379template
3380void
3381Sized_symbol<32>::allocate_common(Output_data*, Value_type);
3382#endif
3383
3384#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
3385template
3386void
3387Sized_symbol<64>::allocate_common(Output_data*, Value_type);
3388#endif
3389
193a53d9 3390#ifdef HAVE_TARGET_32_LITTLE
14bfc3f5
ILT
3391template
3392void
193a53d9 3393Symbol_table::add_from_relobj<32, false>(
6fa2a40b 3394 Sized_relobj_file<32, false>* relobj,
f6ce93d6 3395 const unsigned char* syms,
14bfc3f5 3396 size_t count,
d491d34e 3397 size_t symndx_offset,
14bfc3f5
ILT
3398 const char* sym_names,
3399 size_t sym_name_size,
6fa2a40b 3400 Sized_relobj_file<32, false>::Symbols* sympointers,
92de84a6 3401 size_t* defined);
193a53d9 3402#endif
14bfc3f5 3403
193a53d9 3404#ifdef HAVE_TARGET_32_BIG
14bfc3f5
ILT
3405template
3406void
193a53d9 3407Symbol_table::add_from_relobj<32, true>(
6fa2a40b 3408 Sized_relobj_file<32, true>* relobj,
f6ce93d6 3409 const unsigned char* syms,
14bfc3f5 3410 size_t count,
d491d34e 3411 size_t symndx_offset,
14bfc3f5
ILT
3412 const char* sym_names,
3413 size_t sym_name_size,
6fa2a40b 3414 Sized_relobj_file<32, true>::Symbols* sympointers,
92de84a6 3415 size_t* defined);
193a53d9 3416#endif
14bfc3f5 3417
193a53d9 3418#ifdef HAVE_TARGET_64_LITTLE
14bfc3f5
ILT
3419template
3420void
193a53d9 3421Symbol_table::add_from_relobj<64, false>(
6fa2a40b 3422 Sized_relobj_file<64, false>* relobj,
f6ce93d6 3423 const unsigned char* syms,
14bfc3f5 3424 size_t count,
d491d34e 3425 size_t symndx_offset,
14bfc3f5
ILT
3426 const char* sym_names,
3427 size_t sym_name_size,
6fa2a40b 3428 Sized_relobj_file<64, false>::Symbols* sympointers,
92de84a6 3429 size_t* defined);
193a53d9 3430#endif
14bfc3f5 3431
193a53d9 3432#ifdef HAVE_TARGET_64_BIG
14bfc3f5
ILT
3433template
3434void
193a53d9 3435Symbol_table::add_from_relobj<64, true>(
6fa2a40b 3436 Sized_relobj_file<64, true>* relobj,
f6ce93d6 3437 const unsigned char* syms,
14bfc3f5 3438 size_t count,
d491d34e 3439 size_t symndx_offset,
14bfc3f5
ILT
3440 const char* sym_names,
3441 size_t sym_name_size,
6fa2a40b 3442 Sized_relobj_file<64, true>::Symbols* sympointers,
92de84a6 3443 size_t* defined);
193a53d9 3444#endif
14bfc3f5 3445
89fc3421
CC
3446#ifdef HAVE_TARGET_32_LITTLE
3447template
3448Symbol*
3449Symbol_table::add_from_pluginobj<32, false>(
3450 Sized_pluginobj<32, false>* obj,
3451 const char* name,
3452 const char* ver,
3453 elfcpp::Sym<32, false>* sym);
3454#endif
3455
3456#ifdef HAVE_TARGET_32_BIG
3457template
3458Symbol*
3459Symbol_table::add_from_pluginobj<32, true>(
3460 Sized_pluginobj<32, true>* obj,
3461 const char* name,
3462 const char* ver,
3463 elfcpp::Sym<32, true>* sym);
3464#endif
3465
3466#ifdef HAVE_TARGET_64_LITTLE
3467template
3468Symbol*
3469Symbol_table::add_from_pluginobj<64, false>(
3470 Sized_pluginobj<64, false>* obj,
3471 const char* name,
3472 const char* ver,
3473 elfcpp::Sym<64, false>* sym);
3474#endif
3475
3476#ifdef HAVE_TARGET_64_BIG
3477template
3478Symbol*
3479Symbol_table::add_from_pluginobj<64, true>(
3480 Sized_pluginobj<64, true>* obj,
3481 const char* name,
3482 const char* ver,
3483 elfcpp::Sym<64, true>* sym);
3484#endif
3485
193a53d9 3486#ifdef HAVE_TARGET_32_LITTLE
dbe717ef
ILT
3487template
3488void
193a53d9
ILT
3489Symbol_table::add_from_dynobj<32, false>(
3490 Sized_dynobj<32, false>* dynobj,
dbe717ef
ILT
3491 const unsigned char* syms,
3492 size_t count,
3493 const char* sym_names,
3494 size_t sym_name_size,
3495 const unsigned char* versym,
3496 size_t versym_size,
92de84a6 3497 const std::vector<const char*>* version_map,
6fa2a40b 3498 Sized_relobj_file<32, false>::Symbols* sympointers,
92de84a6 3499 size_t* defined);
193a53d9 3500#endif
dbe717ef 3501
193a53d9 3502#ifdef HAVE_TARGET_32_BIG
dbe717ef
ILT
3503template
3504void
193a53d9
ILT
3505Symbol_table::add_from_dynobj<32, true>(
3506 Sized_dynobj<32, true>* dynobj,
dbe717ef
ILT
3507 const unsigned char* syms,
3508 size_t count,
3509 const char* sym_names,
3510 size_t sym_name_size,
3511 const unsigned char* versym,
3512 size_t versym_size,
92de84a6 3513 const std::vector<const char*>* version_map,
6fa2a40b 3514 Sized_relobj_file<32, true>::Symbols* sympointers,
92de84a6 3515 size_t* defined);
193a53d9 3516#endif
dbe717ef 3517
193a53d9 3518#ifdef HAVE_TARGET_64_LITTLE
dbe717ef
ILT
3519template
3520void
193a53d9
ILT
3521Symbol_table::add_from_dynobj<64, false>(
3522 Sized_dynobj<64, false>* dynobj,
dbe717ef
ILT
3523 const unsigned char* syms,
3524 size_t count,
3525 const char* sym_names,
3526 size_t sym_name_size,
3527 const unsigned char* versym,
3528 size_t versym_size,
92de84a6 3529 const std::vector<const char*>* version_map,
6fa2a40b 3530 Sized_relobj_file<64, false>::Symbols* sympointers,
92de84a6 3531 size_t* defined);
193a53d9 3532#endif
dbe717ef 3533
193a53d9 3534#ifdef HAVE_TARGET_64_BIG
dbe717ef
ILT
3535template
3536void
193a53d9
ILT
3537Symbol_table::add_from_dynobj<64, true>(
3538 Sized_dynobj<64, true>* dynobj,
dbe717ef
ILT
3539 const unsigned char* syms,
3540 size_t count,
3541 const char* sym_names,
3542 size_t sym_name_size,
3543 const unsigned char* versym,
3544 size_t versym_size,
92de84a6 3545 const std::vector<const char*>* version_map,
6fa2a40b 3546 Sized_relobj_file<64, true>::Symbols* sympointers,
92de84a6 3547 size_t* defined);
193a53d9 3548#endif
dbe717ef 3549
cdc29364
CC
3550#ifdef HAVE_TARGET_32_LITTLE
3551template
26d3c67d 3552Sized_symbol<32>*
cdc29364
CC
3553Symbol_table::add_from_incrobj(
3554 Object* obj,
3555 const char* name,
3556 const char* ver,
3557 elfcpp::Sym<32, false>* sym);
3558#endif
3559
3560#ifdef HAVE_TARGET_32_BIG
3561template
26d3c67d 3562Sized_symbol<32>*
cdc29364
CC
3563Symbol_table::add_from_incrobj(
3564 Object* obj,
3565 const char* name,
3566 const char* ver,
3567 elfcpp::Sym<32, true>* sym);
3568#endif
3569
3570#ifdef HAVE_TARGET_64_LITTLE
3571template
26d3c67d 3572Sized_symbol<64>*
cdc29364
CC
3573Symbol_table::add_from_incrobj(
3574 Object* obj,
3575 const char* name,
3576 const char* ver,
3577 elfcpp::Sym<64, false>* sym);
3578#endif
3579
3580#ifdef HAVE_TARGET_64_BIG
3581template
26d3c67d 3582Sized_symbol<64>*
cdc29364
CC
3583Symbol_table::add_from_incrobj(
3584 Object* obj,
3585 const char* name,
3586 const char* ver,
3587 elfcpp::Sym<64, true>* sym);
3588#endif
3589
46fe1623
ILT
3590#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
3591template
3592void
fe8718a4 3593Symbol_table::define_with_copy_reloc<32>(
fe8718a4
ILT
3594 Sized_symbol<32>* sym,
3595 Output_data* posd,
2ea97941 3596 elfcpp::Elf_types<32>::Elf_Addr value);
46fe1623
ILT
3597#endif
3598
3599#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
3600template
3601void
fe8718a4 3602Symbol_table::define_with_copy_reloc<64>(
fe8718a4
ILT
3603 Sized_symbol<64>* sym,
3604 Output_data* posd,
2ea97941 3605 elfcpp::Elf_types<64>::Elf_Addr value);
46fe1623
ILT
3606#endif
3607
75f2446e
ILT
3608#ifdef HAVE_TARGET_32_LITTLE
3609template
3610void
3611Warnings::issue_warning<32, false>(const Symbol* sym,
3612 const Relocate_info<32, false>* relinfo,
3613 size_t relnum, off_t reloffset) const;
3614#endif
3615
3616#ifdef HAVE_TARGET_32_BIG
3617template
3618void
3619Warnings::issue_warning<32, true>(const Symbol* sym,
3620 const Relocate_info<32, true>* relinfo,
3621 size_t relnum, off_t reloffset) const;
3622#endif
3623
3624#ifdef HAVE_TARGET_64_LITTLE
3625template
3626void
3627Warnings::issue_warning<64, false>(const Symbol* sym,
3628 const Relocate_info<64, false>* relinfo,
3629 size_t relnum, off_t reloffset) const;
3630#endif
3631
3632#ifdef HAVE_TARGET_64_BIG
3633template
3634void
3635Warnings::issue_warning<64, true>(const Symbol* sym,
3636 const Relocate_info<64, true>* relinfo,
3637 size_t relnum, off_t reloffset) const;
3638#endif
3639
14bfc3f5 3640} // End namespace gold.
This page took 0.48461 seconds and 4 git commands to generate.