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