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