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