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