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