Fix GDB breakage due to addition of new nios2 mach types in BFD.
[deliverable/binutils-gdb.git] / gold / object.cc
CommitLineData
bae7f79e
ILT
1// object.cc -- support for an object file for linking in gold
2
b90efa5b 3// Copyright (C) 2006-2015 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
bae7f79e
ILT
23#include "gold.h"
24
25#include <cerrno>
26#include <cstring>
645f8123 27#include <cstdarg>
a2b1aa12 28#include "demangle.h"
9a2d6984 29#include "libiberty.h"
bae7f79e 30
6d03d481 31#include "gc.h"
14bfc3f5 32#include "target-select.h"
5c2c6c95 33#include "dwarf_reader.h"
a2fb1b05 34#include "layout.h"
61ba1cf9 35#include "output.h"
f6ce93d6 36#include "symtab.h"
92de84a6 37#include "cref.h"
4c50553d 38#include "reloc.h"
f6ce93d6
ILT
39#include "object.h"
40#include "dynobj.h"
5995b570 41#include "plugin.h"
a2e47362 42#include "compressed_output.h"
09ec0418 43#include "incremental.h"
dbe40a88 44#include "merge.h"
bae7f79e
ILT
45
46namespace gold
47{
48
00698fc5
CC
49// Struct Read_symbols_data.
50
d2d60eef
CC
51// Destroy any remaining File_view objects and buffers of decompressed
52// sections.
00698fc5
CC
53
54Read_symbols_data::~Read_symbols_data()
55{
56 if (this->section_headers != NULL)
57 delete this->section_headers;
58 if (this->section_names != NULL)
59 delete this->section_names;
60 if (this->symbols != NULL)
61 delete this->symbols;
62 if (this->symbol_names != NULL)
63 delete this->symbol_names;
64 if (this->versym != NULL)
65 delete this->versym;
66 if (this->verdef != NULL)
67 delete this->verdef;
68 if (this->verneed != NULL)
69 delete this->verneed;
70}
71
d491d34e
ILT
72// Class Xindex.
73
74// Initialize the symtab_xindex_ array. Find the SHT_SYMTAB_SHNDX
75// section and read it in. SYMTAB_SHNDX is the index of the symbol
76// table we care about.
77
78template<int size, bool big_endian>
79void
2ea97941 80Xindex::initialize_symtab_xindex(Object* object, unsigned int symtab_shndx)
d491d34e
ILT
81{
82 if (!this->symtab_xindex_.empty())
83 return;
84
2ea97941 85 gold_assert(symtab_shndx != 0);
d491d34e
ILT
86
87 // Look through the sections in reverse order, on the theory that it
88 // is more likely to be near the end than the beginning.
89 unsigned int i = object->shnum();
90 while (i > 0)
91 {
92 --i;
93 if (object->section_type(i) == elfcpp::SHT_SYMTAB_SHNDX
2ea97941 94 && this->adjust_shndx(object->section_link(i)) == symtab_shndx)
d491d34e
ILT
95 {
96 this->read_symtab_xindex<size, big_endian>(object, i, NULL);
97 return;
98 }
99 }
100
101 object->error(_("missing SHT_SYMTAB_SHNDX section"));
102}
103
104// Read in the symtab_xindex_ array, given the section index of the
105// SHT_SYMTAB_SHNDX section. If PSHDRS is not NULL, it points at the
106// section headers.
107
108template<int size, bool big_endian>
109void
110Xindex::read_symtab_xindex(Object* object, unsigned int xindex_shndx,
111 const unsigned char* pshdrs)
112{
113 section_size_type bytecount;
114 const unsigned char* contents;
115 if (pshdrs == NULL)
116 contents = object->section_contents(xindex_shndx, &bytecount, false);
117 else
118 {
119 const unsigned char* p = (pshdrs
120 + (xindex_shndx
121 * elfcpp::Elf_sizes<size>::shdr_size));
122 typename elfcpp::Shdr<size, big_endian> shdr(p);
123 bytecount = convert_to_section_size_type(shdr.get_sh_size());
124 contents = object->get_view(shdr.get_sh_offset(), bytecount, true, false);
125 }
126
127 gold_assert(this->symtab_xindex_.empty());
128 this->symtab_xindex_.reserve(bytecount / 4);
129 for (section_size_type i = 0; i < bytecount; i += 4)
130 {
131 unsigned int shndx = elfcpp::Swap<32, big_endian>::readval(contents + i);
132 // We preadjust the section indexes we save.
133 this->symtab_xindex_.push_back(this->adjust_shndx(shndx));
134 }
135}
136
137// Symbol symndx has a section of SHN_XINDEX; return the real section
138// index.
139
140unsigned int
141Xindex::sym_xindex_to_shndx(Object* object, unsigned int symndx)
142{
143 if (symndx >= this->symtab_xindex_.size())
144 {
145 object->error(_("symbol %u out of range for SHT_SYMTAB_SHNDX section"),
146 symndx);
147 return elfcpp::SHN_UNDEF;
148 }
149 unsigned int shndx = this->symtab_xindex_[symndx];
150 if (shndx < elfcpp::SHN_LORESERVE || shndx >= object->shnum())
151 {
152 object->error(_("extended index for symbol %u out of range: %u"),
153 symndx, shndx);
154 return elfcpp::SHN_UNDEF;
155 }
156 return shndx;
157}
158
645f8123
ILT
159// Class Object.
160
75f2446e
ILT
161// Report an error for this object file. This is used by the
162// elfcpp::Elf_file interface, and also called by the Object code
163// itself.
645f8123
ILT
164
165void
75f2446e 166Object::error(const char* format, ...) const
645f8123
ILT
167{
168 va_list args;
645f8123 169 va_start(args, format);
75f2446e
ILT
170 char* buf = NULL;
171 if (vasprintf(&buf, format, args) < 0)
172 gold_nomem();
645f8123 173 va_end(args);
75f2446e
ILT
174 gold_error(_("%s: %s"), this->name().c_str(), buf);
175 free(buf);
645f8123
ILT
176}
177
178// Return a view of the contents of a section.
179
180const unsigned char*
8383303e
ILT
181Object::section_contents(unsigned int shndx, section_size_type* plen,
182 bool cache)
c1027032 183{ return this->do_section_contents(shndx, plen, cache); }
645f8123 184
6fa2a40b 185// Read the section data into SD. This is code common to Sized_relobj_file
dbe717ef
ILT
186// and Sized_dynobj, so we put it into Object.
187
188template<int size, bool big_endian>
189void
190Object::read_section_data(elfcpp::Elf_file<size, big_endian, Object>* elf_file,
191 Read_symbols_data* sd)
192{
193 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
194
195 // Read the section headers.
196 const off_t shoff = elf_file->shoff();
2ea97941
ILT
197 const unsigned int shnum = this->shnum();
198 sd->section_headers = this->get_lasting_view(shoff, shnum * shdr_size,
39d0cb0e 199 true, true);
dbe717ef
ILT
200
201 // Read the section names.
202 const unsigned char* pshdrs = sd->section_headers->data();
203 const unsigned char* pshdrnames = pshdrs + elf_file->shstrndx() * shdr_size;
204 typename elfcpp::Shdr<size, big_endian> shdrnames(pshdrnames);
205
206 if (shdrnames.get_sh_type() != elfcpp::SHT_STRTAB)
75f2446e
ILT
207 this->error(_("section name section has wrong type: %u"),
208 static_cast<unsigned int>(shdrnames.get_sh_type()));
dbe717ef 209
8383303e
ILT
210 sd->section_names_size =
211 convert_to_section_size_type(shdrnames.get_sh_size());
dbe717ef 212 sd->section_names = this->get_lasting_view(shdrnames.get_sh_offset(),
39d0cb0e
ILT
213 sd->section_names_size, false,
214 false);
dbe717ef
ILT
215}
216
2ea97941 217// If NAME is the name of a special .gnu.warning section, arrange for
dbe717ef
ILT
218// the warning to be issued. SHNDX is the section index. Return
219// whether it is a warning section.
220
221bool
2ea97941 222Object::handle_gnu_warning_section(const char* name, unsigned int shndx,
dbe717ef
ILT
223 Symbol_table* symtab)
224{
225 const char warn_prefix[] = ".gnu.warning.";
226 const int warn_prefix_len = sizeof warn_prefix - 1;
2ea97941 227 if (strncmp(name, warn_prefix, warn_prefix_len) == 0)
dbe717ef 228 {
cb295612
ILT
229 // Read the section contents to get the warning text. It would
230 // be nicer if we only did this if we have to actually issue a
231 // warning. Unfortunately, warnings are issued as we relocate
232 // sections. That means that we can not lock the object then,
233 // as we might try to issue the same warning multiple times
234 // simultaneously.
235 section_size_type len;
236 const unsigned char* contents = this->section_contents(shndx, &len,
237 false);
8d63875c
ILT
238 if (len == 0)
239 {
2ea97941 240 const char* warning = name + warn_prefix_len;
8d63875c
ILT
241 contents = reinterpret_cast<const unsigned char*>(warning);
242 len = strlen(warning);
243 }
cb295612 244 std::string warning(reinterpret_cast<const char*>(contents), len);
2ea97941 245 symtab->add_warning(name + warn_prefix_len, this, warning);
dbe717ef
ILT
246 return true;
247 }
248 return false;
249}
250
2ea97941 251// If NAME is the name of the special section which indicates that
9b547ce6 252// this object was compiled with -fsplit-stack, mark it accordingly.
364c7fa5
ILT
253
254bool
2ea97941 255Object::handle_split_stack_section(const char* name)
364c7fa5 256{
2ea97941 257 if (strcmp(name, ".note.GNU-split-stack") == 0)
364c7fa5
ILT
258 {
259 this->uses_split_stack_ = true;
260 return true;
261 }
2ea97941 262 if (strcmp(name, ".note.GNU-no-split-stack") == 0)
364c7fa5
ILT
263 {
264 this->has_no_split_stack_ = true;
265 return true;
266 }
267 return false;
268}
269
6d03d481
ST
270// Class Relobj
271
dbe40a88
RÁE
272template<int size>
273void
274Relobj::initialize_input_to_output_map(unsigned int shndx,
275 typename elfcpp::Elf_types<size>::Elf_Addr starting_address,
276 Unordered_map<section_offset_type,
277 typename elfcpp::Elf_types<size>::Elf_Addr>* output_addresses) const {
278 Object_merge_map *map = this->object_merge_map_;
279 map->initialize_input_to_output_map<size>(shndx, starting_address,
280 output_addresses);
281}
282
283void
284Relobj::add_merge_mapping(Output_section_data *output_data,
285 unsigned int shndx, section_offset_type offset,
286 section_size_type length,
287 section_offset_type output_offset) {
0916f9e7
RÁE
288 Object_merge_map* object_merge_map = this->get_or_create_merge_map();
289 object_merge_map->add_mapping(output_data, shndx, offset, length, output_offset);
dbe40a88
RÁE
290}
291
292bool
293Relobj::merge_output_offset(unsigned int shndx, section_offset_type offset,
294 section_offset_type *poutput) const {
295 Object_merge_map* object_merge_map = this->object_merge_map_;
296 if (object_merge_map == NULL)
297 return false;
298 return object_merge_map->get_output_offset(shndx, offset, poutput);
299}
300
67f95b96
RÁE
301const Output_section_data*
302Relobj::find_merge_section(unsigned int shndx) const {
dbe40a88
RÁE
303 Object_merge_map* object_merge_map = this->object_merge_map_;
304 if (object_merge_map == NULL)
67f95b96
RÁE
305 return NULL;
306 return object_merge_map->find_merge_section(shndx);
dbe40a88
RÁE
307}
308
6d03d481 309// To copy the symbols data read from the file to a local data structure.
2e702c99 310// This function is called from do_layout only while doing garbage
6d03d481
ST
311// collection.
312
313void
2e702c99
RM
314Relobj::copy_symbols_data(Symbols_data* gc_sd, Read_symbols_data* sd,
315 unsigned int section_header_size)
6d03d481 316{
2e702c99
RM
317 gc_sd->section_headers_data =
318 new unsigned char[(section_header_size)];
6d03d481 319 memcpy(gc_sd->section_headers_data, sd->section_headers->data(),
2e702c99
RM
320 section_header_size);
321 gc_sd->section_names_data =
322 new unsigned char[sd->section_names_size];
6d03d481 323 memcpy(gc_sd->section_names_data, sd->section_names->data(),
2e702c99 324 sd->section_names_size);
6d03d481
ST
325 gc_sd->section_names_size = sd->section_names_size;
326 if (sd->symbols != NULL)
327 {
2e702c99
RM
328 gc_sd->symbols_data =
329 new unsigned char[sd->symbols_size];
6d03d481 330 memcpy(gc_sd->symbols_data, sd->symbols->data(),
2e702c99 331 sd->symbols_size);
6d03d481
ST
332 }
333 else
334 {
335 gc_sd->symbols_data = NULL;
336 }
337 gc_sd->symbols_size = sd->symbols_size;
338 gc_sd->external_symbols_offset = sd->external_symbols_offset;
339 if (sd->symbol_names != NULL)
340 {
341 gc_sd->symbol_names_data =
2e702c99 342 new unsigned char[sd->symbol_names_size];
6d03d481 343 memcpy(gc_sd->symbol_names_data, sd->symbol_names->data(),
2e702c99 344 sd->symbol_names_size);
6d03d481
ST
345 }
346 else
347 {
348 gc_sd->symbol_names_data = NULL;
349 }
350 gc_sd->symbol_names_size = sd->symbol_names_size;
351}
352
353// This function determines if a particular section name must be included
354// in the link. This is used during garbage collection to determine the
355// roots of the worklist.
356
357bool
2ea97941 358Relobj::is_section_name_included(const char* name)
6d03d481 359{
2e702c99
RM
360 if (is_prefix_of(".ctors", name)
361 || is_prefix_of(".dtors", name)
362 || is_prefix_of(".note", name)
363 || is_prefix_of(".init", name)
364 || is_prefix_of(".fini", name)
365 || is_prefix_of(".gcc_except_table", name)
366 || is_prefix_of(".jcr", name)
367 || is_prefix_of(".preinit_array", name)
368 || (is_prefix_of(".text", name)
369 && strstr(name, "personality"))
370 || (is_prefix_of(".data", name)
1698990d
AM
371 && strstr(name, "personality"))
372 || (is_prefix_of(".sdata", name)
373 && strstr(name, "personality"))
fa618ee4 374 || (is_prefix_of(".gnu.linkonce.d", name)
5ad9b0a7
ST
375 && strstr(name, "personality"))
376 || (is_prefix_of(".rodata", name)
377 && strstr(name, "nptl_version")))
6d03d481 378 {
2e702c99 379 return true;
6d03d481
ST
380 }
381 return false;
382}
383
09ec0418
CC
384// Finalize the incremental relocation information. Allocates a block
385// of relocation entries for each symbol, and sets the reloc_bases_
cdc29364
CC
386// array to point to the first entry in each block. If CLEAR_COUNTS
387// is TRUE, also clear the per-symbol relocation counters.
09ec0418
CC
388
389void
cdc29364 390Relobj::finalize_incremental_relocs(Layout* layout, bool clear_counts)
09ec0418
CC
391{
392 unsigned int nsyms = this->get_global_symbols()->size();
393 this->reloc_bases_ = new unsigned int[nsyms];
394
395 gold_assert(this->reloc_bases_ != NULL);
396 gold_assert(layout->incremental_inputs() != NULL);
397
398 unsigned int rindex = layout->incremental_inputs()->get_reloc_count();
399 for (unsigned int i = 0; i < nsyms; ++i)
400 {
401 this->reloc_bases_[i] = rindex;
402 rindex += this->reloc_counts_[i];
cdc29364
CC
403 if (clear_counts)
404 this->reloc_counts_[i] = 0;
09ec0418
CC
405 }
406 layout->incremental_inputs()->set_reloc_count(rindex);
407}
408
0916f9e7
RÁE
409Object_merge_map*
410Relobj::get_or_create_merge_map()
411{
412 if (!this->object_merge_map_)
413 this->object_merge_map_ = new Object_merge_map();
414 return this->object_merge_map_;
415}
416
f6ce93d6 417// Class Sized_relobj.
bae7f79e 418
6fa2a40b
CC
419// Iterate over local symbols, calling a visitor class V for each GOT offset
420// associated with a local symbol.
421
bae7f79e 422template<int size, bool big_endian>
6fa2a40b
CC
423void
424Sized_relobj<size, big_endian>::do_for_all_local_got_entries(
425 Got_offset_list::Visitor* v) const
426{
427 unsigned int nsyms = this->local_symbol_count();
428 for (unsigned int i = 0; i < nsyms; i++)
429 {
430 Local_got_offsets::const_iterator p = this->local_got_offsets_.find(i);
431 if (p != this->local_got_offsets_.end())
432 {
433 const Got_offset_list* got_offsets = p->second;
434 got_offsets->for_all_got_offsets(v);
435 }
436 }
437}
438
c6905c28
CC
439// Get the address of an output section.
440
441template<int size, bool big_endian>
442uint64_t
443Sized_relobj<size, big_endian>::do_output_section_address(
444 unsigned int shndx)
445{
446 // If the input file is linked as --just-symbols, the output
447 // section address is the input section address.
448 if (this->just_symbols())
449 return this->section_address(shndx);
450
451 const Output_section* os = this->do_output_section(shndx);
452 gold_assert(os != NULL);
453 return os->address();
454}
455
6fa2a40b
CC
456// Class Sized_relobj_file.
457
458template<int size, bool big_endian>
459Sized_relobj_file<size, big_endian>::Sized_relobj_file(
2ea97941
ILT
460 const std::string& name,
461 Input_file* input_file,
462 off_t offset,
bae7f79e 463 const elfcpp::Ehdr<size, big_endian>& ehdr)
6fa2a40b 464 : Sized_relobj<size, big_endian>(name, input_file, offset),
645f8123 465 elf_file_(this, ehdr),
dbe717ef 466 symtab_shndx_(-1U),
61ba1cf9
ILT
467 local_symbol_count_(0),
468 output_local_symbol_count_(0),
7bf1f802 469 output_local_dynsym_count_(0),
730cdc88 470 symbols_(),
92de84a6 471 defined_count_(0),
61ba1cf9 472 local_symbol_offset_(0),
7bf1f802 473 local_dynsym_offset_(0),
e727fa71 474 local_values_(),
7223e9ca 475 local_plt_offsets_(),
ef9beddf 476 kept_comdat_sections_(),
805bb01c 477 has_eh_frame_(false),
a2e47362 478 discarded_eh_frame_shndx_(-1U),
c924eb67 479 is_deferred_layout_(false),
a2e47362 480 deferred_layout_(),
0d5bbdb0 481 deferred_layout_relocs_()
bae7f79e 482{
9590bf25 483 this->e_type_ = ehdr.get_e_type();
bae7f79e
ILT
484}
485
486template<int size, bool big_endian>
6fa2a40b 487Sized_relobj_file<size, big_endian>::~Sized_relobj_file()
bae7f79e
ILT
488{
489}
490
645f8123 491// Set up an object file based on the file header. This sets up the
029ba973 492// section information.
bae7f79e
ILT
493
494template<int size, bool big_endian>
495void
6fa2a40b 496Sized_relobj_file<size, big_endian>::do_setup()
bae7f79e 497{
2ea97941
ILT
498 const unsigned int shnum = this->elf_file_.shnum();
499 this->set_shnum(shnum);
dbe717ef 500}
12e14209 501
dbe717ef
ILT
502// Find the SHT_SYMTAB section, given the section headers. The ELF
503// standard says that maybe in the future there can be more than one
504// SHT_SYMTAB section. Until somebody figures out how that could
505// work, we assume there is only one.
12e14209 506
dbe717ef
ILT
507template<int size, bool big_endian>
508void
6fa2a40b 509Sized_relobj_file<size, big_endian>::find_symtab(const unsigned char* pshdrs)
dbe717ef 510{
2ea97941 511 const unsigned int shnum = this->shnum();
dbe717ef 512 this->symtab_shndx_ = 0;
2ea97941 513 if (shnum > 0)
bae7f79e 514 {
dbe717ef
ILT
515 // Look through the sections in reverse order, since gas tends
516 // to put the symbol table at the end.
2ea97941
ILT
517 const unsigned char* p = pshdrs + shnum * This::shdr_size;
518 unsigned int i = shnum;
d491d34e
ILT
519 unsigned int xindex_shndx = 0;
520 unsigned int xindex_link = 0;
dbe717ef 521 while (i > 0)
bae7f79e 522 {
dbe717ef
ILT
523 --i;
524 p -= This::shdr_size;
525 typename This::Shdr shdr(p);
526 if (shdr.get_sh_type() == elfcpp::SHT_SYMTAB)
527 {
528 this->symtab_shndx_ = i;
d491d34e
ILT
529 if (xindex_shndx > 0 && xindex_link == i)
530 {
531 Xindex* xindex =
532 new Xindex(this->elf_file_.large_shndx_offset());
533 xindex->read_symtab_xindex<size, big_endian>(this,
534 xindex_shndx,
535 pshdrs);
536 this->set_xindex(xindex);
537 }
dbe717ef
ILT
538 break;
539 }
d491d34e
ILT
540
541 // Try to pick up the SHT_SYMTAB_SHNDX section, if there is
542 // one. This will work if it follows the SHT_SYMTAB
543 // section.
544 if (shdr.get_sh_type() == elfcpp::SHT_SYMTAB_SHNDX)
545 {
546 xindex_shndx = i;
547 xindex_link = this->adjust_shndx(shdr.get_sh_link());
548 }
bae7f79e 549 }
bae7f79e
ILT
550 }
551}
552
d491d34e
ILT
553// Return the Xindex structure to use for object with lots of
554// sections.
555
556template<int size, bool big_endian>
557Xindex*
6fa2a40b 558Sized_relobj_file<size, big_endian>::do_initialize_xindex()
d491d34e
ILT
559{
560 gold_assert(this->symtab_shndx_ != -1U);
561 Xindex* xindex = new Xindex(this->elf_file_.large_shndx_offset());
562 xindex->initialize_symtab_xindex<size, big_endian>(this, this->symtab_shndx_);
563 return xindex;
564}
565
730cdc88
ILT
566// Return whether SHDR has the right type and flags to be a GNU
567// .eh_frame section.
568
569template<int size, bool big_endian>
570bool
6fa2a40b 571Sized_relobj_file<size, big_endian>::check_eh_frame_flags(
730cdc88
ILT
572 const elfcpp::Shdr<size, big_endian>* shdr) const
573{
4d5e4e62
ILT
574 elfcpp::Elf_Word sh_type = shdr->get_sh_type();
575 return ((sh_type == elfcpp::SHT_PROGBITS
576 || sh_type == elfcpp::SHT_X86_64_UNWIND)
1650c4ff 577 && (shdr->get_sh_flags() & elfcpp::SHF_ALLOC) != 0);
730cdc88
ILT
578}
579
cf43a2fe
AM
580// Find the section header with the given name.
581
582template<int size, bool big_endian>
583const unsigned char*
dc3714f3 584Object::find_shdr(
cf43a2fe
AM
585 const unsigned char* pshdrs,
586 const char* name,
587 const char* names,
588 section_size_type names_size,
589 const unsigned char* hdr) const
590{
dc3714f3 591 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
cf43a2fe 592 const unsigned int shnum = this->shnum();
dc3714f3 593 const unsigned char* hdr_end = pshdrs + shdr_size * shnum;
cf43a2fe
AM
594 size_t sh_name = 0;
595
596 while (1)
597 {
598 if (hdr)
599 {
600 // We found HDR last time we were called, continue looking.
dc3714f3 601 typename elfcpp::Shdr<size, big_endian> shdr(hdr);
cf43a2fe
AM
602 sh_name = shdr.get_sh_name();
603 }
604 else
605 {
606 // Look for the next occurrence of NAME in NAMES.
607 // The fact that .shstrtab produced by current GNU tools is
608 // string merged means we shouldn't have both .not.foo and
609 // .foo in .shstrtab, and multiple .foo sections should all
610 // have the same sh_name. However, this is not guaranteed
611 // by the ELF spec and not all ELF object file producers may
612 // be so clever.
613 size_t len = strlen(name) + 1;
614 const char *p = sh_name ? names + sh_name + len : names;
615 p = reinterpret_cast<const char*>(memmem(p, names_size - (p - names),
616 name, len));
617 if (p == NULL)
618 return NULL;
619 sh_name = p - names;
620 hdr = pshdrs;
621 if (sh_name == 0)
622 return hdr;
623 }
624
dc3714f3 625 hdr += shdr_size;
cf43a2fe
AM
626 while (hdr < hdr_end)
627 {
dc3714f3 628 typename elfcpp::Shdr<size, big_endian> shdr(hdr);
cf43a2fe
AM
629 if (shdr.get_sh_name() == sh_name)
630 return hdr;
dc3714f3 631 hdr += shdr_size;
cf43a2fe
AM
632 }
633 hdr = NULL;
634 if (sh_name == 0)
635 return hdr;
636 }
637}
638
730cdc88
ILT
639// Return whether there is a GNU .eh_frame section, given the section
640// headers and the section names.
641
642template<int size, bool big_endian>
643bool
6fa2a40b 644Sized_relobj_file<size, big_endian>::find_eh_frame(
8383303e
ILT
645 const unsigned char* pshdrs,
646 const char* names,
647 section_size_type names_size) const
730cdc88 648{
cf43a2fe
AM
649 const unsigned char* s = NULL;
650
651 while (1)
730cdc88 652 {
dc3714f3
AM
653 s = this->template find_shdr<size, big_endian>(pshdrs, ".eh_frame",
654 names, names_size, s);
cf43a2fe
AM
655 if (s == NULL)
656 return false;
730cdc88 657
cf43a2fe
AM
658 typename This::Shdr shdr(s);
659 if (this->check_eh_frame_flags(&shdr))
660 return true;
730cdc88 661 }
730cdc88
ILT
662}
663
5dd8762a 664// Return TRUE if this is a section whose contents will be needed in the
c1027032
CC
665// Add_symbols task. This function is only called for sections that have
666// already passed the test in is_compressed_debug_section(), so we know
667// that the section name begins with ".zdebug".
5dd8762a
CC
668
669static bool
670need_decompressed_section(const char* name)
671{
c1027032
CC
672 // Skip over the ".zdebug" and a quick check for the "_".
673 name += 7;
674 if (*name++ != '_')
675 return false;
676
677#ifdef ENABLE_THREADS
678 // Decompressing these sections now will help only if we're
679 // multithreaded.
680 if (parameters->options().threads())
681 {
682 // We will need .zdebug_str if this is not an incremental link
683 // (i.e., we are processing string merge sections) or if we need
684 // to build a gdb index.
685 if ((!parameters->incremental() || parameters->options().gdb_index())
686 && strcmp(name, "str") == 0)
687 return true;
688
689 // We will need these other sections when building a gdb index.
690 if (parameters->options().gdb_index()
691 && (strcmp(name, "info") == 0
692 || strcmp(name, "types") == 0
693 || strcmp(name, "pubnames") == 0
694 || strcmp(name, "pubtypes") == 0
695 || strcmp(name, "ranges") == 0
696 || strcmp(name, "abbrev") == 0))
697 return true;
698 }
699#endif
700
701 // Even when single-threaded, we will need .zdebug_str if this is
702 // not an incremental link and we are building a gdb index.
703 // Otherwise, we would decompress the section twice: once for
704 // string merge processing, and once for building the gdb index.
705 if (!parameters->incremental()
706 && parameters->options().gdb_index()
707 && strcmp(name, "str") == 0)
5dd8762a
CC
708 return true;
709
710 return false;
711}
712
a2e47362 713// Build a table for any compressed debug sections, mapping each section index
5dd8762a 714// to the uncompressed size and (if needed) the decompressed contents.
a2e47362
CC
715
716template<int size, bool big_endian>
717Compressed_section_map*
718build_compressed_section_map(
719 const unsigned char* pshdrs,
720 unsigned int shnum,
721 const char* names,
722 section_size_type names_size,
0d5bbdb0
CC
723 Object* obj,
724 bool decompress_if_needed)
a2e47362 725{
5dd8762a 726 Compressed_section_map* uncompressed_map = new Compressed_section_map();
a2e47362
CC
727 const unsigned int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
728 const unsigned char* p = pshdrs + shdr_size;
5dd8762a 729
a2e47362
CC
730 for (unsigned int i = 1; i < shnum; ++i, p += shdr_size)
731 {
732 typename elfcpp::Shdr<size, big_endian> shdr(p);
733 if (shdr.get_sh_type() == elfcpp::SHT_PROGBITS
734 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
735 {
736 if (shdr.get_sh_name() >= names_size)
737 {
738 obj->error(_("bad section name offset for section %u: %lu"),
739 i, static_cast<unsigned long>(shdr.get_sh_name()));
740 continue;
741 }
742
743 const char* name = names + shdr.get_sh_name();
744 if (is_compressed_debug_section(name))
745 {
746 section_size_type len;
747 const unsigned char* contents =
748 obj->section_contents(i, &len, false);
749 uint64_t uncompressed_size = get_uncompressed_size(contents, len);
c1027032
CC
750 Compressed_section_info info;
751 info.size = convert_to_section_size_type(uncompressed_size);
752 info.contents = NULL;
a2e47362 753 if (uncompressed_size != -1ULL)
5dd8762a 754 {
c1027032 755 unsigned char* uncompressed_data = NULL;
0d5bbdb0 756 if (decompress_if_needed && need_decompressed_section(name))
5dd8762a 757 {
c1027032
CC
758 uncompressed_data = new unsigned char[uncompressed_size];
759 if (decompress_input_section(contents, len,
760 uncompressed_data,
761 uncompressed_size))
762 info.contents = uncompressed_data;
763 else
764 delete[] uncompressed_data;
5dd8762a 765 }
5dd8762a
CC
766 (*uncompressed_map)[i] = info;
767 }
a2e47362
CC
768 }
769 }
770 }
5dd8762a 771 return uncompressed_map;
a2e47362
CC
772}
773
cf43a2fe
AM
774// Stash away info for a number of special sections.
775// Return true if any of the sections found require local symbols to be read.
776
777template<int size, bool big_endian>
778bool
779Sized_relobj_file<size, big_endian>::do_find_special_sections(
780 Read_symbols_data* sd)
781{
782 const unsigned char* const pshdrs = sd->section_headers->data();
783 const unsigned char* namesu = sd->section_names->data();
784 const char* names = reinterpret_cast<const char*>(namesu);
785
786 if (this->find_eh_frame(pshdrs, names, sd->section_names_size))
787 this->has_eh_frame_ = true;
788
789 if (memmem(names, sd->section_names_size, ".zdebug_", 8) != NULL)
0d5bbdb0
CC
790 {
791 Compressed_section_map* compressed_sections =
792 build_compressed_section_map<size, big_endian>(
793 pshdrs, this->shnum(), names, sd->section_names_size, this, true);
794 if (compressed_sections != NULL)
795 this->set_compressed_sections(compressed_sections);
796 }
797
cf43a2fe
AM
798 return (this->has_eh_frame_
799 || (!parameters->options().relocatable()
800 && parameters->options().gdb_index()
801 && (memmem(names, sd->section_names_size, "debug_info", 12) == 0
802 || memmem(names, sd->section_names_size, "debug_types",
803 13) == 0)));
804}
805
12e14209 806// Read the sections and symbols from an object file.
bae7f79e
ILT
807
808template<int size, bool big_endian>
12e14209 809void
6fa2a40b 810Sized_relobj_file<size, big_endian>::do_read_symbols(Read_symbols_data* sd)
f35c4853
CC
811{
812 this->base_read_symbols(sd);
813}
814
815// Read the sections and symbols from an object file. This is common
816// code for all target-specific overrides of do_read_symbols().
817
818template<int size, bool big_endian>
819void
820Sized_relobj_file<size, big_endian>::base_read_symbols(Read_symbols_data* sd)
bae7f79e 821{
dbe717ef 822 this->read_section_data(&this->elf_file_, sd);
12e14209 823
dbe717ef
ILT
824 const unsigned char* const pshdrs = sd->section_headers->data();
825
826 this->find_symtab(pshdrs);
12e14209 827
cf43a2fe 828 bool need_local_symbols = this->do_find_special_sections(sd);
c1027032 829
75f2446e
ILT
830 sd->symbols = NULL;
831 sd->symbols_size = 0;
730cdc88 832 sd->external_symbols_offset = 0;
75f2446e
ILT
833 sd->symbol_names = NULL;
834 sd->symbol_names_size = 0;
835
645f8123 836 if (this->symtab_shndx_ == 0)
bae7f79e
ILT
837 {
838 // No symbol table. Weird but legal.
12e14209 839 return;
bae7f79e
ILT
840 }
841
12e14209
ILT
842 // Get the symbol table section header.
843 typename This::Shdr symtabshdr(pshdrs
645f8123 844 + this->symtab_shndx_ * This::shdr_size);
a3ad94ed 845 gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
bae7f79e 846
c1027032
CC
847 // If this object has a .eh_frame section, or if building a .gdb_index
848 // section and there is debug info, we need all the symbols.
730cdc88
ILT
849 // Otherwise we only need the external symbols. While it would be
850 // simpler to just always read all the symbols, I've seen object
851 // files with well over 2000 local symbols, which for a 64-bit
852 // object file format is over 5 pages that we don't need to read
853 // now.
854
2ea97941 855 const int sym_size = This::sym_size;
92e059d8
ILT
856 const unsigned int loccount = symtabshdr.get_sh_info();
857 this->local_symbol_count_ = loccount;
7bf1f802 858 this->local_values_.resize(loccount);
2ea97941 859 section_offset_type locsize = loccount * sym_size;
730cdc88 860 off_t dataoff = symtabshdr.get_sh_offset();
8383303e
ILT
861 section_size_type datasize =
862 convert_to_section_size_type(symtabshdr.get_sh_size());
730cdc88 863 off_t extoff = dataoff + locsize;
8383303e 864 section_size_type extsize = datasize - locsize;
75f65a3e 865
c1027032
CC
866 off_t readoff = need_local_symbols ? dataoff : extoff;
867 section_size_type readsize = need_local_symbols ? datasize : extsize;
730cdc88 868
3f2e6a2d
CC
869 if (readsize == 0)
870 {
871 // No external symbols. Also weird but also legal.
872 return;
873 }
874
39d0cb0e 875 File_view* fvsymtab = this->get_lasting_view(readoff, readsize, true, false);
bae7f79e
ILT
876
877 // Read the section header for the symbol names.
d491d34e 878 unsigned int strtab_shndx = this->adjust_shndx(symtabshdr.get_sh_link());
dbe717ef 879 if (strtab_shndx >= this->shnum())
bae7f79e 880 {
75f2446e
ILT
881 this->error(_("invalid symbol table name index: %u"), strtab_shndx);
882 return;
bae7f79e 883 }
dbe717ef 884 typename This::Shdr strtabshdr(pshdrs + strtab_shndx * This::shdr_size);
bae7f79e
ILT
885 if (strtabshdr.get_sh_type() != elfcpp::SHT_STRTAB)
886 {
75f2446e
ILT
887 this->error(_("symbol table name section has wrong type: %u"),
888 static_cast<unsigned int>(strtabshdr.get_sh_type()));
889 return;
bae7f79e
ILT
890 }
891
892 // Read the symbol names.
893 File_view* fvstrtab = this->get_lasting_view(strtabshdr.get_sh_offset(),
39d0cb0e
ILT
894 strtabshdr.get_sh_size(),
895 false, true);
bae7f79e 896
12e14209 897 sd->symbols = fvsymtab;
730cdc88 898 sd->symbols_size = readsize;
c1027032 899 sd->external_symbols_offset = need_local_symbols ? locsize : 0;
12e14209 900 sd->symbol_names = fvstrtab;
8383303e
ILT
901 sd->symbol_names_size =
902 convert_to_section_size_type(strtabshdr.get_sh_size());
a2fb1b05
ILT
903}
904
730cdc88 905// Return the section index of symbol SYM. Set *VALUE to its value in
d491d34e 906// the object file. Set *IS_ORDINARY if this is an ordinary section
9b547ce6 907// index, not a special code between SHN_LORESERVE and SHN_HIRESERVE.
d491d34e
ILT
908// Note that for a symbol which is not defined in this object file,
909// this will set *VALUE to 0 and return SHN_UNDEF; it will not return
910// the final value of the symbol in the link.
730cdc88
ILT
911
912template<int size, bool big_endian>
913unsigned int
6fa2a40b
CC
914Sized_relobj_file<size, big_endian>::symbol_section_and_value(unsigned int sym,
915 Address* value,
916 bool* is_ordinary)
730cdc88 917{
8383303e 918 section_size_type symbols_size;
730cdc88
ILT
919 const unsigned char* symbols = this->section_contents(this->symtab_shndx_,
920 &symbols_size,
921 false);
922
923 const size_t count = symbols_size / This::sym_size;
924 gold_assert(sym < count);
925
926 elfcpp::Sym<size, big_endian> elfsym(symbols + sym * This::sym_size);
927 *value = elfsym.get_st_value();
d491d34e
ILT
928
929 return this->adjust_sym_shndx(sym, elfsym.get_st_shndx(), is_ordinary);
730cdc88
ILT
930}
931
a2fb1b05
ILT
932// Return whether to include a section group in the link. LAYOUT is
933// used to keep track of which section groups we have already seen.
934// INDEX is the index of the section group and SHDR is the section
935// header. If we do not want to include this group, we set bits in
936// OMIT for each section which should be discarded.
937
938template<int size, bool big_endian>
939bool
6fa2a40b 940Sized_relobj_file<size, big_endian>::include_section_group(
6a74a719 941 Symbol_table* symtab,
2ea97941 942 Layout* layout,
a2fb1b05 943 unsigned int index,
2ea97941 944 const char* name,
e94cf127
CC
945 const unsigned char* shdrs,
946 const char* section_names,
947 section_size_type section_names_size,
a2fb1b05
ILT
948 std::vector<bool>* omit)
949{
950 // Read the section contents.
e94cf127 951 typename This::Shdr shdr(shdrs + index * This::shdr_size);
a2fb1b05 952 const unsigned char* pcon = this->get_view(shdr.get_sh_offset(),
39d0cb0e 953 shdr.get_sh_size(), true, false);
a2fb1b05
ILT
954 const elfcpp::Elf_Word* pword =
955 reinterpret_cast<const elfcpp::Elf_Word*>(pcon);
956
957 // The first word contains flags. We only care about COMDAT section
958 // groups. Other section groups are always included in the link
959 // just like ordinary sections.
f6ce93d6 960 elfcpp::Elf_Word flags = elfcpp::Swap<32, big_endian>::readval(pword);
a2fb1b05 961
41f9cbbe
ILT
962 // Look up the group signature, which is the name of a symbol. ELF
963 // uses a symbol name because some group signatures are long, and
964 // the name is generally already in the symbol table, so it makes
965 // sense to put the long string just once in .strtab rather than in
966 // both .strtab and .shstrtab.
a2fb1b05
ILT
967
968 // Get the appropriate symbol table header (this will normally be
969 // the single SHT_SYMTAB section, but in principle it need not be).
d491d34e 970 const unsigned int link = this->adjust_shndx(shdr.get_sh_link());
645f8123 971 typename This::Shdr symshdr(this, this->elf_file_.section_header(link));
a2fb1b05
ILT
972
973 // Read the symbol table entry.
d491d34e
ILT
974 unsigned int symndx = shdr.get_sh_info();
975 if (symndx >= symshdr.get_sh_size() / This::sym_size)
a2fb1b05 976 {
75f2446e 977 this->error(_("section group %u info %u out of range"),
d491d34e 978 index, symndx);
75f2446e 979 return false;
a2fb1b05 980 }
d491d34e 981 off_t symoff = symshdr.get_sh_offset() + symndx * This::sym_size;
39d0cb0e
ILT
982 const unsigned char* psym = this->get_view(symoff, This::sym_size, true,
983 false);
a2fb1b05
ILT
984 elfcpp::Sym<size, big_endian> sym(psym);
985
a2fb1b05 986 // Read the symbol table names.
8383303e 987 section_size_type symnamelen;
645f8123 988 const unsigned char* psymnamesu;
d491d34e
ILT
989 psymnamesu = this->section_contents(this->adjust_shndx(symshdr.get_sh_link()),
990 &symnamelen, true);
a2fb1b05
ILT
991 const char* psymnames = reinterpret_cast<const char*>(psymnamesu);
992
993 // Get the section group signature.
645f8123 994 if (sym.get_st_name() >= symnamelen)
a2fb1b05 995 {
75f2446e 996 this->error(_("symbol %u name offset %u out of range"),
d491d34e 997 symndx, sym.get_st_name());
75f2446e 998 return false;
a2fb1b05
ILT
999 }
1000
e94cf127 1001 std::string signature(psymnames + sym.get_st_name());
a2fb1b05 1002
ead1e424
ILT
1003 // It seems that some versions of gas will create a section group
1004 // associated with a section symbol, and then fail to give a name to
1005 // the section symbol. In such a case, use the name of the section.
645f8123 1006 if (signature[0] == '\0' && sym.get_st_type() == elfcpp::STT_SECTION)
ead1e424 1007 {
d491d34e
ILT
1008 bool is_ordinary;
1009 unsigned int sym_shndx = this->adjust_sym_shndx(symndx,
1010 sym.get_st_shndx(),
1011 &is_ordinary);
1012 if (!is_ordinary || sym_shndx >= this->shnum())
1013 {
1014 this->error(_("symbol %u invalid section index %u"),
1015 symndx, sym_shndx);
1016 return false;
1017 }
e94cf127
CC
1018 typename This::Shdr member_shdr(shdrs + sym_shndx * This::shdr_size);
1019 if (member_shdr.get_sh_name() < section_names_size)
2e702c99 1020 signature = section_names + member_shdr.get_sh_name();
ead1e424
ILT
1021 }
1022
e94cf127
CC
1023 // Record this section group in the layout, and see whether we've already
1024 // seen one with the same signature.
8a4c0b0d 1025 bool include_group;
1ef4d87f
ILT
1026 bool is_comdat;
1027 Kept_section* kept_section = NULL;
6a74a719 1028
8a4c0b0d 1029 if ((flags & elfcpp::GRP_COMDAT) == 0)
1ef4d87f
ILT
1030 {
1031 include_group = true;
1032 is_comdat = false;
1033 }
8a4c0b0d 1034 else
e94cf127 1035 {
2ea97941
ILT
1036 include_group = layout->find_or_add_kept_section(signature,
1037 this, index, true,
1038 true, &kept_section);
1ef4d87f 1039 is_comdat = true;
6a74a719 1040 }
a2fb1b05 1041
89d8a36b
CC
1042 if (is_comdat && include_group)
1043 {
1044 Incremental_inputs* incremental_inputs = layout->incremental_inputs();
1045 if (incremental_inputs != NULL)
1046 incremental_inputs->report_comdat_group(this, signature.c_str());
1047 }
1048
a2fb1b05 1049 size_t count = shdr.get_sh_size() / sizeof(elfcpp::Elf_Word);
8825ac63
ILT
1050
1051 std::vector<unsigned int> shndxes;
1052 bool relocate_group = include_group && parameters->options().relocatable();
1053 if (relocate_group)
1054 shndxes.reserve(count - 1);
1055
a2fb1b05
ILT
1056 for (size_t i = 1; i < count; ++i)
1057 {
1ef4d87f 1058 elfcpp::Elf_Word shndx =
8825ac63
ILT
1059 this->adjust_shndx(elfcpp::Swap<32, big_endian>::readval(pword + i));
1060
1061 if (relocate_group)
1ef4d87f 1062 shndxes.push_back(shndx);
8825ac63 1063
1ef4d87f 1064 if (shndx >= this->shnum())
a2fb1b05 1065 {
75f2446e 1066 this->error(_("section %u in section group %u out of range"),
1ef4d87f 1067 shndx, index);
75f2446e 1068 continue;
a2fb1b05 1069 }
55438702
ILT
1070
1071 // Check for an earlier section number, since we're going to get
1072 // it wrong--we may have already decided to include the section.
1ef4d87f 1073 if (shndx < index)
2e702c99
RM
1074 this->error(_("invalid section group %u refers to earlier section %u"),
1075 index, shndx);
55438702 1076
e94cf127 1077 // Get the name of the member section.
1ef4d87f 1078 typename This::Shdr member_shdr(shdrs + shndx * This::shdr_size);
e94cf127 1079 if (member_shdr.get_sh_name() >= section_names_size)
2e702c99
RM
1080 {
1081 // This is an error, but it will be diagnosed eventually
1082 // in do_layout, so we don't need to do anything here but
1083 // ignore it.
1084 continue;
1085 }
e94cf127
CC
1086 std::string mname(section_names + member_shdr.get_sh_name());
1087
1ef4d87f
ILT
1088 if (include_group)
1089 {
1090 if (is_comdat)
1091 kept_section->add_comdat_section(mname, shndx,
1092 member_shdr.get_sh_size());
1093 }
1094 else
2e702c99
RM
1095 {
1096 (*omit)[shndx] = true;
1ef4d87f
ILT
1097
1098 if (is_comdat)
2e702c99 1099 {
1ef4d87f
ILT
1100 Relobj* kept_object = kept_section->object();
1101 if (kept_section->is_comdat())
1102 {
1103 // Find the corresponding kept section, and store
1104 // that info in the discarded section table.
1105 unsigned int kept_shndx;
1106 uint64_t kept_size;
1107 if (kept_section->find_comdat_section(mname, &kept_shndx,
1108 &kept_size))
1109 {
1110 // We don't keep a mapping for this section if
1111 // it has a different size. The mapping is only
1112 // used for relocation processing, and we don't
1113 // want to treat the sections as similar if the
1114 // sizes are different. Checking the section
1115 // size is the approach used by the GNU linker.
1116 if (kept_size == member_shdr.get_sh_size())
1117 this->set_kept_comdat_section(shndx, kept_object,
1118 kept_shndx);
1119 }
1120 }
1121 else
1122 {
1123 // The existing section is a linkonce section. Add
1124 // a mapping if there is exactly one section in the
1125 // group (which is true when COUNT == 2) and if it
1126 // is the same size.
1127 if (count == 2
1128 && (kept_section->linkonce_size()
1129 == member_shdr.get_sh_size()))
1130 this->set_kept_comdat_section(shndx, kept_object,
1131 kept_section->shndx());
1132 }
2e702c99
RM
1133 }
1134 }
a2fb1b05
ILT
1135 }
1136
8825ac63 1137 if (relocate_group)
2ea97941
ILT
1138 layout->layout_group(symtab, this, index, name, signature.c_str(),
1139 shdr, flags, &shndxes);
8825ac63 1140
e94cf127 1141 return include_group;
a2fb1b05
ILT
1142}
1143
1144// Whether to include a linkonce section in the link. NAME is the
1145// name of the section and SHDR is the section header.
1146
1147// Linkonce sections are a GNU extension implemented in the original
1148// GNU linker before section groups were defined. The semantics are
1149// that we only include one linkonce section with a given name. The
1150// name of a linkonce section is normally .gnu.linkonce.T.SYMNAME,
1151// where T is the type of section and SYMNAME is the name of a symbol.
1152// In an attempt to make linkonce sections interact well with section
1153// groups, we try to identify SYMNAME and use it like a section group
1154// signature. We want to block section groups with that signature,
1155// but not other linkonce sections with that signature. We also use
1156// the full name of the linkonce section as a normal section group
1157// signature.
1158
1159template<int size, bool big_endian>
1160bool
6fa2a40b 1161Sized_relobj_file<size, big_endian>::include_linkonce_section(
2ea97941 1162 Layout* layout,
e94cf127 1163 unsigned int index,
2ea97941 1164 const char* name,
1ef4d87f 1165 const elfcpp::Shdr<size, big_endian>& shdr)
a2fb1b05 1166{
1ef4d87f 1167 typename elfcpp::Elf_types<size>::Elf_WXword sh_size = shdr.get_sh_size();
ad435a24
ILT
1168 // In general the symbol name we want will be the string following
1169 // the last '.'. However, we have to handle the case of
1170 // .gnu.linkonce.t.__i686.get_pc_thunk.bx, which was generated by
1171 // some versions of gcc. So we use a heuristic: if the name starts
1172 // with ".gnu.linkonce.t.", we use everything after that. Otherwise
1173 // we look for the last '.'. We can't always simply skip
1174 // ".gnu.linkonce.X", because we have to deal with cases like
1175 // ".gnu.linkonce.d.rel.ro.local".
1176 const char* const linkonce_t = ".gnu.linkonce.t.";
1177 const char* symname;
2ea97941
ILT
1178 if (strncmp(name, linkonce_t, strlen(linkonce_t)) == 0)
1179 symname = name + strlen(linkonce_t);
ad435a24 1180 else
2ea97941 1181 symname = strrchr(name, '.') + 1;
e94cf127 1182 std::string sig1(symname);
2ea97941 1183 std::string sig2(name);
8a4c0b0d
ILT
1184 Kept_section* kept1;
1185 Kept_section* kept2;
2ea97941
ILT
1186 bool include1 = layout->find_or_add_kept_section(sig1, this, index, false,
1187 false, &kept1);
1188 bool include2 = layout->find_or_add_kept_section(sig2, this, index, false,
1189 true, &kept2);
e94cf127
CC
1190
1191 if (!include2)
1192 {
1ef4d87f
ILT
1193 // We are not including this section because we already saw the
1194 // name of the section as a signature. This normally implies
1195 // that the kept section is another linkonce section. If it is
1196 // the same size, record it as the section which corresponds to
1197 // this one.
1198 if (kept2->object() != NULL
1199 && !kept2->is_comdat()
1200 && kept2->linkonce_size() == sh_size)
1201 this->set_kept_comdat_section(index, kept2->object(), kept2->shndx());
e94cf127
CC
1202 }
1203 else if (!include1)
1204 {
1205 // The section is being discarded on the basis of its symbol
1206 // name. This means that the corresponding kept section was
1207 // part of a comdat group, and it will be difficult to identify
1208 // the specific section within that group that corresponds to
1209 // this linkonce section. We'll handle the simple case where
1210 // the group has only one member section. Otherwise, it's not
1211 // worth the effort.
1ef4d87f
ILT
1212 unsigned int kept_shndx;
1213 uint64_t kept_size;
1214 if (kept1->object() != NULL
1215 && kept1->is_comdat()
1216 && kept1->find_single_comdat_section(&kept_shndx, &kept_size)
1217 && kept_size == sh_size)
1218 this->set_kept_comdat_section(index, kept1->object(), kept_shndx);
1219 }
1220 else
1221 {
1222 kept1->set_linkonce_size(sh_size);
1223 kept2->set_linkonce_size(sh_size);
e94cf127
CC
1224 }
1225
a783673b 1226 return include1 && include2;
a2fb1b05
ILT
1227}
1228
5995b570
CC
1229// Layout an input section.
1230
1231template<int size, bool big_endian>
1232inline void
14788a3f
ILT
1233Sized_relobj_file<size, big_endian>::layout_section(
1234 Layout* layout,
1235 unsigned int shndx,
1236 const char* name,
1237 const typename This::Shdr& shdr,
1238 unsigned int reloc_shndx,
1239 unsigned int reloc_type)
5995b570 1240{
2ea97941
ILT
1241 off_t offset;
1242 Output_section* os = layout->layout(this, shndx, name, shdr,
1243 reloc_shndx, reloc_type, &offset);
5995b570
CC
1244
1245 this->output_sections()[shndx] = os;
2ea97941 1246 if (offset == -1)
6fa2a40b 1247 this->section_offsets()[shndx] = invalid_address;
5995b570 1248 else
6fa2a40b 1249 this->section_offsets()[shndx] = convert_types<Address, off_t>(offset);
5995b570
CC
1250
1251 // If this section requires special handling, and if there are
1252 // relocs that apply to it, then we must do the special handling
1253 // before we apply the relocs.
2ea97941 1254 if (offset == -1 && reloc_shndx != 0)
5995b570
CC
1255 this->set_relocs_must_follow_section_writes();
1256}
1257
14788a3f
ILT
1258// Layout an input .eh_frame section.
1259
1260template<int size, bool big_endian>
1261void
1262Sized_relobj_file<size, big_endian>::layout_eh_frame_section(
1263 Layout* layout,
1264 const unsigned char* symbols_data,
1265 section_size_type symbols_size,
1266 const unsigned char* symbol_names_data,
1267 section_size_type symbol_names_size,
1268 unsigned int shndx,
1269 const typename This::Shdr& shdr,
1270 unsigned int reloc_shndx,
1271 unsigned int reloc_type)
1272{
1273 gold_assert(this->has_eh_frame_);
1274
1275 off_t offset;
1276 Output_section* os = layout->layout_eh_frame(this,
1277 symbols_data,
1278 symbols_size,
1279 symbol_names_data,
1280 symbol_names_size,
1281 shndx,
1282 shdr,
1283 reloc_shndx,
1284 reloc_type,
1285 &offset);
1286 this->output_sections()[shndx] = os;
1287 if (os == NULL || offset == -1)
1288 {
1289 // An object can contain at most one section holding exception
1290 // frame information.
1291 gold_assert(this->discarded_eh_frame_shndx_ == -1U);
1292 this->discarded_eh_frame_shndx_ = shndx;
1293 this->section_offsets()[shndx] = invalid_address;
1294 }
1295 else
1296 this->section_offsets()[shndx] = convert_types<Address, off_t>(offset);
1297
1298 // If this section requires special handling, and if there are
1299 // relocs that aply to it, then we must do the special handling
1300 // before we apply the relocs.
1301 if (os != NULL && offset == -1 && reloc_shndx != 0)
1302 this->set_relocs_must_follow_section_writes();
1303}
1304
a2fb1b05
ILT
1305// Lay out the input sections. We walk through the sections and check
1306// whether they should be included in the link. If they should, we
1307// pass them to the Layout object, which will return an output section
2e702c99 1308// and an offset.
16164a6b
ST
1309// This function is called twice sometimes, two passes, when mapping
1310// of input sections to output sections must be delayed.
1311// This is true for the following :
1312// * Garbage collection (--gc-sections): Some input sections will be
1313// discarded and hence the assignment must wait until the second pass.
1314// In the first pass, it is for setting up some sections as roots to
1315// a work-list for --gc-sections and to do comdat processing.
1316// * Identical Code Folding (--icf=<safe,all>): Some input sections
1317// will be folded and hence the assignment must wait.
1318// * Using plugins to map some sections to unique segments: Mapping
1319// some sections to unique segments requires mapping them to unique
1320// output sections too. This can be done via plugins now and this
1321// information is not available in the first pass.
a2fb1b05
ILT
1322
1323template<int size, bool big_endian>
1324void
6fa2a40b
CC
1325Sized_relobj_file<size, big_endian>::do_layout(Symbol_table* symtab,
1326 Layout* layout,
1327 Read_symbols_data* sd)
a2fb1b05 1328{
2ea97941 1329 const unsigned int shnum = this->shnum();
2e702c99 1330
16164a6b
ST
1331 /* Should this function be called twice? */
1332 bool is_two_pass = (parameters->options().gc_sections()
1333 || parameters->options().icf_enabled()
1334 || layout->is_unique_segment_for_sections_specified());
ef15dade 1335
16164a6b
ST
1336 /* Only one of is_pass_one and is_pass_two is true. Both are false when
1337 a two-pass approach is not needed. */
1338 bool is_pass_one = false;
1339 bool is_pass_two = false;
ef15dade 1340
16164a6b 1341 Symbols_data* gc_sd = NULL;
ef15dade 1342
16164a6b
ST
1343 /* Check if do_layout needs to be two-pass. If so, find out which pass
1344 should happen. In the first pass, the data in sd is saved to be used
1345 later in the second pass. */
1346 if (is_two_pass)
1347 {
1348 gc_sd = this->get_symbols_data();
1349 if (gc_sd == NULL)
1350 {
1351 gold_assert(sd != NULL);
1352 is_pass_one = true;
1353 }
1354 else
1355 {
1356 if (parameters->options().gc_sections())
1357 gold_assert(symtab->gc()->is_worklist_ready());
1358 if (parameters->options().icf_enabled())
1359 gold_assert(symtab->icf()->is_icf_ready());
1360 is_pass_two = true;
1361 }
1362 }
1363
2ea97941 1364 if (shnum == 0)
12e14209 1365 return;
16164a6b
ST
1366
1367 if (is_pass_one)
6d03d481 1368 {
2e702c99
RM
1369 // During garbage collection save the symbols data to use it when
1370 // re-entering this function.
6d03d481 1371 gc_sd = new Symbols_data;
2ea97941 1372 this->copy_symbols_data(gc_sd, sd, This::shdr_size * shnum);
6d03d481
ST
1373 this->set_symbols_data(gc_sd);
1374 }
6d03d481
ST
1375
1376 const unsigned char* section_headers_data = NULL;
1377 section_size_type section_names_size;
1378 const unsigned char* symbols_data = NULL;
1379 section_size_type symbols_size;
6d03d481
ST
1380 const unsigned char* symbol_names_data = NULL;
1381 section_size_type symbol_names_size;
2e702c99 1382
16164a6b 1383 if (is_two_pass)
6d03d481
ST
1384 {
1385 section_headers_data = gc_sd->section_headers_data;
1386 section_names_size = gc_sd->section_names_size;
1387 symbols_data = gc_sd->symbols_data;
1388 symbols_size = gc_sd->symbols_size;
6d03d481
ST
1389 symbol_names_data = gc_sd->symbol_names_data;
1390 symbol_names_size = gc_sd->symbol_names_size;
1391 }
1392 else
1393 {
1394 section_headers_data = sd->section_headers->data();
1395 section_names_size = sd->section_names_size;
1396 if (sd->symbols != NULL)
2e702c99 1397 symbols_data = sd->symbols->data();
6d03d481 1398 symbols_size = sd->symbols_size;
6d03d481 1399 if (sd->symbol_names != NULL)
2e702c99 1400 symbol_names_data = sd->symbol_names->data();
6d03d481
ST
1401 symbol_names_size = sd->symbol_names_size;
1402 }
a2fb1b05
ILT
1403
1404 // Get the section headers.
6d03d481 1405 const unsigned char* shdrs = section_headers_data;
e94cf127 1406 const unsigned char* pshdrs;
a2fb1b05
ILT
1407
1408 // Get the section names.
16164a6b
ST
1409 const unsigned char* pnamesu = (is_two_pass
1410 ? gc_sd->section_names_data
1411 : sd->section_names->data());
ef15dade 1412
a2fb1b05
ILT
1413 const char* pnames = reinterpret_cast<const char*>(pnamesu);
1414
5995b570
CC
1415 // If any input files have been claimed by plugins, we need to defer
1416 // actual layout until the replacement files have arrived.
1417 const bool should_defer_layout =
1418 (parameters->options().has_plugins()
1419 && parameters->options().plugins()->should_defer_layout());
1420 unsigned int num_sections_to_defer = 0;
1421
730cdc88
ILT
1422 // For each section, record the index of the reloc section if any.
1423 // Use 0 to mean that there is no reloc section, -1U to mean that
1424 // there is more than one.
2ea97941
ILT
1425 std::vector<unsigned int> reloc_shndx(shnum, 0);
1426 std::vector<unsigned int> reloc_type(shnum, elfcpp::SHT_NULL);
730cdc88 1427 // Skip the first, dummy, section.
e94cf127 1428 pshdrs = shdrs + This::shdr_size;
2ea97941 1429 for (unsigned int i = 1; i < shnum; ++i, pshdrs += This::shdr_size)
730cdc88
ILT
1430 {
1431 typename This::Shdr shdr(pshdrs);
1432
5995b570
CC
1433 // Count the number of sections whose layout will be deferred.
1434 if (should_defer_layout && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC))
2e702c99 1435 ++num_sections_to_defer;
5995b570 1436
730cdc88
ILT
1437 unsigned int sh_type = shdr.get_sh_type();
1438 if (sh_type == elfcpp::SHT_REL || sh_type == elfcpp::SHT_RELA)
1439 {
d491d34e 1440 unsigned int target_shndx = this->adjust_shndx(shdr.get_sh_info());
2ea97941 1441 if (target_shndx == 0 || target_shndx >= shnum)
730cdc88
ILT
1442 {
1443 this->error(_("relocation section %u has bad info %u"),
1444 i, target_shndx);
1445 continue;
1446 }
1447
1448 if (reloc_shndx[target_shndx] != 0)
1449 reloc_shndx[target_shndx] = -1U;
1450 else
1451 {
1452 reloc_shndx[target_shndx] = i;
1453 reloc_type[target_shndx] = sh_type;
1454 }
1455 }
1456 }
1457
ef9beddf 1458 Output_sections& out_sections(this->output_sections());
6fa2a40b 1459 std::vector<Address>& out_section_offsets(this->section_offsets());
ef9beddf 1460
16164a6b 1461 if (!is_pass_two)
6d03d481 1462 {
2ea97941
ILT
1463 out_sections.resize(shnum);
1464 out_section_offsets.resize(shnum);
6d03d481 1465 }
a2fb1b05 1466
88dd47ac
ILT
1467 // If we are only linking for symbols, then there is nothing else to
1468 // do here.
1469 if (this->input_file()->just_symbols())
1470 {
16164a6b 1471 if (!is_pass_two)
2e702c99
RM
1472 {
1473 delete sd->section_headers;
1474 sd->section_headers = NULL;
1475 delete sd->section_names;
1476 sd->section_names = NULL;
1477 }
88dd47ac
ILT
1478 return;
1479 }
1480
5995b570
CC
1481 if (num_sections_to_defer > 0)
1482 {
1483 parameters->options().plugins()->add_deferred_layout_object(this);
1484 this->deferred_layout_.reserve(num_sections_to_defer);
c924eb67 1485 this->is_deferred_layout_ = true;
5995b570
CC
1486 }
1487
35cdfc9a
ILT
1488 // Whether we've seen a .note.GNU-stack section.
1489 bool seen_gnu_stack = false;
1490 // The flags of a .note.GNU-stack section.
1491 uint64_t gnu_stack_flags = 0;
1492
a2fb1b05 1493 // Keep track of which sections to omit.
2ea97941 1494 std::vector<bool> omit(shnum, false);
a2fb1b05 1495
7019cd25 1496 // Keep track of reloc sections when emitting relocations.
8851ecca 1497 const bool relocatable = parameters->options().relocatable();
2ea97941
ILT
1498 const bool emit_relocs = (relocatable
1499 || parameters->options().emit_relocs());
6a74a719
ILT
1500 std::vector<unsigned int> reloc_sections;
1501
730cdc88
ILT
1502 // Keep track of .eh_frame sections.
1503 std::vector<unsigned int> eh_frame_sections;
1504
c1027032
CC
1505 // Keep track of .debug_info and .debug_types sections.
1506 std::vector<unsigned int> debug_info_sections;
1507 std::vector<unsigned int> debug_types_sections;
1508
f6ce93d6 1509 // Skip the first, dummy, section.
e94cf127 1510 pshdrs = shdrs + This::shdr_size;
2ea97941 1511 for (unsigned int i = 1; i < shnum; ++i, pshdrs += This::shdr_size)
a2fb1b05 1512 {
75f65a3e 1513 typename This::Shdr shdr(pshdrs);
a2fb1b05 1514
6d03d481 1515 if (shdr.get_sh_name() >= section_names_size)
a2fb1b05 1516 {
75f2446e
ILT
1517 this->error(_("bad section name offset for section %u: %lu"),
1518 i, static_cast<unsigned long>(shdr.get_sh_name()));
1519 return;
a2fb1b05
ILT
1520 }
1521
2ea97941 1522 const char* name = pnames + shdr.get_sh_name();
a2fb1b05 1523
16164a6b 1524 if (!is_pass_two)
2e702c99
RM
1525 {
1526 if (this->handle_gnu_warning_section(name, i, symtab))
1527 {
1528 if (!relocatable && !parameters->options().shared())
1529 omit[i] = true;
6d03d481 1530 }
f6ce93d6 1531
2e702c99
RM
1532 // The .note.GNU-stack section is special. It gives the
1533 // protection flags that this object file requires for the stack
1534 // in memory.
1535 if (strcmp(name, ".note.GNU-stack") == 0)
1536 {
6d03d481
ST
1537 seen_gnu_stack = true;
1538 gnu_stack_flags |= shdr.get_sh_flags();
1539 omit[i] = true;
2e702c99 1540 }
35cdfc9a 1541
364c7fa5
ILT
1542 // The .note.GNU-split-stack section is also special. It
1543 // indicates that the object was compiled with
1544 // -fsplit-stack.
2ea97941 1545 if (this->handle_split_stack_section(name))
364c7fa5 1546 {
e588ea8d 1547 if (!relocatable && !parameters->options().shared())
364c7fa5
ILT
1548 omit[i] = true;
1549 }
1550
05a352e6 1551 // Skip attributes section.
2ea97941 1552 if (parameters->target().is_attributes_section(name))
05a352e6
DK
1553 {
1554 omit[i] = true;
1555 }
1556
2e702c99
RM
1557 bool discard = omit[i];
1558 if (!discard)
1559 {
6d03d481 1560 if (shdr.get_sh_type() == elfcpp::SHT_GROUP)
2e702c99
RM
1561 {
1562 if (!this->include_section_group(symtab, layout, i, name,
1563 shdrs, pnames,
1564 section_names_size,
1565 &omit))
1566 discard = true;
1567 }
1568 else if ((shdr.get_sh_flags() & elfcpp::SHF_GROUP) == 0
1569 && Layout::is_linkonce(name))
1570 {
1571 if (!this->include_linkonce_section(layout, i, name, shdr))
6d03d481 1572 discard = true;
2e702c99 1573 }
a2fb1b05 1574 }
a2fb1b05 1575
09ec0418
CC
1576 // Add the section to the incremental inputs layout.
1577 Incremental_inputs* incremental_inputs = layout->incremental_inputs();
cdc29364
CC
1578 if (incremental_inputs != NULL
1579 && !discard
aa06ae28 1580 && can_incremental_update(shdr.get_sh_type()))
4fb3a1c3
CC
1581 {
1582 off_t sh_size = shdr.get_sh_size();
1583 section_size_type uncompressed_size;
1584 if (this->section_is_compressed(i, &uncompressed_size))
1585 sh_size = uncompressed_size;
1586 incremental_inputs->report_input_section(this, i, name, sh_size);
1587 }
09ec0418 1588
2e702c99
RM
1589 if (discard)
1590 {
6d03d481
ST
1591 // Do not include this section in the link.
1592 out_sections[i] = NULL;
2e702c99 1593 out_section_offsets[i] = invalid_address;
6d03d481 1594 continue;
2e702c99
RM
1595 }
1596 }
1597
16164a6b 1598 if (is_pass_one && parameters->options().gc_sections())
2e702c99
RM
1599 {
1600 if (this->is_section_name_included(name)
b9b2ae8b 1601 || layout->keep_input_section (this, name)
2e702c99
RM
1602 || shdr.get_sh_type() == elfcpp::SHT_INIT_ARRAY
1603 || shdr.get_sh_type() == elfcpp::SHT_FINI_ARRAY)
1604 {
4277535c 1605 symtab->gc()->worklist().push_back(Section_id(this, i));
2e702c99
RM
1606 }
1607 // If the section name XXX can be represented as a C identifier
1608 // it cannot be discarded if there are references to
1609 // __start_XXX and __stop_XXX symbols. These need to be
1610 // specially handled.
1611 if (is_cident(name))
1612 {
1613 symtab->gc()->add_cident_section(name, Section_id(this, i));
1614 }
1615 }
a2fb1b05 1616
6a74a719
ILT
1617 // When doing a relocatable link we are going to copy input
1618 // reloc sections into the output. We only want to copy the
1619 // ones associated with sections which are not being discarded.
1620 // However, we don't know that yet for all sections. So save
6d03d481
ST
1621 // reloc sections and process them later. Garbage collection is
1622 // not triggered when relocatable code is desired.
2ea97941 1623 if (emit_relocs
6a74a719
ILT
1624 && (shdr.get_sh_type() == elfcpp::SHT_REL
1625 || shdr.get_sh_type() == elfcpp::SHT_RELA))
1626 {
1627 reloc_sections.push_back(i);
1628 continue;
1629 }
1630
8851ecca 1631 if (relocatable && shdr.get_sh_type() == elfcpp::SHT_GROUP)
6a74a719
ILT
1632 continue;
1633
730cdc88
ILT
1634 // The .eh_frame section is special. It holds exception frame
1635 // information that we need to read in order to generate the
1636 // exception frame header. We process these after all the other
1637 // sections so that the exception frame reader can reliably
1638 // determine which sections are being discarded, and discard the
1639 // corresponding information.
8851ecca 1640 if (!relocatable
2e702c99
RM
1641 && strcmp(name, ".eh_frame") == 0
1642 && this->check_eh_frame_flags(&shdr))
1643 {
16164a6b 1644 if (is_pass_one)
2e702c99 1645 {
c924eb67
CC
1646 if (this->is_deferred_layout())
1647 out_sections[i] = reinterpret_cast<Output_section*>(2);
1648 else
1649 out_sections[i] = reinterpret_cast<Output_section*>(1);
2e702c99
RM
1650 out_section_offsets[i] = invalid_address;
1651 }
c924eb67 1652 else if (this->is_deferred_layout())
14788a3f
ILT
1653 this->deferred_layout_.push_back(Deferred_layout(i, name,
1654 pshdrs,
1655 reloc_shndx[i],
1656 reloc_type[i]));
1657 else
2e702c99
RM
1658 eh_frame_sections.push_back(i);
1659 continue;
1660 }
730cdc88 1661
16164a6b 1662 if (is_pass_two && parameters->options().gc_sections())
2e702c99
RM
1663 {
1664 // This is executed during the second pass of garbage
1665 // collection. do_layout has been called before and some
1666 // sections have been already discarded. Simply ignore
1667 // such sections this time around.
1668 if (out_sections[i] == NULL)
1669 {
1670 gold_assert(out_section_offsets[i] == invalid_address);
1671 continue;
1672 }
1673 if (((shdr.get_sh_flags() & elfcpp::SHF_ALLOC) != 0)
1674 && symtab->gc()->is_section_garbage(this, i))
1675 {
1676 if (parameters->options().print_gc_sections())
1677 gold_info(_("%s: removing unused section from '%s'"
1678 " in file '%s'"),
1679 program_name, this->section_name(i).c_str(),
1680 this->name().c_str());
1681 out_sections[i] = NULL;
1682 out_section_offsets[i] = invalid_address;
1683 continue;
1684 }
1685 }
ef15dade 1686
16164a6b 1687 if (is_pass_two && parameters->options().icf_enabled())
2e702c99
RM
1688 {
1689 if (out_sections[i] == NULL)
1690 {
1691 gold_assert(out_section_offsets[i] == invalid_address);
1692 continue;
1693 }
1694 if (((shdr.get_sh_flags() & elfcpp::SHF_ALLOC) != 0)
1695 && symtab->icf()->is_section_folded(this, i))
1696 {
1697 if (parameters->options().print_icf_sections())
1698 {
1699 Section_id folded =
1700 symtab->icf()->get_folded_section(this, i);
1701 Relobj* folded_obj =
1702 reinterpret_cast<Relobj*>(folded.first);
53c66605 1703 gold_info(_("%s: ICF folding section '%s' in file '%s' "
2e702c99
RM
1704 "into '%s' in file '%s'"),
1705 program_name, this->section_name(i).c_str(),
1706 this->name().c_str(),
1707 folded_obj->section_name(folded.second).c_str(),
1708 folded_obj->name().c_str());
1709 }
1710 out_sections[i] = NULL;
1711 out_section_offsets[i] = invalid_address;
1712 continue;
1713 }
1714 }
ef15dade 1715
6d03d481 1716 // Defer layout here if input files are claimed by plugins. When gc
c924eb67
CC
1717 // is turned on this function is called twice; we only want to do this
1718 // on the first pass.
1719 if (!is_pass_two
1720 && this->is_deferred_layout()
1721 && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC))
2e702c99 1722 {
2e702c99
RM
1723 this->deferred_layout_.push_back(Deferred_layout(i, name,
1724 pshdrs,
1725 reloc_shndx[i],
1726 reloc_type[i]));
1727 // Put dummy values here; real values will be supplied by
1728 // do_layout_deferred_sections.
1729 out_sections[i] = reinterpret_cast<Output_section*>(2);
1730 out_section_offsets[i] = invalid_address;
1731 continue;
1732 }
ef15dade 1733
6d03d481
ST
1734 // During gc_pass_two if a section that was previously deferred is
1735 // found, do not layout the section as layout_deferred_sections will
1736 // do it later from gold.cc.
16164a6b 1737 if (is_pass_two
2e702c99
RM
1738 && (out_sections[i] == reinterpret_cast<Output_section*>(2)))
1739 continue;
6d03d481 1740
16164a6b 1741 if (is_pass_one)
2e702c99
RM
1742 {
1743 // This is during garbage collection. The out_sections are
1744 // assigned in the second call to this function.
1745 out_sections[i] = reinterpret_cast<Output_section*>(1);
1746 out_section_offsets[i] = invalid_address;
1747 }
ef9beddf 1748 else
2e702c99
RM
1749 {
1750 // When garbage collection is switched on the actual layout
1751 // only happens in the second call.
1752 this->layout_section(layout, i, name, shdr, reloc_shndx[i],
1753 reloc_type[i]);
c1027032
CC
1754
1755 // When generating a .gdb_index section, we do additional
1756 // processing of .debug_info and .debug_types sections after all
1757 // the other sections for the same reason as above.
1758 if (!relocatable
1759 && parameters->options().gdb_index()
1760 && !(shdr.get_sh_flags() & elfcpp::SHF_ALLOC))
1761 {
1762 if (strcmp(name, ".debug_info") == 0
1763 || strcmp(name, ".zdebug_info") == 0)
1764 debug_info_sections.push_back(i);
1765 else if (strcmp(name, ".debug_types") == 0
1766 || strcmp(name, ".zdebug_types") == 0)
1767 debug_types_sections.push_back(i);
1768 }
2e702c99 1769 }
12e14209
ILT
1770 }
1771
16164a6b 1772 if (!is_pass_two)
83e17bd5 1773 layout->layout_gnu_stack(seen_gnu_stack, gnu_stack_flags, this);
35cdfc9a 1774
1d946cb3
CC
1775 // Handle the .eh_frame sections after the other sections.
1776 gold_assert(!is_pass_one || eh_frame_sections.empty());
1777 for (std::vector<unsigned int>::const_iterator p = eh_frame_sections.begin();
1778 p != eh_frame_sections.end();
1779 ++p)
1780 {
1781 unsigned int i = *p;
1782 const unsigned char* pshdr;
1783 pshdr = section_headers_data + i * This::shdr_size;
1784 typename This::Shdr shdr(pshdr);
1785
1786 this->layout_eh_frame_section(layout,
1787 symbols_data,
1788 symbols_size,
1789 symbol_names_data,
1790 symbol_names_size,
1791 i,
1792 shdr,
1793 reloc_shndx[i],
1794 reloc_type[i]);
1795 }
1796
6a74a719 1797 // When doing a relocatable link handle the reloc sections at the
2e702c99
RM
1798 // end. Garbage collection and Identical Code Folding is not
1799 // turned on for relocatable code.
2ea97941 1800 if (emit_relocs)
6a74a719 1801 this->size_relocatable_relocs();
ef15dade 1802
16164a6b 1803 gold_assert(!is_two_pass || reloc_sections.empty());
ef15dade 1804
6a74a719
ILT
1805 for (std::vector<unsigned int>::const_iterator p = reloc_sections.begin();
1806 p != reloc_sections.end();
1807 ++p)
1808 {
1809 unsigned int i = *p;
1810 const unsigned char* pshdr;
6d03d481 1811 pshdr = section_headers_data + i * This::shdr_size;
6a74a719
ILT
1812 typename This::Shdr shdr(pshdr);
1813
d491d34e 1814 unsigned int data_shndx = this->adjust_shndx(shdr.get_sh_info());
2ea97941 1815 if (data_shndx >= shnum)
6a74a719
ILT
1816 {
1817 // We already warned about this above.
1818 continue;
1819 }
1820
ef9beddf 1821 Output_section* data_section = out_sections[data_shndx];
f3a2388f 1822 if (data_section == reinterpret_cast<Output_section*>(2))
2e702c99 1823 {
c924eb67
CC
1824 if (is_pass_two)
1825 continue;
2e702c99
RM
1826 // The layout for the data section was deferred, so we need
1827 // to defer the relocation section, too.
f3a2388f 1828 const char* name = pnames + shdr.get_sh_name();
2e702c99
RM
1829 this->deferred_layout_relocs_.push_back(
1830 Deferred_layout(i, name, pshdr, 0, elfcpp::SHT_NULL));
f3a2388f 1831 out_sections[i] = reinterpret_cast<Output_section*>(2);
2e702c99
RM
1832 out_section_offsets[i] = invalid_address;
1833 continue;
1834 }
6a74a719
ILT
1835 if (data_section == NULL)
1836 {
ef9beddf 1837 out_sections[i] = NULL;
2e702c99 1838 out_section_offsets[i] = invalid_address;
6a74a719
ILT
1839 continue;
1840 }
1841
1842 Relocatable_relocs* rr = new Relocatable_relocs();
1843 this->set_relocatable_relocs(i, rr);
1844
2ea97941
ILT
1845 Output_section* os = layout->layout_reloc(this, i, shdr, data_section,
1846 rr);
ef9beddf 1847 out_sections[i] = os;
eff45813 1848 out_section_offsets[i] = invalid_address;
6a74a719
ILT
1849 }
1850
c1027032
CC
1851 // When building a .gdb_index section, scan the .debug_info and
1852 // .debug_types sections.
16164a6b 1853 gold_assert(!is_pass_one
c1027032
CC
1854 || (debug_info_sections.empty() && debug_types_sections.empty()));
1855 for (std::vector<unsigned int>::const_iterator p
1856 = debug_info_sections.begin();
1857 p != debug_info_sections.end();
1858 ++p)
1859 {
1860 unsigned int i = *p;
1861 layout->add_to_gdb_index(false, this, symbols_data, symbols_size,
1862 i, reloc_shndx[i], reloc_type[i]);
1863 }
1864 for (std::vector<unsigned int>::const_iterator p
1865 = debug_types_sections.begin();
1866 p != debug_types_sections.end();
1867 ++p)
1868 {
1869 unsigned int i = *p;
1870 layout->add_to_gdb_index(true, this, symbols_data, symbols_size,
1871 i, reloc_shndx[i], reloc_type[i]);
1872 }
1873
16164a6b 1874 if (is_pass_two)
6d03d481
ST
1875 {
1876 delete[] gc_sd->section_headers_data;
1877 delete[] gc_sd->section_names_data;
1878 delete[] gc_sd->symbols_data;
1879 delete[] gc_sd->symbol_names_data;
ef15dade 1880 this->set_symbols_data(NULL);
6d03d481
ST
1881 }
1882 else
1883 {
1884 delete sd->section_headers;
1885 sd->section_headers = NULL;
1886 delete sd->section_names;
1887 sd->section_names = NULL;
1888 }
12e14209
ILT
1889}
1890
5995b570
CC
1891// Layout sections whose layout was deferred while waiting for
1892// input files from a plugin.
1893
1894template<int size, bool big_endian>
1895void
6fa2a40b 1896Sized_relobj_file<size, big_endian>::do_layout_deferred_sections(Layout* layout)
5995b570
CC
1897{
1898 typename std::vector<Deferred_layout>::iterator deferred;
1899
1900 for (deferred = this->deferred_layout_.begin();
1901 deferred != this->deferred_layout_.end();
1902 ++deferred)
1903 {
1904 typename This::Shdr shdr(deferred->shdr_data_);
5e0f337e 1905
54a3d865
ILT
1906 if (!parameters->options().relocatable()
1907 && deferred->name_ == ".eh_frame"
1908 && this->check_eh_frame_flags(&shdr))
14788a3f 1909 {
54a3d865
ILT
1910 // Checking is_section_included is not reliable for
1911 // .eh_frame sections, because they do not have an output
1912 // section. This is not a problem normally because we call
1913 // layout_eh_frame_section unconditionally, but when
1914 // deferring sections that is not true. We don't want to
1915 // keep all .eh_frame sections because that will cause us to
1916 // keep all sections that they refer to, which is the wrong
1917 // way around. Instead, the eh_frame code will discard
1918 // .eh_frame sections that refer to discarded sections.
1919
14788a3f
ILT
1920 // Reading the symbols again here may be slow.
1921 Read_symbols_data sd;
f35c4853 1922 this->base_read_symbols(&sd);
14788a3f
ILT
1923 this->layout_eh_frame_section(layout,
1924 sd.symbols->data(),
1925 sd.symbols_size,
1926 sd.symbol_names->data(),
1927 sd.symbol_names_size,
1928 deferred->shndx_,
1929 shdr,
1930 deferred->reloc_shndx_,
1931 deferred->reloc_type_);
54a3d865 1932 continue;
14788a3f 1933 }
54a3d865
ILT
1934
1935 // If the section is not included, it is because the garbage collector
1936 // decided it is not needed. Avoid reverting that decision.
1937 if (!this->is_section_included(deferred->shndx_))
1938 continue;
1939
1940 this->layout_section(layout, deferred->shndx_, deferred->name_.c_str(),
1941 shdr, deferred->reloc_shndx_,
1942 deferred->reloc_type_);
5995b570
CC
1943 }
1944
1945 this->deferred_layout_.clear();
f3a2388f
CC
1946
1947 // Now handle the deferred relocation sections.
1948
1949 Output_sections& out_sections(this->output_sections());
6fa2a40b 1950 std::vector<Address>& out_section_offsets(this->section_offsets());
f3a2388f
CC
1951
1952 for (deferred = this->deferred_layout_relocs_.begin();
1953 deferred != this->deferred_layout_relocs_.end();
1954 ++deferred)
1955 {
1956 unsigned int shndx = deferred->shndx_;
1957 typename This::Shdr shdr(deferred->shdr_data_);
1958 unsigned int data_shndx = this->adjust_shndx(shdr.get_sh_info());
1959
1960 Output_section* data_section = out_sections[data_shndx];
1961 if (data_section == NULL)
1962 {
1963 out_sections[shndx] = NULL;
2e702c99 1964 out_section_offsets[shndx] = invalid_address;
f3a2388f
CC
1965 continue;
1966 }
1967
1968 Relocatable_relocs* rr = new Relocatable_relocs();
1969 this->set_relocatable_relocs(shndx, rr);
1970
1971 Output_section* os = layout->layout_reloc(this, shndx, shdr,
1972 data_section, rr);
1973 out_sections[shndx] = os;
1974 out_section_offsets[shndx] = invalid_address;
1975 }
5995b570
CC
1976}
1977
12e14209
ILT
1978// Add the symbols to the symbol table.
1979
1980template<int size, bool big_endian>
1981void
6fa2a40b
CC
1982Sized_relobj_file<size, big_endian>::do_add_symbols(Symbol_table* symtab,
1983 Read_symbols_data* sd,
1984 Layout*)
12e14209
ILT
1985{
1986 if (sd->symbols == NULL)
1987 {
a3ad94ed 1988 gold_assert(sd->symbol_names == NULL);
12e14209
ILT
1989 return;
1990 }
a2fb1b05 1991
2ea97941 1992 const int sym_size = This::sym_size;
730cdc88 1993 size_t symcount = ((sd->symbols_size - sd->external_symbols_offset)
2ea97941
ILT
1994 / sym_size);
1995 if (symcount * sym_size != sd->symbols_size - sd->external_symbols_offset)
12e14209 1996 {
75f2446e
ILT
1997 this->error(_("size of symbols is not multiple of symbol size"));
1998 return;
a2fb1b05 1999 }
12e14209 2000
730cdc88 2001 this->symbols_.resize(symcount);
12e14209 2002
12e14209
ILT
2003 const char* sym_names =
2004 reinterpret_cast<const char*>(sd->symbol_names->data());
730cdc88
ILT
2005 symtab->add_from_relobj(this,
2006 sd->symbols->data() + sd->external_symbols_offset,
7fcd3aa9 2007 symcount, this->local_symbol_count_,
d491d34e 2008 sym_names, sd->symbol_names_size,
92de84a6
ILT
2009 &this->symbols_,
2010 &this->defined_count_);
12e14209
ILT
2011
2012 delete sd->symbols;
2013 sd->symbols = NULL;
2014 delete sd->symbol_names;
2015 sd->symbol_names = NULL;
bae7f79e
ILT
2016}
2017
b0193076
RÁE
2018// Find out if this object, that is a member of a lib group, should be included
2019// in the link. We check every symbol defined by this object. If the symbol
2020// table has a strong undefined reference to that symbol, we have to include
2021// the object.
2022
2023template<int size, bool big_endian>
2024Archive::Should_include
6fa2a40b
CC
2025Sized_relobj_file<size, big_endian>::do_should_include_member(
2026 Symbol_table* symtab,
2027 Layout* layout,
2028 Read_symbols_data* sd,
2029 std::string* why)
b0193076
RÁE
2030{
2031 char* tmpbuf = NULL;
2032 size_t tmpbuflen = 0;
2033 const char* sym_names =
2034 reinterpret_cast<const char*>(sd->symbol_names->data());
2035 const unsigned char* syms =
2036 sd->symbols->data() + sd->external_symbols_offset;
2037 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
2038 size_t symcount = ((sd->symbols_size - sd->external_symbols_offset)
2e702c99 2039 / sym_size);
b0193076
RÁE
2040
2041 const unsigned char* p = syms;
2042
2043 for (size_t i = 0; i < symcount; ++i, p += sym_size)
2044 {
2045 elfcpp::Sym<size, big_endian> sym(p);
2046 unsigned int st_shndx = sym.get_st_shndx();
2047 if (st_shndx == elfcpp::SHN_UNDEF)
2048 continue;
2049
2050 unsigned int st_name = sym.get_st_name();
2051 const char* name = sym_names + st_name;
2052 Symbol* symbol;
88a4108b
ILT
2053 Archive::Should_include t = Archive::should_include_member(symtab,
2054 layout,
2055 name,
b0193076
RÁE
2056 &symbol, why,
2057 &tmpbuf,
2058 &tmpbuflen);
2059 if (t == Archive::SHOULD_INCLUDE_YES)
2060 {
2061 if (tmpbuf != NULL)
2062 free(tmpbuf);
2063 return t;
2064 }
2065 }
2066 if (tmpbuf != NULL)
2067 free(tmpbuf);
2068 return Archive::SHOULD_INCLUDE_UNKNOWN;
2069}
2070
e0c52780
CC
2071// Iterate over global defined symbols, calling a visitor class V for each.
2072
2073template<int size, bool big_endian>
2074void
6fa2a40b 2075Sized_relobj_file<size, big_endian>::do_for_all_global_symbols(
e0c52780
CC
2076 Read_symbols_data* sd,
2077 Library_base::Symbol_visitor_base* v)
2078{
2079 const char* sym_names =
2080 reinterpret_cast<const char*>(sd->symbol_names->data());
2081 const unsigned char* syms =
2082 sd->symbols->data() + sd->external_symbols_offset;
2083 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
2084 size_t symcount = ((sd->symbols_size - sd->external_symbols_offset)
2e702c99 2085 / sym_size);
e0c52780
CC
2086 const unsigned char* p = syms;
2087
2088 for (size_t i = 0; i < symcount; ++i, p += sym_size)
2089 {
2090 elfcpp::Sym<size, big_endian> sym(p);
2091 if (sym.get_st_shndx() != elfcpp::SHN_UNDEF)
2092 v->visit(sym_names + sym.get_st_name());
2093 }
2094}
2095
7223e9ca
ILT
2096// Return whether the local symbol SYMNDX has a PLT offset.
2097
2098template<int size, bool big_endian>
2099bool
6fa2a40b
CC
2100Sized_relobj_file<size, big_endian>::local_has_plt_offset(
2101 unsigned int symndx) const
7223e9ca
ILT
2102{
2103 typename Local_plt_offsets::const_iterator p =
2104 this->local_plt_offsets_.find(symndx);
2105 return p != this->local_plt_offsets_.end();
2106}
2107
2108// Get the PLT offset of a local symbol.
2109
2110template<int size, bool big_endian>
2111unsigned int
83896202
ILT
2112Sized_relobj_file<size, big_endian>::do_local_plt_offset(
2113 unsigned int symndx) const
7223e9ca
ILT
2114{
2115 typename Local_plt_offsets::const_iterator p =
2116 this->local_plt_offsets_.find(symndx);
2117 gold_assert(p != this->local_plt_offsets_.end());
2118 return p->second;
2119}
2120
2121// Set the PLT offset of a local symbol.
2122
2123template<int size, bool big_endian>
2124void
6fa2a40b
CC
2125Sized_relobj_file<size, big_endian>::set_local_plt_offset(
2126 unsigned int symndx, unsigned int plt_offset)
7223e9ca
ILT
2127{
2128 std::pair<typename Local_plt_offsets::iterator, bool> ins =
2129 this->local_plt_offsets_.insert(std::make_pair(symndx, plt_offset));
2130 gold_assert(ins.second);
2131}
2132
cb295612
ILT
2133// First pass over the local symbols. Here we add their names to
2134// *POOL and *DYNPOOL, and we store the symbol value in
2135// THIS->LOCAL_VALUES_. This function is always called from a
2136// singleton thread. This is followed by a call to
2137// finalize_local_symbols.
75f65a3e
ILT
2138
2139template<int size, bool big_endian>
7bf1f802 2140void
6fa2a40b
CC
2141Sized_relobj_file<size, big_endian>::do_count_local_symbols(Stringpool* pool,
2142 Stringpool* dynpool)
75f65a3e 2143{
a3ad94ed 2144 gold_assert(this->symtab_shndx_ != -1U);
645f8123 2145 if (this->symtab_shndx_ == 0)
61ba1cf9
ILT
2146 {
2147 // This object has no symbols. Weird but legal.
7bf1f802 2148 return;
61ba1cf9
ILT
2149 }
2150
75f65a3e 2151 // Read the symbol table section header.
2ea97941 2152 const unsigned int symtab_shndx = this->symtab_shndx_;
645f8123 2153 typename This::Shdr symtabshdr(this,
2ea97941 2154 this->elf_file_.section_header(symtab_shndx));
a3ad94ed 2155 gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
75f65a3e
ILT
2156
2157 // Read the local symbols.
2ea97941 2158 const int sym_size = This::sym_size;
92e059d8 2159 const unsigned int loccount = this->local_symbol_count_;
a3ad94ed 2160 gold_assert(loccount == symtabshdr.get_sh_info());
2ea97941 2161 off_t locsize = loccount * sym_size;
75f65a3e 2162 const unsigned char* psyms = this->get_view(symtabshdr.get_sh_offset(),
39d0cb0e 2163 locsize, true, true);
75f65a3e 2164
75f65a3e 2165 // Read the symbol names.
d491d34e
ILT
2166 const unsigned int strtab_shndx =
2167 this->adjust_shndx(symtabshdr.get_sh_link());
8383303e 2168 section_size_type strtab_size;
645f8123 2169 const unsigned char* pnamesu = this->section_contents(strtab_shndx,
9eb9fa57
ILT
2170 &strtab_size,
2171 true);
75f65a3e
ILT
2172 const char* pnames = reinterpret_cast<const char*>(pnamesu);
2173
2174 // Loop over the local symbols.
2175
ef9beddf 2176 const Output_sections& out_sections(this->output_sections());
cd3c333f 2177 std::vector<Address>& out_section_offsets(this->section_offsets());
2ea97941 2178 unsigned int shnum = this->shnum();
61ba1cf9 2179 unsigned int count = 0;
7bf1f802 2180 unsigned int dyncount = 0;
75f65a3e 2181 // Skip the first, dummy, symbol.
2ea97941 2182 psyms += sym_size;
403676b5 2183 bool strip_all = parameters->options().strip_all();
ebcc8304 2184 bool discard_all = parameters->options().discard_all();
bb04269c 2185 bool discard_locals = parameters->options().discard_locals();
cd3c333f 2186 bool discard_sec_merge = parameters->options().discard_sec_merge();
2ea97941 2187 for (unsigned int i = 1; i < loccount; ++i, psyms += sym_size)
75f65a3e
ILT
2188 {
2189 elfcpp::Sym<size, big_endian> sym(psyms);
2190
b8e6aad9
ILT
2191 Symbol_value<size>& lv(this->local_values_[i]);
2192
d491d34e
ILT
2193 bool is_ordinary;
2194 unsigned int shndx = this->adjust_sym_shndx(i, sym.get_st_shndx(),
2195 &is_ordinary);
2196 lv.set_input_shndx(shndx, is_ordinary);
75f65a3e 2197
063f12a8
ILT
2198 if (sym.get_st_type() == elfcpp::STT_SECTION)
2199 lv.set_is_section_symbol();
7bf1f802
ILT
2200 else if (sym.get_st_type() == elfcpp::STT_TLS)
2201 lv.set_is_tls_symbol();
7223e9ca
ILT
2202 else if (sym.get_st_type() == elfcpp::STT_GNU_IFUNC)
2203 lv.set_is_ifunc_symbol();
7bf1f802
ILT
2204
2205 // Save the input symbol value for use in do_finalize_local_symbols().
2206 lv.set_input_value(sym.get_st_value());
2207
2208 // Decide whether this symbol should go into the output file.
063f12a8 2209
2ea97941 2210 if ((shndx < shnum && out_sections[shndx] == NULL)
ebcc8304 2211 || shndx == this->discarded_eh_frame_shndx_)
2e702c99 2212 {
7bf1f802 2213 lv.set_no_output_symtab_entry();
2e702c99
RM
2214 gold_assert(!lv.needs_output_dynsym_entry());
2215 continue;
2216 }
7bf1f802 2217
ec4dbad3
AM
2218 if (sym.get_st_type() == elfcpp::STT_SECTION
2219 || !this->adjust_local_symbol(&lv))
7bf1f802
ILT
2220 {
2221 lv.set_no_output_symtab_entry();
2e702c99 2222 gold_assert(!lv.needs_output_dynsym_entry());
7bf1f802
ILT
2223 continue;
2224 }
2225
2226 if (sym.get_st_name() >= strtab_size)
2227 {
2228 this->error(_("local symbol %u section name out of range: %u >= %u"),
2229 i, sym.get_st_name(),
2230 static_cast<unsigned int>(strtab_size));
2231 lv.set_no_output_symtab_entry();
2232 continue;
2233 }
2234
ebcc8304
ILT
2235 const char* name = pnames + sym.get_st_name();
2236
2237 // If needed, add the symbol to the dynamic symbol table string pool.
2238 if (lv.needs_output_dynsym_entry())
2e702c99
RM
2239 {
2240 dynpool->add(name, true, NULL);
2241 ++dyncount;
2242 }
ebcc8304 2243
403676b5
CC
2244 if (strip_all
2245 || (discard_all && lv.may_be_discarded_from_output_symtab()))
ebcc8304
ILT
2246 {
2247 lv.set_no_output_symtab_entry();
2248 continue;
2249 }
2250
cd3c333f 2251 // By default, discard temporary local symbols in merge sections.
bb04269c
DK
2252 // If --discard-locals option is used, discard all temporary local
2253 // symbols. These symbols start with system-specific local label
2254 // prefixes, typically .L for ELF system. We want to be compatible
2255 // with GNU ld so here we essentially use the same check in
2256 // bfd_is_local_label(). The code is different because we already
2257 // know that:
2258 //
2259 // - the symbol is local and thus cannot have global or weak binding.
2260 // - the symbol is not a section symbol.
2261 // - the symbol has a name.
2262 //
2263 // We do not discard a symbol if it needs a dynamic symbol entry.
cd3c333f
CC
2264 if ((discard_locals
2265 || (discard_sec_merge
2266 && is_ordinary
2267 && out_section_offsets[shndx] == invalid_address))
bb04269c
DK
2268 && sym.get_st_type() != elfcpp::STT_FILE
2269 && !lv.needs_output_dynsym_entry()
d3bbad62 2270 && lv.may_be_discarded_from_output_symtab()
2ea97941 2271 && parameters->target().is_local_label_name(name))
bb04269c
DK
2272 {
2273 lv.set_no_output_symtab_entry();
2274 continue;
2275 }
2276
8c604651
CS
2277 // Discard the local symbol if -retain_symbols_file is specified
2278 // and the local symbol is not in that file.
2ea97941 2279 if (!parameters->options().should_retain_symbol(name))
2e702c99
RM
2280 {
2281 lv.set_no_output_symtab_entry();
2282 continue;
2283 }
8c604651 2284
bb04269c 2285 // Add the symbol to the symbol table string pool.
2ea97941 2286 pool->add(name, true, NULL);
7bf1f802 2287 ++count;
7bf1f802
ILT
2288 }
2289
2290 this->output_local_symbol_count_ = count;
2291 this->output_local_dynsym_count_ = dyncount;
2292}
2293
aa98ff75
DK
2294// Compute the final value of a local symbol.
2295
2296template<int size, bool big_endian>
6fa2a40b
CC
2297typename Sized_relobj_file<size, big_endian>::Compute_final_local_value_status
2298Sized_relobj_file<size, big_endian>::compute_final_local_value_internal(
aa98ff75
DK
2299 unsigned int r_sym,
2300 const Symbol_value<size>* lv_in,
2301 Symbol_value<size>* lv_out,
2302 bool relocatable,
2303 const Output_sections& out_sections,
2304 const std::vector<Address>& out_offsets,
2305 const Symbol_table* symtab)
2306{
2307 // We are going to overwrite *LV_OUT, if it has a merged symbol value,
2308 // we may have a memory leak.
2309 gold_assert(lv_out->has_output_value());
2310
2311 bool is_ordinary;
2312 unsigned int shndx = lv_in->input_shndx(&is_ordinary);
2e702c99 2313
aa98ff75 2314 // Set the output symbol value.
2e702c99 2315
aa98ff75
DK
2316 if (!is_ordinary)
2317 {
2318 if (shndx == elfcpp::SHN_ABS || Symbol::is_common_shndx(shndx))
2319 lv_out->set_output_value(lv_in->input_value());
2320 else
2321 {
2322 this->error(_("unknown section index %u for local symbol %u"),
2323 shndx, r_sym);
2324 lv_out->set_output_value(0);
2325 return This::CFLV_ERROR;
2326 }
2327 }
2328 else
2329 {
2330 if (shndx >= this->shnum())
2331 {
2332 this->error(_("local symbol %u section index %u out of range"),
2333 r_sym, shndx);
2334 lv_out->set_output_value(0);
2335 return This::CFLV_ERROR;
2336 }
2e702c99 2337
aa98ff75
DK
2338 Output_section* os = out_sections[shndx];
2339 Address secoffset = out_offsets[shndx];
2340 if (symtab->is_section_folded(this, shndx))
2341 {
2342 gold_assert(os == NULL && secoffset == invalid_address);
2343 // Get the os of the section it is folded onto.
2344 Section_id folded = symtab->icf()->get_folded_section(this,
2345 shndx);
2346 gold_assert(folded.first != NULL);
6fa2a40b
CC
2347 Sized_relobj_file<size, big_endian>* folded_obj = reinterpret_cast
2348 <Sized_relobj_file<size, big_endian>*>(folded.first);
aa98ff75
DK
2349 os = folded_obj->output_section(folded.second);
2350 gold_assert(os != NULL);
2351 secoffset = folded_obj->get_output_section_offset(folded.second);
2e702c99 2352
aa98ff75
DK
2353 // This could be a relaxed input section.
2354 if (secoffset == invalid_address)
2355 {
2356 const Output_relaxed_input_section* relaxed_section =
2357 os->find_relaxed_input_section(folded_obj, folded.second);
2358 gold_assert(relaxed_section != NULL);
2359 secoffset = relaxed_section->address() - os->address();
2360 }
2361 }
2e702c99 2362
aa98ff75
DK
2363 if (os == NULL)
2364 {
2365 // This local symbol belongs to a section we are discarding.
2366 // In some cases when applying relocations later, we will
2367 // attempt to match it to the corresponding kept section,
2368 // so we leave the input value unchanged here.
2369 return This::CFLV_DISCARDED;
2370 }
2371 else if (secoffset == invalid_address)
2372 {
2373 uint64_t start;
2e702c99 2374
aa98ff75
DK
2375 // This is a SHF_MERGE section or one which otherwise
2376 // requires special handling.
2377 if (shndx == this->discarded_eh_frame_shndx_)
2378 {
2379 // This local symbol belongs to a discarded .eh_frame
2380 // section. Just treat it like the case in which
2381 // os == NULL above.
2382 gold_assert(this->has_eh_frame_);
2383 return This::CFLV_DISCARDED;
2384 }
2385 else if (!lv_in->is_section_symbol())
2386 {
2387 // This is not a section symbol. We can determine
2388 // the final value now.
2389 lv_out->set_output_value(
2390 os->output_address(this, shndx, lv_in->input_value()));
2391 }
2392 else if (!os->find_starting_output_address(this, shndx, &start))
2393 {
2394 // This is a section symbol, but apparently not one in a
2395 // merged section. First check to see if this is a relaxed
2396 // input section. If so, use its address. Otherwise just
2397 // use the start of the output section. This happens with
2398 // relocatable links when the input object has section
2399 // symbols for arbitrary non-merge sections.
2400 const Output_section_data* posd =
2401 os->find_relaxed_input_section(this, shndx);
2402 if (posd != NULL)
2403 {
2404 Address relocatable_link_adjustment =
2405 relocatable ? os->address() : 0;
2406 lv_out->set_output_value(posd->address()
2407 - relocatable_link_adjustment);
2408 }
2409 else
2410 lv_out->set_output_value(os->address());
2411 }
2412 else
2413 {
2414 // We have to consider the addend to determine the
2415 // value to use in a relocation. START is the start
2416 // of this input section. If we are doing a relocatable
2417 // link, use offset from start output section instead of
2418 // address.
2419 Address adjusted_start =
2420 relocatable ? start - os->address() : start;
2421 Merged_symbol_value<size>* msv =
2422 new Merged_symbol_value<size>(lv_in->input_value(),
2423 adjusted_start);
2424 lv_out->set_merged_symbol_value(msv);
2425 }
2426 }
5efeedf6
CC
2427 else if (lv_in->is_tls_symbol()
2428 || (lv_in->is_section_symbol()
2429 && (os->flags() & elfcpp::SHF_TLS)))
aa98ff75
DK
2430 lv_out->set_output_value(os->tls_offset()
2431 + secoffset
2432 + lv_in->input_value());
2433 else
2434 lv_out->set_output_value((relocatable ? 0 : os->address())
2435 + secoffset
2436 + lv_in->input_value());
2437 }
2438 return This::CFLV_OK;
2439}
2440
2441// Compute final local symbol value. R_SYM is the index of a local
2442// symbol in symbol table. LV points to a symbol value, which is
2443// expected to hold the input value and to be over-written by the
2444// final value. SYMTAB points to a symbol table. Some targets may want
2445// to know would-be-finalized local symbol values in relaxation.
2446// Hence we provide this method. Since this method updates *LV, a
2447// callee should make a copy of the original local symbol value and
2448// use the copy instead of modifying an object's local symbols before
2449// everything is finalized. The caller should also free up any allocated
2450// memory in the return value in *LV.
2451template<int size, bool big_endian>
6fa2a40b
CC
2452typename Sized_relobj_file<size, big_endian>::Compute_final_local_value_status
2453Sized_relobj_file<size, big_endian>::compute_final_local_value(
aa98ff75
DK
2454 unsigned int r_sym,
2455 const Symbol_value<size>* lv_in,
2456 Symbol_value<size>* lv_out,
2457 const Symbol_table* symtab)
2458{
2459 // This is just a wrapper of compute_final_local_value_internal.
2460 const bool relocatable = parameters->options().relocatable();
2461 const Output_sections& out_sections(this->output_sections());
6fa2a40b 2462 const std::vector<Address>& out_offsets(this->section_offsets());
aa98ff75
DK
2463 return this->compute_final_local_value_internal(r_sym, lv_in, lv_out,
2464 relocatable, out_sections,
2465 out_offsets, symtab);
2466}
2467
cb295612 2468// Finalize the local symbols. Here we set the final value in
7bf1f802 2469// THIS->LOCAL_VALUES_ and set their output symbol table indexes.
17a1d0a9 2470// This function is always called from a singleton thread. The actual
7bf1f802
ILT
2471// output of the local symbols will occur in a separate task.
2472
2473template<int size, bool big_endian>
2474unsigned int
6fa2a40b
CC
2475Sized_relobj_file<size, big_endian>::do_finalize_local_symbols(
2476 unsigned int index,
2477 off_t off,
2478 Symbol_table* symtab)
7bf1f802
ILT
2479{
2480 gold_assert(off == static_cast<off_t>(align_address(off, size >> 3)));
2481
2482 const unsigned int loccount = this->local_symbol_count_;
2483 this->local_symbol_offset_ = off;
2484
b4ecf66b 2485 const bool relocatable = parameters->options().relocatable();
ef9beddf 2486 const Output_sections& out_sections(this->output_sections());
6fa2a40b 2487 const std::vector<Address>& out_offsets(this->section_offsets());
7bf1f802
ILT
2488
2489 for (unsigned int i = 1; i < loccount; ++i)
2490 {
aa98ff75 2491 Symbol_value<size>* lv = &this->local_values_[i];
7bf1f802 2492
6695e4b3 2493 Compute_final_local_value_status cflv_status =
aa98ff75
DK
2494 this->compute_final_local_value_internal(i, lv, lv, relocatable,
2495 out_sections, out_offsets,
2496 symtab);
2497 switch (cflv_status)
75f65a3e 2498 {
aa98ff75
DK
2499 case CFLV_OK:
2500 if (!lv->is_output_symtab_index_set())
75f65a3e 2501 {
aa98ff75
DK
2502 lv->set_output_symtab_index(index);
2503 ++index;
75f65a3e 2504 }
aa98ff75
DK
2505 break;
2506 case CFLV_DISCARDED:
2507 case CFLV_ERROR:
2508 // Do nothing.
2509 break;
2510 default:
2511 gold_unreachable();
75f65a3e 2512 }
7bf1f802
ILT
2513 }
2514 return index;
2515}
645f8123 2516
7bf1f802 2517// Set the output dynamic symbol table indexes for the local variables.
c06b7b0b 2518
7bf1f802
ILT
2519template<int size, bool big_endian>
2520unsigned int
6fa2a40b
CC
2521Sized_relobj_file<size, big_endian>::do_set_local_dynsym_indexes(
2522 unsigned int index)
7bf1f802
ILT
2523{
2524 const unsigned int loccount = this->local_symbol_count_;
2525 for (unsigned int i = 1; i < loccount; ++i)
2526 {
2527 Symbol_value<size>& lv(this->local_values_[i]);
2528 if (lv.needs_output_dynsym_entry())
2e702c99
RM
2529 {
2530 lv.set_output_dynsym_index(index);
2531 ++index;
2532 }
75f65a3e 2533 }
7bf1f802
ILT
2534 return index;
2535}
75f65a3e 2536
7bf1f802
ILT
2537// Set the offset where local dynamic symbol information will be stored.
2538// Returns the count of local symbols contributed to the symbol table by
2539// this object.
61ba1cf9 2540
7bf1f802
ILT
2541template<int size, bool big_endian>
2542unsigned int
6fa2a40b 2543Sized_relobj_file<size, big_endian>::do_set_local_dynsym_offset(off_t off)
7bf1f802
ILT
2544{
2545 gold_assert(off == static_cast<off_t>(align_address(off, size >> 3)));
2546 this->local_dynsym_offset_ = off;
2547 return this->output_local_dynsym_count_;
75f65a3e
ILT
2548}
2549
ef15dade
ST
2550// If Symbols_data is not NULL get the section flags from here otherwise
2551// get it from the file.
2552
2553template<int size, bool big_endian>
2554uint64_t
6fa2a40b 2555Sized_relobj_file<size, big_endian>::do_section_flags(unsigned int shndx)
ef15dade
ST
2556{
2557 Symbols_data* sd = this->get_symbols_data();
2558 if (sd != NULL)
2559 {
2560 const unsigned char* pshdrs = sd->section_headers_data
2e702c99 2561 + This::shdr_size * shndx;
ef15dade 2562 typename This::Shdr shdr(pshdrs);
2e702c99 2563 return shdr.get_sh_flags();
ef15dade
ST
2564 }
2565 // If sd is NULL, read the section header from the file.
2e702c99 2566 return this->elf_file_.section_flags(shndx);
ef15dade
ST
2567}
2568
2569// Get the section's ent size from Symbols_data. Called by get_section_contents
2570// in icf.cc
2571
2572template<int size, bool big_endian>
2573uint64_t
6fa2a40b 2574Sized_relobj_file<size, big_endian>::do_section_entsize(unsigned int shndx)
ef15dade
ST
2575{
2576 Symbols_data* sd = this->get_symbols_data();
ca09d69a 2577 gold_assert(sd != NULL);
ef15dade
ST
2578
2579 const unsigned char* pshdrs = sd->section_headers_data
2e702c99 2580 + This::shdr_size * shndx;
ef15dade 2581 typename This::Shdr shdr(pshdrs);
2e702c99 2582 return shdr.get_sh_entsize();
ef15dade
ST
2583}
2584
61ba1cf9
ILT
2585// Write out the local symbols.
2586
2587template<int size, bool big_endian>
2588void
6fa2a40b 2589Sized_relobj_file<size, big_endian>::write_local_symbols(
17a1d0a9
ILT
2590 Output_file* of,
2591 const Stringpool* sympool,
d491d34e
ILT
2592 const Stringpool* dynpool,
2593 Output_symtab_xindex* symtab_xindex,
cdc29364
CC
2594 Output_symtab_xindex* dynsym_xindex,
2595 off_t symtab_off)
61ba1cf9 2596{
99e9a495
ILT
2597 const bool strip_all = parameters->options().strip_all();
2598 if (strip_all)
2599 {
2600 if (this->output_local_dynsym_count_ == 0)
2601 return;
2602 this->output_local_symbol_count_ = 0;
2603 }
9e2dcb77 2604
a3ad94ed 2605 gold_assert(this->symtab_shndx_ != -1U);
645f8123 2606 if (this->symtab_shndx_ == 0)
61ba1cf9
ILT
2607 {
2608 // This object has no symbols. Weird but legal.
2609 return;
2610 }
2611
2612 // Read the symbol table section header.
2ea97941 2613 const unsigned int symtab_shndx = this->symtab_shndx_;
645f8123 2614 typename This::Shdr symtabshdr(this,
2ea97941 2615 this->elf_file_.section_header(symtab_shndx));
a3ad94ed 2616 gold_assert(symtabshdr.get_sh_type() == elfcpp::SHT_SYMTAB);
92e059d8 2617 const unsigned int loccount = this->local_symbol_count_;
a3ad94ed 2618 gold_assert(loccount == symtabshdr.get_sh_info());
61ba1cf9
ILT
2619
2620 // Read the local symbols.
2ea97941
ILT
2621 const int sym_size = This::sym_size;
2622 off_t locsize = loccount * sym_size;
61ba1cf9 2623 const unsigned char* psyms = this->get_view(symtabshdr.get_sh_offset(),
39d0cb0e 2624 locsize, true, false);
61ba1cf9 2625
61ba1cf9 2626 // Read the symbol names.
d491d34e
ILT
2627 const unsigned int strtab_shndx =
2628 this->adjust_shndx(symtabshdr.get_sh_link());
8383303e 2629 section_size_type strtab_size;
645f8123 2630 const unsigned char* pnamesu = this->section_contents(strtab_shndx,
9eb9fa57 2631 &strtab_size,
cb295612 2632 false);
61ba1cf9
ILT
2633 const char* pnames = reinterpret_cast<const char*>(pnamesu);
2634
7bf1f802
ILT
2635 // Get views into the output file for the portions of the symbol table
2636 // and the dynamic symbol table that we will be writing.
2ea97941 2637 off_t output_size = this->output_local_symbol_count_ * sym_size;
f2619d6c 2638 unsigned char* oview = NULL;
7bf1f802 2639 if (output_size > 0)
cdc29364
CC
2640 oview = of->get_output_view(symtab_off + this->local_symbol_offset_,
2641 output_size);
7bf1f802 2642
2ea97941 2643 off_t dyn_output_size = this->output_local_dynsym_count_ * sym_size;
7bf1f802
ILT
2644 unsigned char* dyn_oview = NULL;
2645 if (dyn_output_size > 0)
2646 dyn_oview = of->get_output_view(this->local_dynsym_offset_,
2e702c99 2647 dyn_output_size);
61ba1cf9 2648
e0a1e121 2649 const Output_sections& out_sections(this->output_sections());
c06b7b0b 2650
a3ad94ed 2651 gold_assert(this->local_values_.size() == loccount);
61ba1cf9 2652
61ba1cf9 2653 unsigned char* ov = oview;
7bf1f802 2654 unsigned char* dyn_ov = dyn_oview;
2ea97941
ILT
2655 psyms += sym_size;
2656 for (unsigned int i = 1; i < loccount; ++i, psyms += sym_size)
61ba1cf9
ILT
2657 {
2658 elfcpp::Sym<size, big_endian> isym(psyms);
f6ce93d6 2659
d491d34e
ILT
2660 Symbol_value<size>& lv(this->local_values_[i]);
2661
2662 bool is_ordinary;
2663 unsigned int st_shndx = this->adjust_sym_shndx(i, isym.get_st_shndx(),
2664 &is_ordinary);
2665 if (is_ordinary)
61ba1cf9 2666 {
ef9beddf
ILT
2667 gold_assert(st_shndx < out_sections.size());
2668 if (out_sections[st_shndx] == NULL)
61ba1cf9 2669 continue;
ef9beddf 2670 st_shndx = out_sections[st_shndx]->out_shndx();
d491d34e
ILT
2671 if (st_shndx >= elfcpp::SHN_LORESERVE)
2672 {
d3bbad62 2673 if (lv.has_output_symtab_entry())
d491d34e 2674 symtab_xindex->add(lv.output_symtab_index(), st_shndx);
d3bbad62 2675 if (lv.has_output_dynsym_entry())
d491d34e
ILT
2676 dynsym_xindex->add(lv.output_dynsym_index(), st_shndx);
2677 st_shndx = elfcpp::SHN_XINDEX;
2678 }
61ba1cf9
ILT
2679 }
2680
7bf1f802 2681 // Write the symbol to the output symbol table.
d3bbad62 2682 if (lv.has_output_symtab_entry())
2e702c99
RM
2683 {
2684 elfcpp::Sym_write<size, big_endian> osym(ov);
2685
2686 gold_assert(isym.get_st_name() < strtab_size);
2687 const char* name = pnames + isym.get_st_name();
2688 osym.put_st_name(sympool->get_offset(name));
2689 osym.put_st_value(this->local_values_[i].value(this, 0));
2690 osym.put_st_size(isym.get_st_size());
2691 osym.put_st_info(isym.get_st_info());
2692 osym.put_st_other(isym.get_st_other());
2693 osym.put_st_shndx(st_shndx);
2694
2695 ov += sym_size;
2696 }
7bf1f802
ILT
2697
2698 // Write the symbol to the output dynamic symbol table.
d3bbad62 2699 if (lv.has_output_dynsym_entry())
2e702c99
RM
2700 {
2701 gold_assert(dyn_ov < dyn_oview + dyn_output_size);
2702 elfcpp::Sym_write<size, big_endian> osym(dyn_ov);
2703
2704 gold_assert(isym.get_st_name() < strtab_size);
2705 const char* name = pnames + isym.get_st_name();
2706 osym.put_st_name(dynpool->get_offset(name));
2707 osym.put_st_value(this->local_values_[i].value(this, 0));
2708 osym.put_st_size(isym.get_st_size());
2709 osym.put_st_info(isym.get_st_info());
2710 osym.put_st_other(isym.get_st_other());
2711 osym.put_st_shndx(st_shndx);
2712
2713 dyn_ov += sym_size;
2714 }
7bf1f802 2715 }
f6ce93d6 2716
61ba1cf9 2717
7bf1f802
ILT
2718 if (output_size > 0)
2719 {
2720 gold_assert(ov - oview == output_size);
cdc29364
CC
2721 of->write_output_view(symtab_off + this->local_symbol_offset_,
2722 output_size, oview);
61ba1cf9
ILT
2723 }
2724
7bf1f802
ILT
2725 if (dyn_output_size > 0)
2726 {
2727 gold_assert(dyn_ov - dyn_oview == dyn_output_size);
2728 of->write_output_view(this->local_dynsym_offset_, dyn_output_size,
2e702c99 2729 dyn_oview);
7bf1f802 2730 }
61ba1cf9
ILT
2731}
2732
f7e2ee48
ILT
2733// Set *INFO to symbolic information about the offset OFFSET in the
2734// section SHNDX. Return true if we found something, false if we
2735// found nothing.
2736
2737template<int size, bool big_endian>
2738bool
6fa2a40b 2739Sized_relobj_file<size, big_endian>::get_symbol_location_info(
f7e2ee48 2740 unsigned int shndx,
2ea97941 2741 off_t offset,
f7e2ee48
ILT
2742 Symbol_location_info* info)
2743{
2744 if (this->symtab_shndx_ == 0)
2745 return false;
2746
8383303e 2747 section_size_type symbols_size;
f7e2ee48
ILT
2748 const unsigned char* symbols = this->section_contents(this->symtab_shndx_,
2749 &symbols_size,
2750 false);
2751
d491d34e
ILT
2752 unsigned int symbol_names_shndx =
2753 this->adjust_shndx(this->section_link(this->symtab_shndx_));
8383303e 2754 section_size_type names_size;
f7e2ee48
ILT
2755 const unsigned char* symbol_names_u =
2756 this->section_contents(symbol_names_shndx, &names_size, false);
2757 const char* symbol_names = reinterpret_cast<const char*>(symbol_names_u);
2758
2ea97941
ILT
2759 const int sym_size = This::sym_size;
2760 const size_t count = symbols_size / sym_size;
f7e2ee48
ILT
2761
2762 const unsigned char* p = symbols;
2ea97941 2763 for (size_t i = 0; i < count; ++i, p += sym_size)
f7e2ee48
ILT
2764 {
2765 elfcpp::Sym<size, big_endian> sym(p);
2766
2767 if (sym.get_st_type() == elfcpp::STT_FILE)
2768 {
2769 if (sym.get_st_name() >= names_size)
2770 info->source_file = "(invalid)";
2771 else
2772 info->source_file = symbol_names + sym.get_st_name();
d491d34e 2773 continue;
f7e2ee48 2774 }
d491d34e
ILT
2775
2776 bool is_ordinary;
2777 unsigned int st_shndx = this->adjust_sym_shndx(i, sym.get_st_shndx(),
2778 &is_ordinary);
2779 if (is_ordinary
2780 && st_shndx == shndx
2ea97941 2781 && static_cast<off_t>(sym.get_st_value()) <= offset
d491d34e 2782 && (static_cast<off_t>(sym.get_st_value() + sym.get_st_size())
2ea97941 2783 > offset))
2e702c99 2784 {
60e8b3fc 2785 info->enclosing_symbol_type = sym.get_st_type();
2e702c99 2786 if (sym.get_st_name() > names_size)
f7e2ee48
ILT
2787 info->enclosing_symbol_name = "(invalid)";
2788 else
2e702c99
RM
2789 {
2790 info->enclosing_symbol_name = symbol_names + sym.get_st_name();
2791 if (parameters->options().do_demangle())
2792 {
2793 char* demangled_name = cplus_demangle(
2794 info->enclosing_symbol_name.c_str(),
2795 DMGL_ANSI | DMGL_PARAMS);
2796 if (demangled_name != NULL)
2797 {
2798 info->enclosing_symbol_name.assign(demangled_name);
2799 free(demangled_name);
2800 }
2801 }
2802 }
f7e2ee48 2803 return true;
2e702c99 2804 }
f7e2ee48
ILT
2805 }
2806
2807 return false;
2808}
2809
e94cf127
CC
2810// Look for a kept section corresponding to the given discarded section,
2811// and return its output address. This is used only for relocations in
2812// debugging sections. If we can't find the kept section, return 0.
2813
2814template<int size, bool big_endian>
6fa2a40b
CC
2815typename Sized_relobj_file<size, big_endian>::Address
2816Sized_relobj_file<size, big_endian>::map_to_kept_section(
e94cf127
CC
2817 unsigned int shndx,
2818 bool* found) const
2819{
1ef4d87f
ILT
2820 Relobj* kept_object;
2821 unsigned int kept_shndx;
2822 if (this->get_kept_comdat_section(shndx, &kept_object, &kept_shndx))
e94cf127 2823 {
6fa2a40b
CC
2824 Sized_relobj_file<size, big_endian>* kept_relobj =
2825 static_cast<Sized_relobj_file<size, big_endian>*>(kept_object);
1ef4d87f 2826 Output_section* os = kept_relobj->output_section(kept_shndx);
2ea97941
ILT
2827 Address offset = kept_relobj->get_output_section_offset(kept_shndx);
2828 if (os != NULL && offset != invalid_address)
1ef4d87f
ILT
2829 {
2830 *found = true;
2ea97941 2831 return os->address() + offset;
1ef4d87f 2832 }
e94cf127
CC
2833 }
2834 *found = false;
2835 return 0;
2836}
2837
92de84a6
ILT
2838// Get symbol counts.
2839
2840template<int size, bool big_endian>
2841void
6fa2a40b 2842Sized_relobj_file<size, big_endian>::do_get_global_symbol_counts(
92de84a6
ILT
2843 const Symbol_table*,
2844 size_t* defined,
2845 size_t* used) const
2846{
2847 *defined = this->defined_count_;
2848 size_t count = 0;
cdc29364 2849 for (typename Symbols::const_iterator p = this->symbols_.begin();
92de84a6
ILT
2850 p != this->symbols_.end();
2851 ++p)
2852 if (*p != NULL
2853 && (*p)->source() == Symbol::FROM_OBJECT
2854 && (*p)->object() == this
2855 && (*p)->is_defined())
2856 ++count;
2857 *used = count;
2858}
2859
5dd8762a
CC
2860// Return a view of the decompressed contents of a section. Set *PLEN
2861// to the size. Set *IS_NEW to true if the contents need to be freed
2862// by the caller.
2863
5dd8762a 2864const unsigned char*
0d5bbdb0 2865Object::decompressed_section_contents(
5dd8762a
CC
2866 unsigned int shndx,
2867 section_size_type* plen,
2868 bool* is_new)
2869{
2870 section_size_type buffer_size;
c1027032
CC
2871 const unsigned char* buffer = this->do_section_contents(shndx, &buffer_size,
2872 false);
5dd8762a
CC
2873
2874 if (this->compressed_sections_ == NULL)
2875 {
2876 *plen = buffer_size;
2877 *is_new = false;
2878 return buffer;
2879 }
2880
2881 Compressed_section_map::const_iterator p =
2882 this->compressed_sections_->find(shndx);
2883 if (p == this->compressed_sections_->end())
2884 {
2885 *plen = buffer_size;
2886 *is_new = false;
2887 return buffer;
2888 }
2889
2890 section_size_type uncompressed_size = p->second.size;
2891 if (p->second.contents != NULL)
2892 {
2893 *plen = uncompressed_size;
2894 *is_new = false;
2895 return p->second.contents;
2896 }
2897
2898 unsigned char* uncompressed_data = new unsigned char[uncompressed_size];
2899 if (!decompress_input_section(buffer,
2900 buffer_size,
2901 uncompressed_data,
2902 uncompressed_size))
2903 this->error(_("could not decompress section %s"),
2904 this->do_section_name(shndx).c_str());
2905
2906 // We could cache the results in p->second.contents and store
2907 // false in *IS_NEW, but build_compressed_section_map() would
2908 // have done so if it had expected it to be profitable. If
2909 // we reach this point, we expect to need the contents only
2910 // once in this pass.
2911 *plen = uncompressed_size;
2912 *is_new = true;
2913 return uncompressed_data;
2914}
2915
2916// Discard any buffers of uncompressed sections. This is done
2917// at the end of the Add_symbols task.
2918
5dd8762a 2919void
0d5bbdb0 2920Object::discard_decompressed_sections()
5dd8762a
CC
2921{
2922 if (this->compressed_sections_ == NULL)
2923 return;
2924
2925 for (Compressed_section_map::iterator p = this->compressed_sections_->begin();
2926 p != this->compressed_sections_->end();
2927 ++p)
2928 {
2929 if (p->second.contents != NULL)
2e702c99
RM
2930 {
2931 delete[] p->second.contents;
2932 p->second.contents = NULL;
2933 }
5dd8762a
CC
2934 }
2935}
2936
54dc6425
ILT
2937// Input_objects methods.
2938
008db82e
ILT
2939// Add a regular relocatable object to the list. Return false if this
2940// object should be ignored.
f6ce93d6 2941
008db82e 2942bool
54dc6425
ILT
2943Input_objects::add_object(Object* obj)
2944{
c5818ff1
CC
2945 // Print the filename if the -t/--trace option is selected.
2946 if (parameters->options().trace())
2947 gold_info("%s", obj->name().c_str());
2948
008db82e 2949 if (!obj->is_dynamic())
f6ce93d6 2950 this->relobj_list_.push_back(static_cast<Relobj*>(obj));
008db82e
ILT
2951 else
2952 {
2953 // See if this is a duplicate SONAME.
2954 Dynobj* dynobj = static_cast<Dynobj*>(obj);
9a2d6984 2955 const char* soname = dynobj->soname();
008db82e
ILT
2956
2957 std::pair<Unordered_set<std::string>::iterator, bool> ins =
9a2d6984 2958 this->sonames_.insert(soname);
008db82e
ILT
2959 if (!ins.second)
2960 {
2961 // We have already seen a dynamic object with this soname.
2962 return false;
2963 }
2964
2965 this->dynobj_list_.push_back(dynobj);
2966 }
75f65a3e 2967
92de84a6 2968 // Add this object to the cross-referencer if requested.
dde3f402
ILT
2969 if (parameters->options().user_set_print_symbol_counts()
2970 || parameters->options().cref())
92de84a6
ILT
2971 {
2972 if (this->cref_ == NULL)
2973 this->cref_ = new Cref();
2974 this->cref_->add_object(obj);
2975 }
2976
008db82e 2977 return true;
54dc6425
ILT
2978}
2979
e2827e5f
ILT
2980// For each dynamic object, record whether we've seen all of its
2981// explicit dependencies.
2982
2983void
2984Input_objects::check_dynamic_dependencies() const
2985{
7eaea549 2986 bool issued_copy_dt_needed_error = false;
e2827e5f
ILT
2987 for (Dynobj_list::const_iterator p = this->dynobj_list_.begin();
2988 p != this->dynobj_list_.end();
2989 ++p)
2990 {
2991 const Dynobj::Needed& needed((*p)->needed());
2992 bool found_all = true;
7eaea549
ILT
2993 Dynobj::Needed::const_iterator pneeded;
2994 for (pneeded = needed.begin(); pneeded != needed.end(); ++pneeded)
e2827e5f
ILT
2995 {
2996 if (this->sonames_.find(*pneeded) == this->sonames_.end())
2997 {
2998 found_all = false;
2999 break;
3000 }
3001 }
3002 (*p)->set_has_unknown_needed_entries(!found_all);
7eaea549
ILT
3003
3004 // --copy-dt-needed-entries aka --add-needed is a GNU ld option
612bdda1
ILT
3005 // that gold does not support. However, they cause no trouble
3006 // unless there is a DT_NEEDED entry that we don't know about;
3007 // warn only in that case.
7eaea549
ILT
3008 if (!found_all
3009 && !issued_copy_dt_needed_error
3010 && (parameters->options().copy_dt_needed_entries()
3011 || parameters->options().add_needed()))
3012 {
3013 const char* optname;
3014 if (parameters->options().copy_dt_needed_entries())
3015 optname = "--copy-dt-needed-entries";
3016 else
3017 optname = "--add-needed";
3018 gold_error(_("%s is not supported but is required for %s in %s"),
3019 optname, (*pneeded).c_str(), (*p)->name().c_str());
3020 issued_copy_dt_needed_error = true;
3021 }
e2827e5f
ILT
3022 }
3023}
3024
92de84a6
ILT
3025// Start processing an archive.
3026
3027void
3028Input_objects::archive_start(Archive* archive)
3029{
dde3f402
ILT
3030 if (parameters->options().user_set_print_symbol_counts()
3031 || parameters->options().cref())
92de84a6
ILT
3032 {
3033 if (this->cref_ == NULL)
3034 this->cref_ = new Cref();
3035 this->cref_->add_archive_start(archive);
3036 }
3037}
3038
3039// Stop processing an archive.
3040
3041void
3042Input_objects::archive_stop(Archive* archive)
3043{
dde3f402
ILT
3044 if (parameters->options().user_set_print_symbol_counts()
3045 || parameters->options().cref())
92de84a6
ILT
3046 this->cref_->add_archive_stop(archive);
3047}
3048
3049// Print symbol counts
3050
3051void
3052Input_objects::print_symbol_counts(const Symbol_table* symtab) const
3053{
3054 if (parameters->options().user_set_print_symbol_counts()
3055 && this->cref_ != NULL)
3056 this->cref_->print_symbol_counts(symtab);
3057}
3058
dde3f402
ILT
3059// Print a cross reference table.
3060
3061void
3062Input_objects::print_cref(const Symbol_table* symtab, FILE* f) const
3063{
3064 if (parameters->options().cref() && this->cref_ != NULL)
3065 this->cref_->print_cref(symtab, f);
3066}
3067
92e059d8
ILT
3068// Relocate_info methods.
3069
308ecdc7
ILT
3070// Return a string describing the location of a relocation when file
3071// and lineno information is not available. This is only used in
3072// error messages.
92e059d8
ILT
3073
3074template<int size, bool big_endian>
3075std::string
f7e2ee48 3076Relocate_info<size, big_endian>::location(size_t, off_t offset) const
92e059d8 3077{
a55ce7fe 3078 Sized_dwarf_line_info<size, big_endian> line_info(this->object);
308ecdc7
ILT
3079 std::string ret = line_info.addr2line(this->data_shndx, offset, NULL);
3080 if (!ret.empty())
3081 return ret;
3082
3083 ret = this->object->name();
4c50553d 3084
f7e2ee48
ILT
3085 Symbol_location_info info;
3086 if (this->object->get_symbol_location_info(this->data_shndx, offset, &info))
3087 {
308ecdc7
ILT
3088 if (!info.source_file.empty())
3089 {
3090 ret += ":";
3091 ret += info.source_file;
3092 }
60e8b3fc
CC
3093 ret += ":";
3094 if (info.enclosing_symbol_type == elfcpp::STT_FUNC)
3095 ret += _("function ");
3096 ret += info.enclosing_symbol_name;
308ecdc7 3097 return ret;
f7e2ee48 3098 }
308ecdc7
ILT
3099
3100 ret += "(";
3101 ret += this->object->section_name(this->data_shndx);
3102 char buf[100];
3103 snprintf(buf, sizeof buf, "+0x%lx)", static_cast<long>(offset));
3104 ret += buf;
92e059d8
ILT
3105 return ret;
3106}
3107
bae7f79e
ILT
3108} // End namespace gold.
3109
3110namespace
3111{
3112
3113using namespace gold;
3114
3115// Read an ELF file with the header and return the appropriate
3116// instance of Object.
3117
3118template<int size, bool big_endian>
3119Object*
3120make_elf_sized_object(const std::string& name, Input_file* input_file,
029ba973
ILT
3121 off_t offset, const elfcpp::Ehdr<size, big_endian>& ehdr,
3122 bool* punconfigured)
bae7f79e 3123{
2e702c99
RM
3124 Target* target = select_target(input_file, offset,
3125 ehdr.get_e_machine(), size, big_endian,
f733487b
DK
3126 ehdr.get_e_ident()[elfcpp::EI_OSABI],
3127 ehdr.get_e_ident()[elfcpp::EI_ABIVERSION]);
3128 if (target == NULL)
3129 gold_fatal(_("%s: unsupported ELF machine number %d"),
3130 name.c_str(), ehdr.get_e_machine());
029ba973
ILT
3131
3132 if (!parameters->target_valid())
3133 set_parameters_target(target);
3134 else if (target != &parameters->target())
3135 {
3136 if (punconfigured != NULL)
3137 *punconfigured = true;
3138 else
3139 gold_error(_("%s: incompatible target"), name.c_str());
3140 return NULL;
3141 }
3142
f733487b
DK
3143 return target->make_elf_object<size, big_endian>(name, input_file, offset,
3144 ehdr);
bae7f79e
ILT
3145}
3146
3147} // End anonymous namespace.
3148
3149namespace gold
3150{
3151
f6060a4d
ILT
3152// Return whether INPUT_FILE is an ELF object.
3153
3154bool
3155is_elf_object(Input_file* input_file, off_t offset,
ca09d69a 3156 const unsigned char** start, int* read_size)
f6060a4d
ILT
3157{
3158 off_t filesize = input_file->file().filesize();
c549a694 3159 int want = elfcpp::Elf_recognizer::max_header_size;
f6060a4d
ILT
3160 if (filesize - offset < want)
3161 want = filesize - offset;
3162
3163 const unsigned char* p = input_file->file().get_view(offset, 0, want,
3164 true, false);
3165 *start = p;
3166 *read_size = want;
3167
c549a694 3168 return elfcpp::Elf_recognizer::is_elf_file(p, want);
f6060a4d
ILT
3169}
3170
bae7f79e
ILT
3171// Read an ELF file and return the appropriate instance of Object.
3172
3173Object*
3174make_elf_object(const std::string& name, Input_file* input_file, off_t offset,
15f8229b
ILT
3175 const unsigned char* p, section_offset_type bytes,
3176 bool* punconfigured)
bae7f79e 3177{
15f8229b
ILT
3178 if (punconfigured != NULL)
3179 *punconfigured = false;
3180
c549a694 3181 std::string error;
ac33a407
DK
3182 bool big_endian = false;
3183 int size = 0;
c549a694 3184 if (!elfcpp::Elf_recognizer::is_valid_header(p, bytes, &size,
2e702c99 3185 &big_endian, &error))
bae7f79e 3186 {
c549a694 3187 gold_error(_("%s: %s"), name.c_str(), error.c_str());
75f2446e 3188 return NULL;
bae7f79e
ILT
3189 }
3190
c549a694 3191 if (size == 32)
bae7f79e 3192 {
bae7f79e
ILT
3193 if (big_endian)
3194 {
193a53d9 3195#ifdef HAVE_TARGET_32_BIG
bae7f79e
ILT
3196 elfcpp::Ehdr<32, true> ehdr(p);
3197 return make_elf_sized_object<32, true>(name, input_file,
029ba973 3198 offset, ehdr, punconfigured);
193a53d9 3199#else
15f8229b
ILT
3200 if (punconfigured != NULL)
3201 *punconfigured = true;
3202 else
3203 gold_error(_("%s: not configured to support "
3204 "32-bit big-endian object"),
3205 name.c_str());
75f2446e 3206 return NULL;
193a53d9 3207#endif
bae7f79e
ILT
3208 }
3209 else
3210 {
193a53d9 3211#ifdef HAVE_TARGET_32_LITTLE
bae7f79e
ILT
3212 elfcpp::Ehdr<32, false> ehdr(p);
3213 return make_elf_sized_object<32, false>(name, input_file,
029ba973 3214 offset, ehdr, punconfigured);
193a53d9 3215#else
15f8229b
ILT
3216 if (punconfigured != NULL)
3217 *punconfigured = true;
3218 else
3219 gold_error(_("%s: not configured to support "
3220 "32-bit little-endian object"),
3221 name.c_str());
75f2446e 3222 return NULL;
193a53d9 3223#endif
bae7f79e
ILT
3224 }
3225 }
c549a694 3226 else if (size == 64)
bae7f79e 3227 {
bae7f79e
ILT
3228 if (big_endian)
3229 {
193a53d9 3230#ifdef HAVE_TARGET_64_BIG
bae7f79e
ILT
3231 elfcpp::Ehdr<64, true> ehdr(p);
3232 return make_elf_sized_object<64, true>(name, input_file,
029ba973 3233 offset, ehdr, punconfigured);
193a53d9 3234#else
15f8229b
ILT
3235 if (punconfigured != NULL)
3236 *punconfigured = true;
3237 else
3238 gold_error(_("%s: not configured to support "
3239 "64-bit big-endian object"),
3240 name.c_str());
75f2446e 3241 return NULL;
193a53d9 3242#endif
bae7f79e
ILT
3243 }
3244 else
3245 {
193a53d9 3246#ifdef HAVE_TARGET_64_LITTLE
bae7f79e
ILT
3247 elfcpp::Ehdr<64, false> ehdr(p);
3248 return make_elf_sized_object<64, false>(name, input_file,
029ba973 3249 offset, ehdr, punconfigured);
193a53d9 3250#else
15f8229b
ILT
3251 if (punconfigured != NULL)
3252 *punconfigured = true;
3253 else
3254 gold_error(_("%s: not configured to support "
3255 "64-bit little-endian object"),
3256 name.c_str());
75f2446e 3257 return NULL;
193a53d9 3258#endif
bae7f79e
ILT
3259 }
3260 }
c549a694
ILT
3261 else
3262 gold_unreachable();
bae7f79e
ILT
3263}
3264
04bf7072
ILT
3265// Instantiate the templates we need.
3266
dbe40a88
RÁE
3267#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
3268template
3269void
3270Relobj::initialize_input_to_output_map<64>(unsigned int shndx,
beb8418f 3271 elfcpp::Elf_types<64>::Elf_Addr starting_address,
dbe40a88 3272 Unordered_map<section_offset_type,
beb8418f 3273 elfcpp::Elf_types<64>::Elf_Addr>* output_addresses) const;
dbe40a88
RÁE
3274#endif
3275
3276#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
3277template
3278void
3279Relobj::initialize_input_to_output_map<32>(unsigned int shndx,
beb8418f 3280 elfcpp::Elf_types<32>::Elf_Addr starting_address,
dbe40a88 3281 Unordered_map<section_offset_type,
beb8418f 3282 elfcpp::Elf_types<32>::Elf_Addr>* output_addresses) const;
dbe40a88
RÁE
3283#endif
3284
04bf7072
ILT
3285#ifdef HAVE_TARGET_32_LITTLE
3286template
3287void
3288Object::read_section_data<32, false>(elfcpp::Elf_file<32, false, Object>*,
3289 Read_symbols_data*);
dc3714f3
AM
3290template
3291const unsigned char*
3292Object::find_shdr<32,false>(const unsigned char*, const char*, const char*,
3293 section_size_type, const unsigned char*) const;
04bf7072
ILT
3294#endif
3295
3296#ifdef HAVE_TARGET_32_BIG
3297template
3298void
3299Object::read_section_data<32, true>(elfcpp::Elf_file<32, true, Object>*,
3300 Read_symbols_data*);
dc3714f3
AM
3301template
3302const unsigned char*
3303Object::find_shdr<32,true>(const unsigned char*, const char*, const char*,
3304 section_size_type, const unsigned char*) const;
04bf7072
ILT
3305#endif
3306
3307#ifdef HAVE_TARGET_64_LITTLE
3308template
3309void
3310Object::read_section_data<64, false>(elfcpp::Elf_file<64, false, Object>*,
3311 Read_symbols_data*);
dc3714f3
AM
3312template
3313const unsigned char*
3314Object::find_shdr<64,false>(const unsigned char*, const char*, const char*,
3315 section_size_type, const unsigned char*) const;
04bf7072
ILT
3316#endif
3317
3318#ifdef HAVE_TARGET_64_BIG
3319template
3320void
3321Object::read_section_data<64, true>(elfcpp::Elf_file<64, true, Object>*,
3322 Read_symbols_data*);
dc3714f3
AM
3323template
3324const unsigned char*
3325Object::find_shdr<64,true>(const unsigned char*, const char*, const char*,
3326 section_size_type, const unsigned char*) const;
04bf7072 3327#endif
bae7f79e 3328
193a53d9 3329#ifdef HAVE_TARGET_32_LITTLE
c6905c28
CC
3330template
3331class Sized_relobj<32, false>;
3332
bae7f79e 3333template
6fa2a40b 3334class Sized_relobj_file<32, false>;
193a53d9 3335#endif
bae7f79e 3336
193a53d9 3337#ifdef HAVE_TARGET_32_BIG
c6905c28
CC
3338template
3339class Sized_relobj<32, true>;
3340
bae7f79e 3341template
6fa2a40b 3342class Sized_relobj_file<32, true>;
193a53d9 3343#endif
bae7f79e 3344
193a53d9 3345#ifdef HAVE_TARGET_64_LITTLE
c6905c28
CC
3346template
3347class Sized_relobj<64, false>;
3348
bae7f79e 3349template
6fa2a40b 3350class Sized_relobj_file<64, false>;
193a53d9 3351#endif
bae7f79e 3352
193a53d9 3353#ifdef HAVE_TARGET_64_BIG
c6905c28
CC
3354template
3355class Sized_relobj<64, true>;
3356
bae7f79e 3357template
6fa2a40b 3358class Sized_relobj_file<64, true>;
193a53d9 3359#endif
bae7f79e 3360
193a53d9 3361#ifdef HAVE_TARGET_32_LITTLE
92e059d8
ILT
3362template
3363struct Relocate_info<32, false>;
193a53d9 3364#endif
92e059d8 3365
193a53d9 3366#ifdef HAVE_TARGET_32_BIG
92e059d8
ILT
3367template
3368struct Relocate_info<32, true>;
193a53d9 3369#endif
92e059d8 3370
193a53d9 3371#ifdef HAVE_TARGET_64_LITTLE
92e059d8
ILT
3372template
3373struct Relocate_info<64, false>;
193a53d9 3374#endif
92e059d8 3375
193a53d9 3376#ifdef HAVE_TARGET_64_BIG
92e059d8
ILT
3377template
3378struct Relocate_info<64, true>;
193a53d9 3379#endif
92e059d8 3380
9d3b86f6
ILT
3381#ifdef HAVE_TARGET_32_LITTLE
3382template
3383void
3384Xindex::initialize_symtab_xindex<32, false>(Object*, unsigned int);
3385
3386template
3387void
3388Xindex::read_symtab_xindex<32, false>(Object*, unsigned int,
3389 const unsigned char*);
3390#endif
3391
3392#ifdef HAVE_TARGET_32_BIG
3393template
3394void
3395Xindex::initialize_symtab_xindex<32, true>(Object*, unsigned int);
3396
3397template
3398void
3399Xindex::read_symtab_xindex<32, true>(Object*, unsigned int,
3400 const unsigned char*);
3401#endif
3402
3403#ifdef HAVE_TARGET_64_LITTLE
3404template
3405void
3406Xindex::initialize_symtab_xindex<64, false>(Object*, unsigned int);
3407
3408template
3409void
3410Xindex::read_symtab_xindex<64, false>(Object*, unsigned int,
3411 const unsigned char*);
3412#endif
3413
3414#ifdef HAVE_TARGET_64_BIG
3415template
3416void
3417Xindex::initialize_symtab_xindex<64, true>(Object*, unsigned int);
3418
3419template
3420void
3421Xindex::read_symtab_xindex<64, true>(Object*, unsigned int,
3422 const unsigned char*);
3423#endif
3424
bae7f79e 3425} // End namespace gold.
This page took 0.569759 seconds and 4 git commands to generate.