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