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