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