*** empty log message ***
[deliverable/binutils-gdb.git] / gold / output.cc
CommitLineData
a2fb1b05
ILT
1// output.cc -- manage the output file for gold
2
e29e076a 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
a2fb1b05
ILT
23#include "gold.h"
24
25#include <cstdlib>
04bf7072 26#include <cstring>
61ba1cf9
ILT
27#include <cerrno>
28#include <fcntl.h>
29#include <unistd.h>
30#include <sys/mman.h>
4e9d8586 31#include <sys/stat.h>
75f65a3e 32#include <algorithm>
6a89f575 33#include "libiberty.h"
a2fb1b05 34
7e1edb90 35#include "parameters.h"
a2fb1b05 36#include "object.h"
ead1e424
ILT
37#include "symtab.h"
38#include "reloc.h"
b8e6aad9 39#include "merge.h"
2a00e4fb 40#include "descriptors.h"
a2fb1b05
ILT
41#include "output.h"
42
c420411f
ILT
43// Some BSD systems still use MAP_ANON instead of MAP_ANONYMOUS
44#ifndef MAP_ANONYMOUS
45# define MAP_ANONYMOUS MAP_ANON
46#endif
47
9201d894
ILT
48#ifndef HAVE_POSIX_FALLOCATE
49// A dummy, non general, version of posix_fallocate. Here we just set
50// the file size and hope that there is enough disk space. FIXME: We
51// could allocate disk space by walking block by block and writing a
52// zero byte into each block.
53static int
54posix_fallocate(int o, off_t offset, off_t len)
55{
56 return ftruncate(o, offset + len);
57}
58#endif // !defined(HAVE_POSIX_FALLOCATE)
59
a2fb1b05
ILT
60namespace gold
61{
62
a3ad94ed
ILT
63// Output_data variables.
64
27bc2bce 65bool Output_data::allocated_sizes_are_fixed;
a3ad94ed 66
a2fb1b05
ILT
67// Output_data methods.
68
69Output_data::~Output_data()
70{
71}
72
730cdc88
ILT
73// Return the default alignment for the target size.
74
75uint64_t
76Output_data::default_alignment()
77{
8851ecca
ILT
78 return Output_data::default_alignment_for_size(
79 parameters->target().get_size());
730cdc88
ILT
80}
81
75f65a3e
ILT
82// Return the default alignment for a size--32 or 64.
83
84uint64_t
730cdc88 85Output_data::default_alignment_for_size(int size)
75f65a3e
ILT
86{
87 if (size == 32)
88 return 4;
89 else if (size == 64)
90 return 8;
91 else
a3ad94ed 92 gold_unreachable();
75f65a3e
ILT
93}
94
75f65a3e
ILT
95// Output_section_header methods. This currently assumes that the
96// segment and section lists are complete at construction time.
97
98Output_section_headers::Output_section_headers(
16649710
ILT
99 const Layout* layout,
100 const Layout::Segment_list* segment_list,
6a74a719 101 const Layout::Section_list* section_list,
16649710 102 const Layout::Section_list* unattached_section_list,
d491d34e
ILT
103 const Stringpool* secnamepool,
104 const Output_section* shstrtab_section)
9025d29d 105 : layout_(layout),
75f65a3e 106 segment_list_(segment_list),
6a74a719 107 section_list_(section_list),
a3ad94ed 108 unattached_section_list_(unattached_section_list),
d491d34e
ILT
109 secnamepool_(secnamepool),
110 shstrtab_section_(shstrtab_section)
20e6d0d6
DK
111{
112}
113
114// Compute the current data size.
115
116off_t
117Output_section_headers::do_size() const
75f65a3e 118{
61ba1cf9
ILT
119 // Count all the sections. Start with 1 for the null section.
120 off_t count = 1;
8851ecca 121 if (!parameters->options().relocatable())
6a74a719 122 {
20e6d0d6
DK
123 for (Layout::Segment_list::const_iterator p =
124 this->segment_list_->begin();
125 p != this->segment_list_->end();
6a74a719
ILT
126 ++p)
127 if ((*p)->type() == elfcpp::PT_LOAD)
128 count += (*p)->output_section_count();
129 }
130 else
131 {
20e6d0d6
DK
132 for (Layout::Section_list::const_iterator p =
133 this->section_list_->begin();
134 p != this->section_list_->end();
6a74a719
ILT
135 ++p)
136 if (((*p)->flags() & elfcpp::SHF_ALLOC) != 0)
137 ++count;
138 }
20e6d0d6 139 count += this->unattached_section_list_->size();
75f65a3e 140
8851ecca 141 const int size = parameters->target().get_size();
75f65a3e
ILT
142 int shdr_size;
143 if (size == 32)
144 shdr_size = elfcpp::Elf_sizes<32>::shdr_size;
145 else if (size == 64)
146 shdr_size = elfcpp::Elf_sizes<64>::shdr_size;
147 else
a3ad94ed 148 gold_unreachable();
75f65a3e 149
20e6d0d6 150 return count * shdr_size;
75f65a3e
ILT
151}
152
61ba1cf9
ILT
153// Write out the section headers.
154
75f65a3e 155void
61ba1cf9 156Output_section_headers::do_write(Output_file* of)
a2fb1b05 157{
8851ecca 158 switch (parameters->size_and_endianness())
61ba1cf9 159 {
9025d29d 160#ifdef HAVE_TARGET_32_LITTLE
8851ecca
ILT
161 case Parameters::TARGET_32_LITTLE:
162 this->do_sized_write<32, false>(of);
163 break;
9025d29d 164#endif
8851ecca
ILT
165#ifdef HAVE_TARGET_32_BIG
166 case Parameters::TARGET_32_BIG:
167 this->do_sized_write<32, true>(of);
168 break;
9025d29d 169#endif
9025d29d 170#ifdef HAVE_TARGET_64_LITTLE
8851ecca
ILT
171 case Parameters::TARGET_64_LITTLE:
172 this->do_sized_write<64, false>(of);
173 break;
9025d29d 174#endif
8851ecca
ILT
175#ifdef HAVE_TARGET_64_BIG
176 case Parameters::TARGET_64_BIG:
177 this->do_sized_write<64, true>(of);
178 break;
179#endif
180 default:
181 gold_unreachable();
61ba1cf9 182 }
61ba1cf9
ILT
183}
184
185template<int size, bool big_endian>
186void
187Output_section_headers::do_sized_write(Output_file* of)
188{
189 off_t all_shdrs_size = this->data_size();
190 unsigned char* view = of->get_output_view(this->offset(), all_shdrs_size);
191
192 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
193 unsigned char* v = view;
194
195 {
196 typename elfcpp::Shdr_write<size, big_endian> oshdr(v);
197 oshdr.put_sh_name(0);
198 oshdr.put_sh_type(elfcpp::SHT_NULL);
199 oshdr.put_sh_flags(0);
200 oshdr.put_sh_addr(0);
201 oshdr.put_sh_offset(0);
d491d34e
ILT
202
203 size_t section_count = (this->data_size()
204 / elfcpp::Elf_sizes<size>::shdr_size);
205 if (section_count < elfcpp::SHN_LORESERVE)
206 oshdr.put_sh_size(0);
207 else
208 oshdr.put_sh_size(section_count);
209
210 unsigned int shstrndx = this->shstrtab_section_->out_shndx();
211 if (shstrndx < elfcpp::SHN_LORESERVE)
212 oshdr.put_sh_link(0);
213 else
214 oshdr.put_sh_link(shstrndx);
215
5696ab0b
ILT
216 size_t segment_count = this->segment_list_->size();
217 oshdr.put_sh_info(segment_count >= elfcpp::PN_XNUM ? segment_count : 0);
218
61ba1cf9
ILT
219 oshdr.put_sh_addralign(0);
220 oshdr.put_sh_entsize(0);
221 }
222
223 v += shdr_size;
224
6a74a719 225 unsigned int shndx = 1;
8851ecca 226 if (!parameters->options().relocatable())
6a74a719
ILT
227 {
228 for (Layout::Segment_list::const_iterator p =
229 this->segment_list_->begin();
230 p != this->segment_list_->end();
231 ++p)
232 v = (*p)->write_section_headers<size, big_endian>(this->layout_,
233 this->secnamepool_,
234 v,
235 &shndx);
236 }
237 else
238 {
239 for (Layout::Section_list::const_iterator p =
240 this->section_list_->begin();
241 p != this->section_list_->end();
242 ++p)
243 {
244 // We do unallocated sections below, except that group
245 // sections have to come first.
246 if (((*p)->flags() & elfcpp::SHF_ALLOC) == 0
247 && (*p)->type() != elfcpp::SHT_GROUP)
248 continue;
249 gold_assert(shndx == (*p)->out_shndx());
250 elfcpp::Shdr_write<size, big_endian> oshdr(v);
251 (*p)->write_header(this->layout_, this->secnamepool_, &oshdr);
252 v += shdr_size;
253 ++shndx;
254 }
255 }
256
a3ad94ed 257 for (Layout::Section_list::const_iterator p =
16649710
ILT
258 this->unattached_section_list_->begin();
259 p != this->unattached_section_list_->end();
61ba1cf9
ILT
260 ++p)
261 {
6a74a719
ILT
262 // For a relocatable link, we did unallocated group sections
263 // above, since they have to come first.
264 if ((*p)->type() == elfcpp::SHT_GROUP
8851ecca 265 && parameters->options().relocatable())
6a74a719 266 continue;
a3ad94ed 267 gold_assert(shndx == (*p)->out_shndx());
61ba1cf9 268 elfcpp::Shdr_write<size, big_endian> oshdr(v);
16649710 269 (*p)->write_header(this->layout_, this->secnamepool_, &oshdr);
61ba1cf9 270 v += shdr_size;
ead1e424 271 ++shndx;
61ba1cf9
ILT
272 }
273
274 of->write_output_view(this->offset(), all_shdrs_size, view);
a2fb1b05
ILT
275}
276
54dc6425
ILT
277// Output_segment_header methods.
278
61ba1cf9 279Output_segment_headers::Output_segment_headers(
61ba1cf9 280 const Layout::Segment_list& segment_list)
9025d29d 281 : segment_list_(segment_list)
61ba1cf9 282{
61ba1cf9
ILT
283}
284
54dc6425 285void
61ba1cf9 286Output_segment_headers::do_write(Output_file* of)
75f65a3e 287{
8851ecca 288 switch (parameters->size_and_endianness())
61ba1cf9 289 {
9025d29d 290#ifdef HAVE_TARGET_32_LITTLE
8851ecca
ILT
291 case Parameters::TARGET_32_LITTLE:
292 this->do_sized_write<32, false>(of);
293 break;
9025d29d 294#endif
8851ecca
ILT
295#ifdef HAVE_TARGET_32_BIG
296 case Parameters::TARGET_32_BIG:
297 this->do_sized_write<32, true>(of);
298 break;
9025d29d 299#endif
9025d29d 300#ifdef HAVE_TARGET_64_LITTLE
8851ecca
ILT
301 case Parameters::TARGET_64_LITTLE:
302 this->do_sized_write<64, false>(of);
303 break;
9025d29d 304#endif
8851ecca
ILT
305#ifdef HAVE_TARGET_64_BIG
306 case Parameters::TARGET_64_BIG:
307 this->do_sized_write<64, true>(of);
308 break;
309#endif
310 default:
311 gold_unreachable();
61ba1cf9 312 }
61ba1cf9
ILT
313}
314
315template<int size, bool big_endian>
316void
317Output_segment_headers::do_sized_write(Output_file* of)
318{
319 const int phdr_size = elfcpp::Elf_sizes<size>::phdr_size;
320 off_t all_phdrs_size = this->segment_list_.size() * phdr_size;
a445fddf 321 gold_assert(all_phdrs_size == this->data_size());
61ba1cf9
ILT
322 unsigned char* view = of->get_output_view(this->offset(),
323 all_phdrs_size);
324 unsigned char* v = view;
325 for (Layout::Segment_list::const_iterator p = this->segment_list_.begin();
326 p != this->segment_list_.end();
327 ++p)
328 {
329 elfcpp::Phdr_write<size, big_endian> ophdr(v);
330 (*p)->write_header(&ophdr);
331 v += phdr_size;
332 }
333
a445fddf
ILT
334 gold_assert(v - view == all_phdrs_size);
335
61ba1cf9 336 of->write_output_view(this->offset(), all_phdrs_size, view);
75f65a3e
ILT
337}
338
20e6d0d6
DK
339off_t
340Output_segment_headers::do_size() const
341{
342 const int size = parameters->target().get_size();
343 int phdr_size;
344 if (size == 32)
345 phdr_size = elfcpp::Elf_sizes<32>::phdr_size;
346 else if (size == 64)
347 phdr_size = elfcpp::Elf_sizes<64>::phdr_size;
348 else
349 gold_unreachable();
350
351 return this->segment_list_.size() * phdr_size;
352}
353
75f65a3e
ILT
354// Output_file_header methods.
355
9025d29d 356Output_file_header::Output_file_header(const Target* target,
75f65a3e 357 const Symbol_table* symtab,
d391083d 358 const Output_segment_headers* osh,
2ea97941 359 const char* entry)
9025d29d 360 : target_(target),
75f65a3e 361 symtab_(symtab),
61ba1cf9 362 segment_header_(osh),
75f65a3e 363 section_header_(NULL),
d391083d 364 shstrtab_(NULL),
2ea97941 365 entry_(entry)
75f65a3e 366{
20e6d0d6 367 this->set_data_size(this->do_size());
75f65a3e
ILT
368}
369
370// Set the section table information for a file header.
371
372void
373Output_file_header::set_section_info(const Output_section_headers* shdrs,
374 const Output_section* shstrtab)
375{
376 this->section_header_ = shdrs;
377 this->shstrtab_ = shstrtab;
378}
379
380// Write out the file header.
381
382void
61ba1cf9 383Output_file_header::do_write(Output_file* of)
54dc6425 384{
27bc2bce
ILT
385 gold_assert(this->offset() == 0);
386
8851ecca 387 switch (parameters->size_and_endianness())
61ba1cf9 388 {
9025d29d 389#ifdef HAVE_TARGET_32_LITTLE
8851ecca
ILT
390 case Parameters::TARGET_32_LITTLE:
391 this->do_sized_write<32, false>(of);
392 break;
9025d29d 393#endif
8851ecca
ILT
394#ifdef HAVE_TARGET_32_BIG
395 case Parameters::TARGET_32_BIG:
396 this->do_sized_write<32, true>(of);
397 break;
9025d29d 398#endif
9025d29d 399#ifdef HAVE_TARGET_64_LITTLE
8851ecca
ILT
400 case Parameters::TARGET_64_LITTLE:
401 this->do_sized_write<64, false>(of);
402 break;
9025d29d 403#endif
8851ecca
ILT
404#ifdef HAVE_TARGET_64_BIG
405 case Parameters::TARGET_64_BIG:
406 this->do_sized_write<64, true>(of);
407 break;
408#endif
409 default:
410 gold_unreachable();
61ba1cf9 411 }
61ba1cf9
ILT
412}
413
414// Write out the file header with appropriate size and endianess.
415
416template<int size, bool big_endian>
417void
418Output_file_header::do_sized_write(Output_file* of)
419{
a3ad94ed 420 gold_assert(this->offset() == 0);
61ba1cf9
ILT
421
422 int ehdr_size = elfcpp::Elf_sizes<size>::ehdr_size;
423 unsigned char* view = of->get_output_view(0, ehdr_size);
424 elfcpp::Ehdr_write<size, big_endian> oehdr(view);
425
426 unsigned char e_ident[elfcpp::EI_NIDENT];
427 memset(e_ident, 0, elfcpp::EI_NIDENT);
428 e_ident[elfcpp::EI_MAG0] = elfcpp::ELFMAG0;
429 e_ident[elfcpp::EI_MAG1] = elfcpp::ELFMAG1;
430 e_ident[elfcpp::EI_MAG2] = elfcpp::ELFMAG2;
431 e_ident[elfcpp::EI_MAG3] = elfcpp::ELFMAG3;
432 if (size == 32)
433 e_ident[elfcpp::EI_CLASS] = elfcpp::ELFCLASS32;
434 else if (size == 64)
435 e_ident[elfcpp::EI_CLASS] = elfcpp::ELFCLASS64;
436 else
a3ad94ed 437 gold_unreachable();
61ba1cf9
ILT
438 e_ident[elfcpp::EI_DATA] = (big_endian
439 ? elfcpp::ELFDATA2MSB
440 : elfcpp::ELFDATA2LSB);
441 e_ident[elfcpp::EI_VERSION] = elfcpp::EV_CURRENT;
61ba1cf9
ILT
442 oehdr.put_e_ident(e_ident);
443
444 elfcpp::ET e_type;
8851ecca 445 if (parameters->options().relocatable())
61ba1cf9 446 e_type = elfcpp::ET_REL;
374ad285 447 else if (parameters->options().output_is_position_independent())
436ca963 448 e_type = elfcpp::ET_DYN;
61ba1cf9
ILT
449 else
450 e_type = elfcpp::ET_EXEC;
451 oehdr.put_e_type(e_type);
452
453 oehdr.put_e_machine(this->target_->machine_code());
454 oehdr.put_e_version(elfcpp::EV_CURRENT);
455
d391083d 456 oehdr.put_e_entry(this->entry<size>());
61ba1cf9 457
6a74a719
ILT
458 if (this->segment_header_ == NULL)
459 oehdr.put_e_phoff(0);
460 else
461 oehdr.put_e_phoff(this->segment_header_->offset());
462
61ba1cf9 463 oehdr.put_e_shoff(this->section_header_->offset());
d5b40221 464 oehdr.put_e_flags(this->target_->processor_specific_flags());
61ba1cf9 465 oehdr.put_e_ehsize(elfcpp::Elf_sizes<size>::ehdr_size);
6a74a719
ILT
466
467 if (this->segment_header_ == NULL)
468 {
469 oehdr.put_e_phentsize(0);
470 oehdr.put_e_phnum(0);
471 }
472 else
473 {
474 oehdr.put_e_phentsize(elfcpp::Elf_sizes<size>::phdr_size);
5696ab0b
ILT
475 size_t phnum = (this->segment_header_->data_size()
476 / elfcpp::Elf_sizes<size>::phdr_size);
477 if (phnum > elfcpp::PN_XNUM)
478 phnum = elfcpp::PN_XNUM;
479 oehdr.put_e_phnum(phnum);
6a74a719
ILT
480 }
481
61ba1cf9 482 oehdr.put_e_shentsize(elfcpp::Elf_sizes<size>::shdr_size);
d491d34e
ILT
483 size_t section_count = (this->section_header_->data_size()
484 / elfcpp::Elf_sizes<size>::shdr_size);
485
486 if (section_count < elfcpp::SHN_LORESERVE)
487 oehdr.put_e_shnum(this->section_header_->data_size()
488 / elfcpp::Elf_sizes<size>::shdr_size);
489 else
490 oehdr.put_e_shnum(0);
491
492 unsigned int shstrndx = this->shstrtab_->out_shndx();
493 if (shstrndx < elfcpp::SHN_LORESERVE)
494 oehdr.put_e_shstrndx(this->shstrtab_->out_shndx());
495 else
496 oehdr.put_e_shstrndx(elfcpp::SHN_XINDEX);
61ba1cf9 497
36959681
ILT
498 // Let the target adjust the ELF header, e.g., to set EI_OSABI in
499 // the e_ident field.
500 parameters->target().adjust_elf_header(view, ehdr_size);
501
61ba1cf9 502 of->write_output_view(0, ehdr_size, view);
54dc6425
ILT
503}
504
d391083d
ILT
505// Return the value to use for the entry address. THIS->ENTRY_ is the
506// symbol specified on the command line, if any.
507
508template<int size>
509typename elfcpp::Elf_types<size>::Elf_Addr
510Output_file_header::entry()
511{
512 const bool should_issue_warning = (this->entry_ != NULL
8851ecca
ILT
513 && !parameters->options().relocatable()
514 && !parameters->options().shared());
d391083d
ILT
515
516 // FIXME: Need to support target specific entry symbol.
2ea97941
ILT
517 const char* entry = this->entry_;
518 if (entry == NULL)
519 entry = "_start";
d391083d 520
2ea97941 521 Symbol* sym = this->symtab_->lookup(entry);
d391083d
ILT
522
523 typename Sized_symbol<size>::Value_type v;
524 if (sym != NULL)
525 {
526 Sized_symbol<size>* ssym;
527 ssym = this->symtab_->get_sized_symbol<size>(sym);
528 if (!ssym->is_defined() && should_issue_warning)
2ea97941 529 gold_warning("entry symbol '%s' exists but is not defined", entry);
d391083d
ILT
530 v = ssym->value();
531 }
532 else
533 {
534 // We couldn't find the entry symbol. See if we can parse it as
535 // a number. This supports, e.g., -e 0x1000.
536 char* endptr;
2ea97941 537 v = strtoull(entry, &endptr, 0);
d391083d
ILT
538 if (*endptr != '\0')
539 {
540 if (should_issue_warning)
2ea97941 541 gold_warning("cannot find entry symbol '%s'", entry);
d391083d
ILT
542 v = 0;
543 }
544 }
545
546 return v;
547}
548
20e6d0d6
DK
549// Compute the current data size.
550
551off_t
552Output_file_header::do_size() const
553{
554 const int size = parameters->target().get_size();
555 if (size == 32)
556 return elfcpp::Elf_sizes<32>::ehdr_size;
557 else if (size == 64)
558 return elfcpp::Elf_sizes<64>::ehdr_size;
559 else
560 gold_unreachable();
561}
562
dbe717ef
ILT
563// Output_data_const methods.
564
565void
a3ad94ed 566Output_data_const::do_write(Output_file* of)
dbe717ef 567{
a3ad94ed
ILT
568 of->write(this->offset(), this->data_.data(), this->data_.size());
569}
570
571// Output_data_const_buffer methods.
572
573void
574Output_data_const_buffer::do_write(Output_file* of)
575{
576 of->write(this->offset(), this->p_, this->data_size());
dbe717ef
ILT
577}
578
579// Output_section_data methods.
580
16649710
ILT
581// Record the output section, and set the entry size and such.
582
583void
584Output_section_data::set_output_section(Output_section* os)
585{
586 gold_assert(this->output_section_ == NULL);
587 this->output_section_ = os;
588 this->do_adjust_output_section(os);
589}
590
591// Return the section index of the output section.
592
dbe717ef
ILT
593unsigned int
594Output_section_data::do_out_shndx() const
595{
a3ad94ed 596 gold_assert(this->output_section_ != NULL);
dbe717ef
ILT
597 return this->output_section_->out_shndx();
598}
599
759b1a24
ILT
600// Set the alignment, which means we may need to update the alignment
601// of the output section.
602
603void
2ea97941 604Output_section_data::set_addralign(uint64_t addralign)
759b1a24 605{
2ea97941 606 this->addralign_ = addralign;
759b1a24 607 if (this->output_section_ != NULL
2ea97941
ILT
608 && this->output_section_->addralign() < addralign)
609 this->output_section_->set_addralign(addralign);
759b1a24
ILT
610}
611
a3ad94ed
ILT
612// Output_data_strtab methods.
613
27bc2bce 614// Set the final data size.
a3ad94ed
ILT
615
616void
27bc2bce 617Output_data_strtab::set_final_data_size()
a3ad94ed
ILT
618{
619 this->strtab_->set_string_offsets();
620 this->set_data_size(this->strtab_->get_strtab_size());
621}
622
623// Write out a string table.
624
625void
626Output_data_strtab::do_write(Output_file* of)
627{
628 this->strtab_->write(of, this->offset());
629}
630
c06b7b0b
ILT
631// Output_reloc methods.
632
7bf1f802
ILT
633// A reloc against a global symbol.
634
635template<bool dynamic, int size, bool big_endian>
636Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
637 Symbol* gsym,
638 unsigned int type,
639 Output_data* od,
e8c846c3 640 Address address,
2ea97941 641 bool is_relative)
7bf1f802 642 : address_(address), local_sym_index_(GSYM_CODE), type_(type),
2ea97941 643 is_relative_(is_relative), is_section_symbol_(false), shndx_(INVALID_CODE)
7bf1f802 644{
dceae3c1
ILT
645 // this->type_ is a bitfield; make sure TYPE fits.
646 gold_assert(this->type_ == type);
7bf1f802
ILT
647 this->u1_.gsym = gsym;
648 this->u2_.od = od;
dceae3c1
ILT
649 if (dynamic)
650 this->set_needs_dynsym_index();
7bf1f802
ILT
651}
652
653template<bool dynamic, int size, bool big_endian>
654Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
655 Symbol* gsym,
656 unsigned int type,
ef9beddf 657 Sized_relobj<size, big_endian>* relobj,
7bf1f802 658 unsigned int shndx,
e8c846c3 659 Address address,
2ea97941 660 bool is_relative)
7bf1f802 661 : address_(address), local_sym_index_(GSYM_CODE), type_(type),
2ea97941 662 is_relative_(is_relative), is_section_symbol_(false), shndx_(shndx)
7bf1f802
ILT
663{
664 gold_assert(shndx != INVALID_CODE);
dceae3c1
ILT
665 // this->type_ is a bitfield; make sure TYPE fits.
666 gold_assert(this->type_ == type);
7bf1f802
ILT
667 this->u1_.gsym = gsym;
668 this->u2_.relobj = relobj;
dceae3c1
ILT
669 if (dynamic)
670 this->set_needs_dynsym_index();
7bf1f802
ILT
671}
672
673// A reloc against a local symbol.
674
675template<bool dynamic, int size, bool big_endian>
676Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
677 Sized_relobj<size, big_endian>* relobj,
678 unsigned int local_sym_index,
679 unsigned int type,
680 Output_data* od,
e8c846c3 681 Address address,
2ea97941 682 bool is_relative,
dceae3c1 683 bool is_section_symbol)
7bf1f802 684 : address_(address), local_sym_index_(local_sym_index), type_(type),
2ea97941 685 is_relative_(is_relative), is_section_symbol_(is_section_symbol),
dceae3c1 686 shndx_(INVALID_CODE)
7bf1f802
ILT
687{
688 gold_assert(local_sym_index != GSYM_CODE
689 && local_sym_index != INVALID_CODE);
dceae3c1
ILT
690 // this->type_ is a bitfield; make sure TYPE fits.
691 gold_assert(this->type_ == type);
7bf1f802
ILT
692 this->u1_.relobj = relobj;
693 this->u2_.od = od;
dceae3c1
ILT
694 if (dynamic)
695 this->set_needs_dynsym_index();
7bf1f802
ILT
696}
697
698template<bool dynamic, int size, bool big_endian>
699Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
700 Sized_relobj<size, big_endian>* relobj,
701 unsigned int local_sym_index,
702 unsigned int type,
703 unsigned int shndx,
e8c846c3 704 Address address,
2ea97941 705 bool is_relative,
dceae3c1 706 bool is_section_symbol)
7bf1f802 707 : address_(address), local_sym_index_(local_sym_index), type_(type),
2ea97941 708 is_relative_(is_relative), is_section_symbol_(is_section_symbol),
dceae3c1 709 shndx_(shndx)
7bf1f802
ILT
710{
711 gold_assert(local_sym_index != GSYM_CODE
712 && local_sym_index != INVALID_CODE);
713 gold_assert(shndx != INVALID_CODE);
dceae3c1
ILT
714 // this->type_ is a bitfield; make sure TYPE fits.
715 gold_assert(this->type_ == type);
7bf1f802
ILT
716 this->u1_.relobj = relobj;
717 this->u2_.relobj = relobj;
dceae3c1
ILT
718 if (dynamic)
719 this->set_needs_dynsym_index();
7bf1f802
ILT
720}
721
722// A reloc against the STT_SECTION symbol of an output section.
723
724template<bool dynamic, int size, bool big_endian>
725Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
726 Output_section* os,
727 unsigned int type,
728 Output_data* od,
729 Address address)
730 : address_(address), local_sym_index_(SECTION_CODE), type_(type),
dceae3c1 731 is_relative_(false), is_section_symbol_(true), shndx_(INVALID_CODE)
7bf1f802 732{
dceae3c1
ILT
733 // this->type_ is a bitfield; make sure TYPE fits.
734 gold_assert(this->type_ == type);
7bf1f802
ILT
735 this->u1_.os = os;
736 this->u2_.od = od;
737 if (dynamic)
dceae3c1
ILT
738 this->set_needs_dynsym_index();
739 else
740 os->set_needs_symtab_index();
7bf1f802
ILT
741}
742
743template<bool dynamic, int size, bool big_endian>
744Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
745 Output_section* os,
746 unsigned int type,
ef9beddf 747 Sized_relobj<size, big_endian>* relobj,
7bf1f802
ILT
748 unsigned int shndx,
749 Address address)
750 : address_(address), local_sym_index_(SECTION_CODE), type_(type),
dceae3c1 751 is_relative_(false), is_section_symbol_(true), shndx_(shndx)
7bf1f802
ILT
752{
753 gold_assert(shndx != INVALID_CODE);
dceae3c1
ILT
754 // this->type_ is a bitfield; make sure TYPE fits.
755 gold_assert(this->type_ == type);
7bf1f802
ILT
756 this->u1_.os = os;
757 this->u2_.relobj = relobj;
758 if (dynamic)
dceae3c1
ILT
759 this->set_needs_dynsym_index();
760 else
761 os->set_needs_symtab_index();
762}
763
e291e7b9
ILT
764// An absolute relocation.
765
766template<bool dynamic, int size, bool big_endian>
767Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
768 unsigned int type,
769 Output_data* od,
770 Address address)
771 : address_(address), local_sym_index_(0), type_(type),
772 is_relative_(false), is_section_symbol_(false), shndx_(INVALID_CODE)
773{
774 // this->type_ is a bitfield; make sure TYPE fits.
775 gold_assert(this->type_ == type);
776 this->u1_.relobj = NULL;
777 this->u2_.od = od;
778}
779
780template<bool dynamic, int size, bool big_endian>
781Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
782 unsigned int type,
783 Sized_relobj<size, big_endian>* relobj,
784 unsigned int shndx,
785 Address address)
786 : address_(address), local_sym_index_(0), type_(type),
787 is_relative_(false), is_section_symbol_(false), shndx_(shndx)
788{
789 gold_assert(shndx != INVALID_CODE);
790 // this->type_ is a bitfield; make sure TYPE fits.
791 gold_assert(this->type_ == type);
792 this->u1_.relobj = NULL;
793 this->u2_.relobj = relobj;
794}
795
796// A target specific relocation.
797
798template<bool dynamic, int size, bool big_endian>
799Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
800 unsigned int type,
801 void* arg,
802 Output_data* od,
803 Address address)
804 : address_(address), local_sym_index_(TARGET_CODE), type_(type),
805 is_relative_(false), is_section_symbol_(false), shndx_(INVALID_CODE)
806{
807 // this->type_ is a bitfield; make sure TYPE fits.
808 gold_assert(this->type_ == type);
809 this->u1_.arg = arg;
810 this->u2_.od = od;
811}
812
813template<bool dynamic, int size, bool big_endian>
814Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
815 unsigned int type,
816 void* arg,
817 Sized_relobj<size, big_endian>* relobj,
818 unsigned int shndx,
819 Address address)
820 : address_(address), local_sym_index_(TARGET_CODE), type_(type),
821 is_relative_(false), is_section_symbol_(false), shndx_(shndx)
822{
823 gold_assert(shndx != INVALID_CODE);
824 // this->type_ is a bitfield; make sure TYPE fits.
825 gold_assert(this->type_ == type);
826 this->u1_.arg = arg;
827 this->u2_.relobj = relobj;
828}
829
dceae3c1
ILT
830// Record that we need a dynamic symbol index for this relocation.
831
832template<bool dynamic, int size, bool big_endian>
833void
834Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::
835set_needs_dynsym_index()
836{
837 if (this->is_relative_)
838 return;
839 switch (this->local_sym_index_)
840 {
841 case INVALID_CODE:
842 gold_unreachable();
843
844 case GSYM_CODE:
845 this->u1_.gsym->set_needs_dynsym_entry();
846 break;
847
848 case SECTION_CODE:
849 this->u1_.os->set_needs_dynsym_index();
850 break;
851
e291e7b9
ILT
852 case TARGET_CODE:
853 // The target must take care of this if necessary.
854 break;
855
dceae3c1
ILT
856 case 0:
857 break;
858
859 default:
860 {
861 const unsigned int lsi = this->local_sym_index_;
862 if (!this->is_section_symbol_)
863 this->u1_.relobj->set_needs_output_dynsym_entry(lsi);
864 else
ef9beddf 865 this->u1_.relobj->output_section(lsi)->set_needs_dynsym_index();
dceae3c1
ILT
866 }
867 break;
868 }
7bf1f802
ILT
869}
870
c06b7b0b
ILT
871// Get the symbol index of a relocation.
872
873template<bool dynamic, int size, bool big_endian>
874unsigned int
875Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::get_symbol_index()
876 const
877{
878 unsigned int index;
879 switch (this->local_sym_index_)
880 {
881 case INVALID_CODE:
a3ad94ed 882 gold_unreachable();
c06b7b0b
ILT
883
884 case GSYM_CODE:
5a6f7e2d 885 if (this->u1_.gsym == NULL)
c06b7b0b
ILT
886 index = 0;
887 else if (dynamic)
5a6f7e2d 888 index = this->u1_.gsym->dynsym_index();
c06b7b0b 889 else
5a6f7e2d 890 index = this->u1_.gsym->symtab_index();
c06b7b0b
ILT
891 break;
892
893 case SECTION_CODE:
894 if (dynamic)
5a6f7e2d 895 index = this->u1_.os->dynsym_index();
c06b7b0b 896 else
5a6f7e2d 897 index = this->u1_.os->symtab_index();
c06b7b0b
ILT
898 break;
899
e291e7b9
ILT
900 case TARGET_CODE:
901 index = parameters->target().reloc_symbol_index(this->u1_.arg,
902 this->type_);
903 break;
904
436ca963
ILT
905 case 0:
906 // Relocations without symbols use a symbol index of 0.
907 index = 0;
908 break;
909
c06b7b0b 910 default:
dceae3c1
ILT
911 {
912 const unsigned int lsi = this->local_sym_index_;
913 if (!this->is_section_symbol_)
914 {
915 if (dynamic)
916 index = this->u1_.relobj->dynsym_index(lsi);
917 else
918 index = this->u1_.relobj->symtab_index(lsi);
919 }
920 else
921 {
ef9beddf 922 Output_section* os = this->u1_.relobj->output_section(lsi);
dceae3c1
ILT
923 gold_assert(os != NULL);
924 if (dynamic)
925 index = os->dynsym_index();
926 else
927 index = os->symtab_index();
928 }
929 }
c06b7b0b
ILT
930 break;
931 }
a3ad94ed 932 gold_assert(index != -1U);
c06b7b0b
ILT
933 return index;
934}
935
624f8810
ILT
936// For a local section symbol, get the address of the offset ADDEND
937// within the input section.
dceae3c1
ILT
938
939template<bool dynamic, int size, bool big_endian>
ef9beddf 940typename elfcpp::Elf_types<size>::Elf_Addr
dceae3c1 941Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::
624f8810 942 local_section_offset(Addend addend) const
dceae3c1 943{
624f8810
ILT
944 gold_assert(this->local_sym_index_ != GSYM_CODE
945 && this->local_sym_index_ != SECTION_CODE
e291e7b9 946 && this->local_sym_index_ != TARGET_CODE
624f8810 947 && this->local_sym_index_ != INVALID_CODE
e291e7b9 948 && this->local_sym_index_ != 0
624f8810 949 && this->is_section_symbol_);
dceae3c1 950 const unsigned int lsi = this->local_sym_index_;
ef9beddf 951 Output_section* os = this->u1_.relobj->output_section(lsi);
624f8810 952 gold_assert(os != NULL);
ef9beddf 953 Address offset = this->u1_.relobj->get_output_section_offset(lsi);
eff45813 954 if (offset != invalid_address)
624f8810
ILT
955 return offset + addend;
956 // This is a merge section.
957 offset = os->output_address(this->u1_.relobj, lsi, addend);
eff45813 958 gold_assert(offset != invalid_address);
dceae3c1
ILT
959 return offset;
960}
961
d98bc257 962// Get the output address of a relocation.
c06b7b0b
ILT
963
964template<bool dynamic, int size, bool big_endian>
a984ee1d 965typename elfcpp::Elf_types<size>::Elf_Addr
d98bc257 966Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::get_address() const
c06b7b0b 967{
a3ad94ed 968 Address address = this->address_;
5a6f7e2d
ILT
969 if (this->shndx_ != INVALID_CODE)
970 {
ef9beddf 971 Output_section* os = this->u2_.relobj->output_section(this->shndx_);
5a6f7e2d 972 gold_assert(os != NULL);
ef9beddf 973 Address off = this->u2_.relobj->get_output_section_offset(this->shndx_);
eff45813 974 if (off != invalid_address)
730cdc88
ILT
975 address += os->address() + off;
976 else
977 {
978 address = os->output_address(this->u2_.relobj, this->shndx_,
979 address);
eff45813 980 gold_assert(address != invalid_address);
730cdc88 981 }
5a6f7e2d
ILT
982 }
983 else if (this->u2_.od != NULL)
984 address += this->u2_.od->address();
d98bc257
ILT
985 return address;
986}
987
988// Write out the offset and info fields of a Rel or Rela relocation
989// entry.
990
991template<bool dynamic, int size, bool big_endian>
992template<typename Write_rel>
993void
994Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::write_rel(
995 Write_rel* wr) const
996{
997 wr->put_r_offset(this->get_address());
e8c846c3
ILT
998 unsigned int sym_index = this->is_relative_ ? 0 : this->get_symbol_index();
999 wr->put_r_info(elfcpp::elf_r_info<size>(sym_index, this->type_));
c06b7b0b
ILT
1000}
1001
1002// Write out a Rel relocation.
1003
1004template<bool dynamic, int size, bool big_endian>
1005void
1006Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::write(
1007 unsigned char* pov) const
1008{
1009 elfcpp::Rel_write<size, big_endian> orel(pov);
1010 this->write_rel(&orel);
1011}
1012
e8c846c3
ILT
1013// Get the value of the symbol referred to by a Rel relocation.
1014
1015template<bool dynamic, int size, bool big_endian>
1016typename elfcpp::Elf_types<size>::Elf_Addr
d1f003c6 1017Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::symbol_value(
624f8810 1018 Addend addend) const
e8c846c3
ILT
1019{
1020 if (this->local_sym_index_ == GSYM_CODE)
1021 {
1022 const Sized_symbol<size>* sym;
1023 sym = static_cast<const Sized_symbol<size>*>(this->u1_.gsym);
d1f003c6 1024 return sym->value() + addend;
e8c846c3
ILT
1025 }
1026 gold_assert(this->local_sym_index_ != SECTION_CODE
e291e7b9 1027 && this->local_sym_index_ != TARGET_CODE
d1f003c6 1028 && this->local_sym_index_ != INVALID_CODE
e291e7b9 1029 && this->local_sym_index_ != 0
d1f003c6
ILT
1030 && !this->is_section_symbol_);
1031 const unsigned int lsi = this->local_sym_index_;
1032 const Symbol_value<size>* symval = this->u1_.relobj->local_symbol(lsi);
1033 return symval->value(this->u1_.relobj, addend);
e8c846c3
ILT
1034}
1035
d98bc257
ILT
1036// Reloc comparison. This function sorts the dynamic relocs for the
1037// benefit of the dynamic linker. First we sort all relative relocs
1038// to the front. Among relative relocs, we sort by output address.
1039// Among non-relative relocs, we sort by symbol index, then by output
1040// address.
1041
1042template<bool dynamic, int size, bool big_endian>
1043int
1044Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::
1045 compare(const Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>& r2)
1046 const
1047{
1048 if (this->is_relative_)
1049 {
1050 if (!r2.is_relative_)
1051 return -1;
1052 // Otherwise sort by reloc address below.
1053 }
1054 else if (r2.is_relative_)
1055 return 1;
1056 else
1057 {
1058 unsigned int sym1 = this->get_symbol_index();
1059 unsigned int sym2 = r2.get_symbol_index();
1060 if (sym1 < sym2)
1061 return -1;
1062 else if (sym1 > sym2)
1063 return 1;
1064 // Otherwise sort by reloc address.
1065 }
1066
1067 section_offset_type addr1 = this->get_address();
1068 section_offset_type addr2 = r2.get_address();
1069 if (addr1 < addr2)
1070 return -1;
1071 else if (addr1 > addr2)
1072 return 1;
1073
1074 // Final tie breaker, in order to generate the same output on any
1075 // host: reloc type.
1076 unsigned int type1 = this->type_;
1077 unsigned int type2 = r2.type_;
1078 if (type1 < type2)
1079 return -1;
1080 else if (type1 > type2)
1081 return 1;
1082
1083 // These relocs appear to be exactly the same.
1084 return 0;
1085}
1086
c06b7b0b
ILT
1087// Write out a Rela relocation.
1088
1089template<bool dynamic, int size, bool big_endian>
1090void
1091Output_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>::write(
1092 unsigned char* pov) const
1093{
1094 elfcpp::Rela_write<size, big_endian> orel(pov);
1095 this->rel_.write_rel(&orel);
e8c846c3 1096 Addend addend = this->addend_;
e291e7b9
ILT
1097 if (this->rel_.is_target_specific())
1098 addend = parameters->target().reloc_addend(this->rel_.target_arg(),
1099 this->rel_.type(), addend);
1100 else if (this->rel_.is_relative())
d1f003c6
ILT
1101 addend = this->rel_.symbol_value(addend);
1102 else if (this->rel_.is_local_section_symbol())
624f8810 1103 addend = this->rel_.local_section_offset(addend);
e8c846c3 1104 orel.put_r_addend(addend);
c06b7b0b
ILT
1105}
1106
1107// Output_data_reloc_base methods.
1108
16649710
ILT
1109// Adjust the output section.
1110
1111template<int sh_type, bool dynamic, int size, bool big_endian>
1112void
1113Output_data_reloc_base<sh_type, dynamic, size, big_endian>
1114 ::do_adjust_output_section(Output_section* os)
1115{
1116 if (sh_type == elfcpp::SHT_REL)
1117 os->set_entsize(elfcpp::Elf_sizes<size>::rel_size);
1118 else if (sh_type == elfcpp::SHT_RELA)
1119 os->set_entsize(elfcpp::Elf_sizes<size>::rela_size);
1120 else
1121 gold_unreachable();
1122 if (dynamic)
1123 os->set_should_link_to_dynsym();
1124 else
1125 os->set_should_link_to_symtab();
1126}
1127
c06b7b0b
ILT
1128// Write out relocation data.
1129
1130template<int sh_type, bool dynamic, int size, bool big_endian>
1131void
1132Output_data_reloc_base<sh_type, dynamic, size, big_endian>::do_write(
1133 Output_file* of)
1134{
1135 const off_t off = this->offset();
1136 const off_t oview_size = this->data_size();
1137 unsigned char* const oview = of->get_output_view(off, oview_size);
1138
3a44184e 1139 if (this->sort_relocs())
d98bc257
ILT
1140 {
1141 gold_assert(dynamic);
1142 std::sort(this->relocs_.begin(), this->relocs_.end(),
1143 Sort_relocs_comparison());
1144 }
1145
c06b7b0b
ILT
1146 unsigned char* pov = oview;
1147 for (typename Relocs::const_iterator p = this->relocs_.begin();
1148 p != this->relocs_.end();
1149 ++p)
1150 {
1151 p->write(pov);
1152 pov += reloc_size;
1153 }
1154
a3ad94ed 1155 gold_assert(pov - oview == oview_size);
c06b7b0b
ILT
1156
1157 of->write_output_view(off, oview_size, oview);
1158
1159 // We no longer need the relocation entries.
1160 this->relocs_.clear();
1161}
1162
6a74a719
ILT
1163// Class Output_relocatable_relocs.
1164
1165template<int sh_type, int size, bool big_endian>
1166void
1167Output_relocatable_relocs<sh_type, size, big_endian>::set_final_data_size()
1168{
1169 this->set_data_size(this->rr_->output_reloc_count()
1170 * Reloc_types<sh_type, size, big_endian>::reloc_size);
1171}
1172
1173// class Output_data_group.
1174
1175template<int size, bool big_endian>
1176Output_data_group<size, big_endian>::Output_data_group(
1177 Sized_relobj<size, big_endian>* relobj,
1178 section_size_type entry_count,
8825ac63
ILT
1179 elfcpp::Elf_Word flags,
1180 std::vector<unsigned int>* input_shndxes)
20e6d0d6 1181 : Output_section_data(entry_count * 4, 4, false),
8825ac63
ILT
1182 relobj_(relobj),
1183 flags_(flags)
6a74a719 1184{
8825ac63 1185 this->input_shndxes_.swap(*input_shndxes);
6a74a719
ILT
1186}
1187
1188// Write out the section group, which means translating the section
1189// indexes to apply to the output file.
1190
1191template<int size, bool big_endian>
1192void
1193Output_data_group<size, big_endian>::do_write(Output_file* of)
1194{
1195 const off_t off = this->offset();
1196 const section_size_type oview_size =
1197 convert_to_section_size_type(this->data_size());
1198 unsigned char* const oview = of->get_output_view(off, oview_size);
1199
1200 elfcpp::Elf_Word* contents = reinterpret_cast<elfcpp::Elf_Word*>(oview);
1201 elfcpp::Swap<32, big_endian>::writeval(contents, this->flags_);
1202 ++contents;
1203
1204 for (std::vector<unsigned int>::const_iterator p =
8825ac63
ILT
1205 this->input_shndxes_.begin();
1206 p != this->input_shndxes_.end();
6a74a719
ILT
1207 ++p, ++contents)
1208 {
ef9beddf 1209 Output_section* os = this->relobj_->output_section(*p);
6a74a719
ILT
1210
1211 unsigned int output_shndx;
1212 if (os != NULL)
1213 output_shndx = os->out_shndx();
1214 else
1215 {
1216 this->relobj_->error(_("section group retained but "
1217 "group element discarded"));
1218 output_shndx = 0;
1219 }
1220
1221 elfcpp::Swap<32, big_endian>::writeval(contents, output_shndx);
1222 }
1223
1224 size_t wrote = reinterpret_cast<unsigned char*>(contents) - oview;
1225 gold_assert(wrote == oview_size);
1226
1227 of->write_output_view(off, oview_size, oview);
1228
1229 // We no longer need this information.
8825ac63 1230 this->input_shndxes_.clear();
6a74a719
ILT
1231}
1232
dbe717ef 1233// Output_data_got::Got_entry methods.
ead1e424
ILT
1234
1235// Write out the entry.
1236
1237template<int size, bool big_endian>
1238void
7e1edb90 1239Output_data_got<size, big_endian>::Got_entry::write(unsigned char* pov) const
ead1e424
ILT
1240{
1241 Valtype val = 0;
1242
1243 switch (this->local_sym_index_)
1244 {
1245 case GSYM_CODE:
1246 {
e8c846c3
ILT
1247 // If the symbol is resolved locally, we need to write out the
1248 // link-time value, which will be relocated dynamically by a
1249 // RELATIVE relocation.
ead1e424 1250 Symbol* gsym = this->u_.gsym;
e8c846c3
ILT
1251 Sized_symbol<size>* sgsym;
1252 // This cast is a bit ugly. We don't want to put a
1253 // virtual method in Symbol, because we want Symbol to be
1254 // as small as possible.
1255 sgsym = static_cast<Sized_symbol<size>*>(gsym);
1256 val = sgsym->value();
ead1e424
ILT
1257 }
1258 break;
1259
1260 case CONSTANT_CODE:
1261 val = this->u_.constant;
1262 break;
1263
1264 default:
d1f003c6
ILT
1265 {
1266 const unsigned int lsi = this->local_sym_index_;
1267 const Symbol_value<size>* symval = this->u_.object->local_symbol(lsi);
1268 val = symval->value(this->u_.object, 0);
1269 }
e727fa71 1270 break;
ead1e424
ILT
1271 }
1272
a3ad94ed 1273 elfcpp::Swap<size, big_endian>::writeval(pov, val);
ead1e424
ILT
1274}
1275
dbe717ef 1276// Output_data_got methods.
ead1e424 1277
dbe717ef
ILT
1278// Add an entry for a global symbol to the GOT. This returns true if
1279// this is a new GOT entry, false if the symbol already had a GOT
1280// entry.
1281
1282template<int size, bool big_endian>
1283bool
0a65a3a7
CC
1284Output_data_got<size, big_endian>::add_global(
1285 Symbol* gsym,
1286 unsigned int got_type)
ead1e424 1287{
0a65a3a7 1288 if (gsym->has_got_offset(got_type))
dbe717ef 1289 return false;
ead1e424 1290
dbe717ef
ILT
1291 this->entries_.push_back(Got_entry(gsym));
1292 this->set_got_size();
0a65a3a7 1293 gsym->set_got_offset(got_type, this->last_got_offset());
dbe717ef
ILT
1294 return true;
1295}
ead1e424 1296
7bf1f802
ILT
1297// Add an entry for a global symbol to the GOT, and add a dynamic
1298// relocation of type R_TYPE for the GOT entry.
1299template<int size, bool big_endian>
1300void
1301Output_data_got<size, big_endian>::add_global_with_rel(
1302 Symbol* gsym,
0a65a3a7 1303 unsigned int got_type,
7bf1f802
ILT
1304 Rel_dyn* rel_dyn,
1305 unsigned int r_type)
1306{
0a65a3a7 1307 if (gsym->has_got_offset(got_type))
7bf1f802
ILT
1308 return;
1309
1310 this->entries_.push_back(Got_entry());
1311 this->set_got_size();
2ea97941
ILT
1312 unsigned int got_offset = this->last_got_offset();
1313 gsym->set_got_offset(got_type, got_offset);
1314 rel_dyn->add_global(gsym, r_type, this, got_offset);
7bf1f802
ILT
1315}
1316
1317template<int size, bool big_endian>
1318void
1319Output_data_got<size, big_endian>::add_global_with_rela(
1320 Symbol* gsym,
0a65a3a7 1321 unsigned int got_type,
7bf1f802
ILT
1322 Rela_dyn* rela_dyn,
1323 unsigned int r_type)
1324{
0a65a3a7 1325 if (gsym->has_got_offset(got_type))
7bf1f802
ILT
1326 return;
1327
1328 this->entries_.push_back(Got_entry());
1329 this->set_got_size();
2ea97941
ILT
1330 unsigned int got_offset = this->last_got_offset();
1331 gsym->set_got_offset(got_type, got_offset);
1332 rela_dyn->add_global(gsym, r_type, this, got_offset, 0);
7bf1f802
ILT
1333}
1334
0a65a3a7
CC
1335// Add a pair of entries for a global symbol to the GOT, and add
1336// dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
1337// If R_TYPE_2 == 0, add the second entry with no relocation.
7bf1f802
ILT
1338template<int size, bool big_endian>
1339void
0a65a3a7
CC
1340Output_data_got<size, big_endian>::add_global_pair_with_rel(
1341 Symbol* gsym,
1342 unsigned int got_type,
7bf1f802 1343 Rel_dyn* rel_dyn,
0a65a3a7
CC
1344 unsigned int r_type_1,
1345 unsigned int r_type_2)
7bf1f802 1346{
0a65a3a7 1347 if (gsym->has_got_offset(got_type))
7bf1f802
ILT
1348 return;
1349
1350 this->entries_.push_back(Got_entry());
2ea97941
ILT
1351 unsigned int got_offset = this->last_got_offset();
1352 gsym->set_got_offset(got_type, got_offset);
1353 rel_dyn->add_global(gsym, r_type_1, this, got_offset);
0a65a3a7
CC
1354
1355 this->entries_.push_back(Got_entry());
1356 if (r_type_2 != 0)
1357 {
2ea97941
ILT
1358 got_offset = this->last_got_offset();
1359 rel_dyn->add_global(gsym, r_type_2, this, got_offset);
0a65a3a7
CC
1360 }
1361
1362 this->set_got_size();
7bf1f802
ILT
1363}
1364
1365template<int size, bool big_endian>
1366void
0a65a3a7
CC
1367Output_data_got<size, big_endian>::add_global_pair_with_rela(
1368 Symbol* gsym,
1369 unsigned int got_type,
7bf1f802 1370 Rela_dyn* rela_dyn,
0a65a3a7
CC
1371 unsigned int r_type_1,
1372 unsigned int r_type_2)
7bf1f802 1373{
0a65a3a7 1374 if (gsym->has_got_offset(got_type))
7bf1f802
ILT
1375 return;
1376
1377 this->entries_.push_back(Got_entry());
2ea97941
ILT
1378 unsigned int got_offset = this->last_got_offset();
1379 gsym->set_got_offset(got_type, got_offset);
1380 rela_dyn->add_global(gsym, r_type_1, this, got_offset, 0);
0a65a3a7
CC
1381
1382 this->entries_.push_back(Got_entry());
1383 if (r_type_2 != 0)
1384 {
2ea97941
ILT
1385 got_offset = this->last_got_offset();
1386 rela_dyn->add_global(gsym, r_type_2, this, got_offset, 0);
0a65a3a7
CC
1387 }
1388
1389 this->set_got_size();
7bf1f802
ILT
1390}
1391
0a65a3a7
CC
1392// Add an entry for a local symbol to the GOT. This returns true if
1393// this is a new GOT entry, false if the symbol already has a GOT
1394// entry.
07f397ab
ILT
1395
1396template<int size, bool big_endian>
1397bool
0a65a3a7
CC
1398Output_data_got<size, big_endian>::add_local(
1399 Sized_relobj<size, big_endian>* object,
1400 unsigned int symndx,
1401 unsigned int got_type)
07f397ab 1402{
0a65a3a7 1403 if (object->local_has_got_offset(symndx, got_type))
07f397ab
ILT
1404 return false;
1405
0a65a3a7 1406 this->entries_.push_back(Got_entry(object, symndx));
07f397ab 1407 this->set_got_size();
0a65a3a7 1408 object->set_local_got_offset(symndx, got_type, this->last_got_offset());
07f397ab
ILT
1409 return true;
1410}
1411
0a65a3a7
CC
1412// Add an entry for a local symbol to the GOT, and add a dynamic
1413// relocation of type R_TYPE for the GOT entry.
7bf1f802
ILT
1414template<int size, bool big_endian>
1415void
0a65a3a7
CC
1416Output_data_got<size, big_endian>::add_local_with_rel(
1417 Sized_relobj<size, big_endian>* object,
1418 unsigned int symndx,
1419 unsigned int got_type,
7bf1f802
ILT
1420 Rel_dyn* rel_dyn,
1421 unsigned int r_type)
1422{
0a65a3a7 1423 if (object->local_has_got_offset(symndx, got_type))
7bf1f802
ILT
1424 return;
1425
1426 this->entries_.push_back(Got_entry());
1427 this->set_got_size();
2ea97941
ILT
1428 unsigned int got_offset = this->last_got_offset();
1429 object->set_local_got_offset(symndx, got_type, got_offset);
1430 rel_dyn->add_local(object, symndx, r_type, this, got_offset);
7bf1f802
ILT
1431}
1432
1433template<int size, bool big_endian>
1434void
0a65a3a7
CC
1435Output_data_got<size, big_endian>::add_local_with_rela(
1436 Sized_relobj<size, big_endian>* object,
1437 unsigned int symndx,
1438 unsigned int got_type,
7bf1f802
ILT
1439 Rela_dyn* rela_dyn,
1440 unsigned int r_type)
1441{
0a65a3a7 1442 if (object->local_has_got_offset(symndx, got_type))
7bf1f802
ILT
1443 return;
1444
1445 this->entries_.push_back(Got_entry());
1446 this->set_got_size();
2ea97941
ILT
1447 unsigned int got_offset = this->last_got_offset();
1448 object->set_local_got_offset(symndx, got_type, got_offset);
1449 rela_dyn->add_local(object, symndx, r_type, this, got_offset, 0);
07f397ab
ILT
1450}
1451
0a65a3a7
CC
1452// Add a pair of entries for a local symbol to the GOT, and add
1453// dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
1454// If R_TYPE_2 == 0, add the second entry with no relocation.
7bf1f802
ILT
1455template<int size, bool big_endian>
1456void
0a65a3a7 1457Output_data_got<size, big_endian>::add_local_pair_with_rel(
7bf1f802
ILT
1458 Sized_relobj<size, big_endian>* object,
1459 unsigned int symndx,
1460 unsigned int shndx,
0a65a3a7 1461 unsigned int got_type,
7bf1f802 1462 Rel_dyn* rel_dyn,
0a65a3a7
CC
1463 unsigned int r_type_1,
1464 unsigned int r_type_2)
7bf1f802 1465{
0a65a3a7 1466 if (object->local_has_got_offset(symndx, got_type))
7bf1f802
ILT
1467 return;
1468
1469 this->entries_.push_back(Got_entry());
2ea97941
ILT
1470 unsigned int got_offset = this->last_got_offset();
1471 object->set_local_got_offset(symndx, got_type, got_offset);
ef9beddf 1472 Output_section* os = object->output_section(shndx);
2ea97941 1473 rel_dyn->add_output_section(os, r_type_1, this, got_offset);
7bf1f802 1474
0a65a3a7
CC
1475 this->entries_.push_back(Got_entry(object, symndx));
1476 if (r_type_2 != 0)
1477 {
2ea97941
ILT
1478 got_offset = this->last_got_offset();
1479 rel_dyn->add_output_section(os, r_type_2, this, got_offset);
0a65a3a7 1480 }
7bf1f802
ILT
1481
1482 this->set_got_size();
1483}
1484
1485template<int size, bool big_endian>
1486void
0a65a3a7 1487Output_data_got<size, big_endian>::add_local_pair_with_rela(
7bf1f802
ILT
1488 Sized_relobj<size, big_endian>* object,
1489 unsigned int symndx,
1490 unsigned int shndx,
0a65a3a7 1491 unsigned int got_type,
7bf1f802 1492 Rela_dyn* rela_dyn,
0a65a3a7
CC
1493 unsigned int r_type_1,
1494 unsigned int r_type_2)
7bf1f802 1495{
0a65a3a7 1496 if (object->local_has_got_offset(symndx, got_type))
7bf1f802
ILT
1497 return;
1498
1499 this->entries_.push_back(Got_entry());
2ea97941
ILT
1500 unsigned int got_offset = this->last_got_offset();
1501 object->set_local_got_offset(symndx, got_type, got_offset);
ef9beddf 1502 Output_section* os = object->output_section(shndx);
2ea97941 1503 rela_dyn->add_output_section(os, r_type_1, this, got_offset, 0);
7bf1f802 1504
0a65a3a7
CC
1505 this->entries_.push_back(Got_entry(object, symndx));
1506 if (r_type_2 != 0)
1507 {
2ea97941
ILT
1508 got_offset = this->last_got_offset();
1509 rela_dyn->add_output_section(os, r_type_2, this, got_offset, 0);
0a65a3a7 1510 }
7bf1f802
ILT
1511
1512 this->set_got_size();
1513}
1514
ead1e424
ILT
1515// Write out the GOT.
1516
1517template<int size, bool big_endian>
1518void
dbe717ef 1519Output_data_got<size, big_endian>::do_write(Output_file* of)
ead1e424
ILT
1520{
1521 const int add = size / 8;
1522
1523 const off_t off = this->offset();
c06b7b0b 1524 const off_t oview_size = this->data_size();
ead1e424
ILT
1525 unsigned char* const oview = of->get_output_view(off, oview_size);
1526
1527 unsigned char* pov = oview;
1528 for (typename Got_entries::const_iterator p = this->entries_.begin();
1529 p != this->entries_.end();
1530 ++p)
1531 {
7e1edb90 1532 p->write(pov);
ead1e424
ILT
1533 pov += add;
1534 }
1535
a3ad94ed 1536 gold_assert(pov - oview == oview_size);
c06b7b0b 1537
ead1e424
ILT
1538 of->write_output_view(off, oview_size, oview);
1539
1540 // We no longer need the GOT entries.
1541 this->entries_.clear();
1542}
1543
a3ad94ed
ILT
1544// Output_data_dynamic::Dynamic_entry methods.
1545
1546// Write out the entry.
1547
1548template<int size, bool big_endian>
1549void
1550Output_data_dynamic::Dynamic_entry::write(
1551 unsigned char* pov,
7d1a9ebb 1552 const Stringpool* pool) const
a3ad94ed
ILT
1553{
1554 typename elfcpp::Elf_types<size>::Elf_WXword val;
c2b45e22 1555 switch (this->offset_)
a3ad94ed
ILT
1556 {
1557 case DYNAMIC_NUMBER:
1558 val = this->u_.val;
1559 break;
1560
a3ad94ed 1561 case DYNAMIC_SECTION_SIZE:
16649710 1562 val = this->u_.od->data_size();
612a8d3d
DM
1563 if (this->od2 != NULL)
1564 val += this->od2->data_size();
a3ad94ed
ILT
1565 break;
1566
1567 case DYNAMIC_SYMBOL:
1568 {
16649710
ILT
1569 const Sized_symbol<size>* s =
1570 static_cast<const Sized_symbol<size>*>(this->u_.sym);
a3ad94ed
ILT
1571 val = s->value();
1572 }
1573 break;
1574
1575 case DYNAMIC_STRING:
1576 val = pool->get_offset(this->u_.str);
1577 break;
1578
1579 default:
c2b45e22
CC
1580 val = this->u_.od->address() + this->offset_;
1581 break;
a3ad94ed
ILT
1582 }
1583
1584 elfcpp::Dyn_write<size, big_endian> dw(pov);
1585 dw.put_d_tag(this->tag_);
1586 dw.put_d_val(val);
1587}
1588
1589// Output_data_dynamic methods.
1590
16649710
ILT
1591// Adjust the output section to set the entry size.
1592
1593void
1594Output_data_dynamic::do_adjust_output_section(Output_section* os)
1595{
8851ecca 1596 if (parameters->target().get_size() == 32)
16649710 1597 os->set_entsize(elfcpp::Elf_sizes<32>::dyn_size);
8851ecca 1598 else if (parameters->target().get_size() == 64)
16649710
ILT
1599 os->set_entsize(elfcpp::Elf_sizes<64>::dyn_size);
1600 else
1601 gold_unreachable();
1602}
1603
a3ad94ed
ILT
1604// Set the final data size.
1605
1606void
27bc2bce 1607Output_data_dynamic::set_final_data_size()
a3ad94ed 1608{
20e6d0d6
DK
1609 // Add the terminating entry if it hasn't been added.
1610 // Because of relaxation, we can run this multiple times.
1611 if (this->entries_.empty()
1612 || this->entries_.rbegin()->tag() != elfcpp::DT_NULL)
1613 this->add_constant(elfcpp::DT_NULL, 0);
a3ad94ed
ILT
1614
1615 int dyn_size;
8851ecca 1616 if (parameters->target().get_size() == 32)
a3ad94ed 1617 dyn_size = elfcpp::Elf_sizes<32>::dyn_size;
8851ecca 1618 else if (parameters->target().get_size() == 64)
a3ad94ed
ILT
1619 dyn_size = elfcpp::Elf_sizes<64>::dyn_size;
1620 else
1621 gold_unreachable();
1622 this->set_data_size(this->entries_.size() * dyn_size);
1623}
1624
1625// Write out the dynamic entries.
1626
1627void
1628Output_data_dynamic::do_write(Output_file* of)
1629{
8851ecca 1630 switch (parameters->size_and_endianness())
a3ad94ed 1631 {
9025d29d 1632#ifdef HAVE_TARGET_32_LITTLE
8851ecca
ILT
1633 case Parameters::TARGET_32_LITTLE:
1634 this->sized_write<32, false>(of);
1635 break;
9025d29d 1636#endif
8851ecca
ILT
1637#ifdef HAVE_TARGET_32_BIG
1638 case Parameters::TARGET_32_BIG:
1639 this->sized_write<32, true>(of);
1640 break;
9025d29d 1641#endif
9025d29d 1642#ifdef HAVE_TARGET_64_LITTLE
8851ecca
ILT
1643 case Parameters::TARGET_64_LITTLE:
1644 this->sized_write<64, false>(of);
1645 break;
9025d29d 1646#endif
8851ecca
ILT
1647#ifdef HAVE_TARGET_64_BIG
1648 case Parameters::TARGET_64_BIG:
1649 this->sized_write<64, true>(of);
1650 break;
1651#endif
1652 default:
1653 gold_unreachable();
a3ad94ed 1654 }
a3ad94ed
ILT
1655}
1656
1657template<int size, bool big_endian>
1658void
1659Output_data_dynamic::sized_write(Output_file* of)
1660{
1661 const int dyn_size = elfcpp::Elf_sizes<size>::dyn_size;
1662
2ea97941 1663 const off_t offset = this->offset();
a3ad94ed 1664 const off_t oview_size = this->data_size();
2ea97941 1665 unsigned char* const oview = of->get_output_view(offset, oview_size);
a3ad94ed
ILT
1666
1667 unsigned char* pov = oview;
1668 for (typename Dynamic_entries::const_iterator p = this->entries_.begin();
1669 p != this->entries_.end();
1670 ++p)
1671 {
7d1a9ebb 1672 p->write<size, big_endian>(pov, this->pool_);
a3ad94ed
ILT
1673 pov += dyn_size;
1674 }
1675
1676 gold_assert(pov - oview == oview_size);
1677
2ea97941 1678 of->write_output_view(offset, oview_size, oview);
a3ad94ed
ILT
1679
1680 // We no longer need the dynamic entries.
1681 this->entries_.clear();
1682}
1683
d491d34e
ILT
1684// Class Output_symtab_xindex.
1685
1686void
1687Output_symtab_xindex::do_write(Output_file* of)
1688{
2ea97941 1689 const off_t offset = this->offset();
d491d34e 1690 const off_t oview_size = this->data_size();
2ea97941 1691 unsigned char* const oview = of->get_output_view(offset, oview_size);
d491d34e
ILT
1692
1693 memset(oview, 0, oview_size);
1694
1695 if (parameters->target().is_big_endian())
1696 this->endian_do_write<true>(oview);
1697 else
1698 this->endian_do_write<false>(oview);
1699
2ea97941 1700 of->write_output_view(offset, oview_size, oview);
d491d34e
ILT
1701
1702 // We no longer need the data.
1703 this->entries_.clear();
1704}
1705
1706template<bool big_endian>
1707void
1708Output_symtab_xindex::endian_do_write(unsigned char* const oview)
1709{
1710 for (Xindex_entries::const_iterator p = this->entries_.begin();
1711 p != this->entries_.end();
1712 ++p)
20e6d0d6
DK
1713 {
1714 unsigned int symndx = p->first;
1715 gold_assert(symndx * 4 < this->data_size());
1716 elfcpp::Swap<32, big_endian>::writeval(oview + symndx * 4, p->second);
1717 }
d491d34e
ILT
1718}
1719
ead1e424
ILT
1720// Output_section::Input_section methods.
1721
1722// Return the data size. For an input section we store the size here.
1723// For an Output_section_data, we have to ask it for the size.
1724
1725off_t
1726Output_section::Input_section::data_size() const
1727{
1728 if (this->is_input_section())
b8e6aad9 1729 return this->u1_.data_size;
ead1e424 1730 else
b8e6aad9 1731 return this->u2_.posd->data_size();
ead1e424
ILT
1732}
1733
1734// Set the address and file offset.
1735
1736void
96803768
ILT
1737Output_section::Input_section::set_address_and_file_offset(
1738 uint64_t address,
1739 off_t file_offset,
1740 off_t section_file_offset)
ead1e424
ILT
1741{
1742 if (this->is_input_section())
96803768
ILT
1743 this->u2_.object->set_section_offset(this->shndx_,
1744 file_offset - section_file_offset);
ead1e424 1745 else
96803768
ILT
1746 this->u2_.posd->set_address_and_file_offset(address, file_offset);
1747}
1748
a445fddf
ILT
1749// Reset the address and file offset.
1750
1751void
1752Output_section::Input_section::reset_address_and_file_offset()
1753{
1754 if (!this->is_input_section())
1755 this->u2_.posd->reset_address_and_file_offset();
1756}
1757
96803768
ILT
1758// Finalize the data size.
1759
1760void
1761Output_section::Input_section::finalize_data_size()
1762{
1763 if (!this->is_input_section())
1764 this->u2_.posd->finalize_data_size();
b8e6aad9
ILT
1765}
1766
1e983657
ILT
1767// Try to turn an input offset into an output offset. We want to
1768// return the output offset relative to the start of this
1769// Input_section in the output section.
b8e6aad9 1770
8f00aeb8 1771inline bool
8383303e
ILT
1772Output_section::Input_section::output_offset(
1773 const Relobj* object,
2ea97941
ILT
1774 unsigned int shndx,
1775 section_offset_type offset,
8383303e 1776 section_offset_type *poutput) const
b8e6aad9
ILT
1777{
1778 if (!this->is_input_section())
2ea97941 1779 return this->u2_.posd->output_offset(object, shndx, offset, poutput);
b8e6aad9
ILT
1780 else
1781 {
2ea97941 1782 if (this->shndx_ != shndx || this->u2_.object != object)
b8e6aad9 1783 return false;
2ea97941 1784 *poutput = offset;
b8e6aad9
ILT
1785 return true;
1786 }
ead1e424
ILT
1787}
1788
a9a60db6
ILT
1789// Return whether this is the merge section for the input section
1790// SHNDX in OBJECT.
1791
1792inline bool
1793Output_section::Input_section::is_merge_section_for(const Relobj* object,
2ea97941 1794 unsigned int shndx) const
a9a60db6
ILT
1795{
1796 if (this->is_input_section())
1797 return false;
2ea97941 1798 return this->u2_.posd->is_merge_section_for(object, shndx);
a9a60db6
ILT
1799}
1800
ead1e424
ILT
1801// Write out the data. We don't have to do anything for an input
1802// section--they are handled via Object::relocate--but this is where
1803// we write out the data for an Output_section_data.
1804
1805void
1806Output_section::Input_section::write(Output_file* of)
1807{
1808 if (!this->is_input_section())
b8e6aad9 1809 this->u2_.posd->write(of);
ead1e424
ILT
1810}
1811
96803768
ILT
1812// Write the data to a buffer. As for write(), we don't have to do
1813// anything for an input section.
1814
1815void
1816Output_section::Input_section::write_to_buffer(unsigned char* buffer)
1817{
1818 if (!this->is_input_section())
1819 this->u2_.posd->write_to_buffer(buffer);
1820}
1821
7d9e3d98
ILT
1822// Print to a map file.
1823
1824void
1825Output_section::Input_section::print_to_mapfile(Mapfile* mapfile) const
1826{
1827 switch (this->shndx_)
1828 {
1829 case OUTPUT_SECTION_CODE:
1830 case MERGE_DATA_SECTION_CODE:
1831 case MERGE_STRING_SECTION_CODE:
1832 this->u2_.posd->print_to_mapfile(mapfile);
1833 break;
1834
20e6d0d6
DK
1835 case RELAXED_INPUT_SECTION_CODE:
1836 {
1837 Output_relaxed_input_section* relaxed_section =
1838 this->relaxed_input_section();
1839 mapfile->print_input_section(relaxed_section->relobj(),
1840 relaxed_section->shndx());
1841 }
1842 break;
7d9e3d98
ILT
1843 default:
1844 mapfile->print_input_section(this->u2_.object, this->shndx_);
1845 break;
1846 }
1847}
1848
a2fb1b05
ILT
1849// Output_section methods.
1850
1851// Construct an Output_section. NAME will point into a Stringpool.
1852
2ea97941
ILT
1853Output_section::Output_section(const char* name, elfcpp::Elf_Word type,
1854 elfcpp::Elf_Xword flags)
1855 : name_(name),
a2fb1b05
ILT
1856 addralign_(0),
1857 entsize_(0),
a445fddf 1858 load_address_(0),
16649710 1859 link_section_(NULL),
a2fb1b05 1860 link_(0),
16649710 1861 info_section_(NULL),
6a74a719 1862 info_symndx_(NULL),
a2fb1b05 1863 info_(0),
2ea97941
ILT
1864 type_(type),
1865 flags_(flags),
91ea499d 1866 out_shndx_(-1U),
c06b7b0b
ILT
1867 symtab_index_(0),
1868 dynsym_index_(0),
ead1e424
ILT
1869 input_sections_(),
1870 first_input_offset_(0),
c51e6221 1871 fills_(),
96803768 1872 postprocessing_buffer_(NULL),
a3ad94ed 1873 needs_symtab_index_(false),
16649710
ILT
1874 needs_dynsym_index_(false),
1875 should_link_to_symtab_(false),
730cdc88 1876 should_link_to_dynsym_(false),
27bc2bce 1877 after_input_sections_(false),
7bf1f802 1878 requires_postprocessing_(false),
a445fddf
ILT
1879 found_in_sections_clause_(false),
1880 has_load_address_(false),
755ab8af 1881 info_uses_section_index_(false),
2fd32231
ILT
1882 may_sort_attached_input_sections_(false),
1883 must_sort_attached_input_sections_(false),
1884 attached_input_sections_are_sorted_(false),
9f1d377b
ILT
1885 is_relro_(false),
1886 is_relro_local_(false),
1a2dff53
ILT
1887 is_last_relro_(false),
1888 is_first_non_relro_(false),
8a5e3e08
ILT
1889 is_small_section_(false),
1890 is_large_section_(false),
f5c870d2
ILT
1891 is_interp_(false),
1892 is_dynamic_linker_section_(false),
1893 generate_code_fills_at_write_(false),
e8cd95c7 1894 is_entsize_zero_(false),
8923b24c 1895 section_offsets_need_adjustment_(false),
20e6d0d6 1896 tls_offset_(0),
c0a62865
DK
1897 checkpoint_(NULL),
1898 merge_section_map_(),
1899 merge_section_by_properties_map_(),
1900 relaxed_input_section_map_(),
f5c870d2 1901 is_relaxed_input_section_map_valid_(true)
a2fb1b05 1902{
27bc2bce
ILT
1903 // An unallocated section has no address. Forcing this means that
1904 // we don't need special treatment for symbols defined in debug
1905 // sections.
2ea97941 1906 if ((flags & elfcpp::SHF_ALLOC) == 0)
27bc2bce 1907 this->set_address(0);
a2fb1b05
ILT
1908}
1909
54dc6425
ILT
1910Output_section::~Output_section()
1911{
20e6d0d6 1912 delete this->checkpoint_;
54dc6425
ILT
1913}
1914
16649710
ILT
1915// Set the entry size.
1916
1917void
1918Output_section::set_entsize(uint64_t v)
1919{
e8cd95c7
ILT
1920 if (this->is_entsize_zero_)
1921 ;
1922 else if (this->entsize_ == 0)
16649710 1923 this->entsize_ = v;
e8cd95c7
ILT
1924 else if (this->entsize_ != v)
1925 {
1926 this->entsize_ = 0;
1927 this->is_entsize_zero_ = 1;
1928 }
16649710
ILT
1929}
1930
ead1e424 1931// Add the input section SHNDX, with header SHDR, named SECNAME, in
730cdc88
ILT
1932// OBJECT, to the Output_section. RELOC_SHNDX is the index of a
1933// relocation section which applies to this section, or 0 if none, or
1934// -1U if more than one. Return the offset of the input section
1935// within the output section. Return -1 if the input section will
1936// receive special handling. In the normal case we don't always keep
1937// track of input sections for an Output_section. Instead, each
1938// Object keeps track of the Output_section for each of its input
a445fddf
ILT
1939// sections. However, if HAVE_SECTIONS_SCRIPT is true, we do keep
1940// track of input sections here; this is used when SECTIONS appears in
1941// a linker script.
a2fb1b05
ILT
1942
1943template<int size, bool big_endian>
1944off_t
730cdc88 1945Output_section::add_input_section(Sized_relobj<size, big_endian>* object,
2ea97941 1946 unsigned int shndx,
ead1e424 1947 const char* secname,
730cdc88 1948 const elfcpp::Shdr<size, big_endian>& shdr,
a445fddf
ILT
1949 unsigned int reloc_shndx,
1950 bool have_sections_script)
a2fb1b05 1951{
2ea97941
ILT
1952 elfcpp::Elf_Xword addralign = shdr.get_sh_addralign();
1953 if ((addralign & (addralign - 1)) != 0)
a2fb1b05 1954 {
75f2446e 1955 object->error(_("invalid alignment %lu for section \"%s\""),
2ea97941
ILT
1956 static_cast<unsigned long>(addralign), secname);
1957 addralign = 1;
a2fb1b05 1958 }
a2fb1b05 1959
2ea97941
ILT
1960 if (addralign > this->addralign_)
1961 this->addralign_ = addralign;
a2fb1b05 1962
44a43cf9 1963 typename elfcpp::Elf_types<size>::Elf_WXword sh_flags = shdr.get_sh_flags();
2ea97941 1964 uint64_t entsize = shdr.get_sh_entsize();
44a43cf9
ILT
1965
1966 // .debug_str is a mergeable string section, but is not always so
1967 // marked by compilers. Mark manually here so we can optimize.
1968 if (strcmp(secname, ".debug_str") == 0)
4f833eee
ILT
1969 {
1970 sh_flags |= (elfcpp::SHF_MERGE | elfcpp::SHF_STRINGS);
2ea97941 1971 entsize = 1;
4f833eee 1972 }
44a43cf9 1973
e8cd95c7
ILT
1974 this->update_flags_for_input_section(sh_flags);
1975 this->set_entsize(entsize);
1976
b8e6aad9 1977 // If this is a SHF_MERGE section, we pass all the input sections to
730cdc88 1978 // a Output_data_merge. We don't try to handle relocations for such
e0b64032
ILT
1979 // a section. We don't try to handle empty merge sections--they
1980 // mess up the mappings, and are useless anyhow.
44a43cf9 1981 if ((sh_flags & elfcpp::SHF_MERGE) != 0
e0b64032
ILT
1982 && reloc_shndx == 0
1983 && shdr.get_sh_size() > 0)
b8e6aad9 1984 {
2ea97941
ILT
1985 if (this->add_merge_input_section(object, shndx, sh_flags,
1986 entsize, addralign))
b8e6aad9
ILT
1987 {
1988 // Tell the relocation routines that they need to call the
730cdc88 1989 // output_offset method to determine the final address.
b8e6aad9
ILT
1990 return -1;
1991 }
1992 }
1993
27bc2bce 1994 off_t offset_in_section = this->current_data_size_for_child();
c51e6221 1995 off_t aligned_offset_in_section = align_address(offset_in_section,
2ea97941 1996 addralign);
c51e6221 1997
c0a62865
DK
1998 // Determine if we want to delay code-fill generation until the output
1999 // section is written. When the target is relaxing, we want to delay fill
2000 // generating to avoid adjusting them during relaxation.
2001 if (!this->generate_code_fills_at_write_
2002 && !have_sections_script
2003 && (sh_flags & elfcpp::SHF_EXECINSTR) != 0
2004 && parameters->target().has_code_fill()
2005 && parameters->target().may_relax())
2006 {
2007 gold_assert(this->fills_.empty());
2008 this->generate_code_fills_at_write_ = true;
2009 }
2010
c51e6221 2011 if (aligned_offset_in_section > offset_in_section
c0a62865 2012 && !this->generate_code_fills_at_write_
a445fddf 2013 && !have_sections_script
44a43cf9 2014 && (sh_flags & elfcpp::SHF_EXECINSTR) != 0
029ba973 2015 && parameters->target().has_code_fill())
c51e6221
ILT
2016 {
2017 // We need to add some fill data. Using fill_list_ when
2018 // possible is an optimization, since we will often have fill
2019 // sections without input sections.
2020 off_t fill_len = aligned_offset_in_section - offset_in_section;
2021 if (this->input_sections_.empty())
2022 this->fills_.push_back(Fill(offset_in_section, fill_len));
2023 else
2024 {
029ba973 2025 std::string fill_data(parameters->target().code_fill(fill_len));
c51e6221
ILT
2026 Output_data_const* odc = new Output_data_const(fill_data, 1);
2027 this->input_sections_.push_back(Input_section(odc));
2028 }
2029 }
2030
27bc2bce
ILT
2031 this->set_current_data_size_for_child(aligned_offset_in_section
2032 + shdr.get_sh_size());
a2fb1b05 2033
ead1e424 2034 // We need to keep track of this section if we are already keeping
2fd32231
ILT
2035 // track of sections, or if we are relaxing. Also, if this is a
2036 // section which requires sorting, or which may require sorting in
20e6d0d6 2037 // the future, we keep track of the sections.
2fd32231
ILT
2038 if (have_sections_script
2039 || !this->input_sections_.empty()
2040 || this->may_sort_attached_input_sections()
7d9e3d98 2041 || this->must_sort_attached_input_sections()
20e6d0d6 2042 || parameters->options().user_set_Map()
029ba973 2043 || parameters->target().may_relax())
2ea97941 2044 this->input_sections_.push_back(Input_section(object, shndx,
ead1e424 2045 shdr.get_sh_size(),
2ea97941 2046 addralign));
54dc6425 2047
c51e6221 2048 return aligned_offset_in_section;
61ba1cf9
ILT
2049}
2050
ead1e424
ILT
2051// Add arbitrary data to an output section.
2052
2053void
2054Output_section::add_output_section_data(Output_section_data* posd)
2055{
b8e6aad9
ILT
2056 Input_section inp(posd);
2057 this->add_output_section_data(&inp);
a445fddf
ILT
2058
2059 if (posd->is_data_size_valid())
2060 {
2061 off_t offset_in_section = this->current_data_size_for_child();
2062 off_t aligned_offset_in_section = align_address(offset_in_section,
2063 posd->addralign());
2064 this->set_current_data_size_for_child(aligned_offset_in_section
2065 + posd->data_size());
2066 }
b8e6aad9
ILT
2067}
2068
c0a62865
DK
2069// Add a relaxed input section.
2070
2071void
2072Output_section::add_relaxed_input_section(Output_relaxed_input_section* poris)
2073{
2074 Input_section inp(poris);
2075 this->add_output_section_data(&inp);
2076 if (this->is_relaxed_input_section_map_valid_)
2077 {
5ac169d4
DK
2078 Const_section_id csid(poris->relobj(), poris->shndx());
2079 this->relaxed_input_section_map_[csid] = poris;
c0a62865
DK
2080 }
2081
2082 // For a relaxed section, we use the current data size. Linker scripts
2083 // get all the input sections, including relaxed one from an output
2084 // section and add them back to them same output section to compute the
2085 // output section size. If we do not account for sizes of relaxed input
2086 // sections, an output section would be incorrectly sized.
2087 off_t offset_in_section = this->current_data_size_for_child();
2088 off_t aligned_offset_in_section = align_address(offset_in_section,
2089 poris->addralign());
2090 this->set_current_data_size_for_child(aligned_offset_in_section
2091 + poris->current_data_size());
2092}
2093
b8e6aad9 2094// Add arbitrary data to an output section by Input_section.
c06b7b0b 2095
b8e6aad9
ILT
2096void
2097Output_section::add_output_section_data(Input_section* inp)
2098{
ead1e424 2099 if (this->input_sections_.empty())
27bc2bce 2100 this->first_input_offset_ = this->current_data_size_for_child();
c06b7b0b 2101
b8e6aad9 2102 this->input_sections_.push_back(*inp);
c06b7b0b 2103
2ea97941
ILT
2104 uint64_t addralign = inp->addralign();
2105 if (addralign > this->addralign_)
2106 this->addralign_ = addralign;
c06b7b0b 2107
b8e6aad9
ILT
2108 inp->set_output_section(this);
2109}
2110
2111// Add a merge section to an output section.
2112
2113void
2114Output_section::add_output_merge_section(Output_section_data* posd,
2ea97941 2115 bool is_string, uint64_t entsize)
b8e6aad9 2116{
2ea97941 2117 Input_section inp(posd, is_string, entsize);
b8e6aad9
ILT
2118 this->add_output_section_data(&inp);
2119}
2120
2121// Add an input section to a SHF_MERGE section.
2122
2123bool
2ea97941
ILT
2124Output_section::add_merge_input_section(Relobj* object, unsigned int shndx,
2125 uint64_t flags, uint64_t entsize,
2126 uint64_t addralign)
b8e6aad9 2127{
2ea97941 2128 bool is_string = (flags & elfcpp::SHF_STRINGS) != 0;
87f95776
ILT
2129
2130 // We only merge strings if the alignment is not more than the
2131 // character size. This could be handled, but it's unusual.
2ea97941 2132 if (is_string && addralign > entsize)
b8e6aad9
ILT
2133 return false;
2134
20e6d0d6
DK
2135 // We cannot restore merged input section states.
2136 gold_assert(this->checkpoint_ == NULL);
2137
c0a62865 2138 // Look up merge sections by required properties.
2ea97941 2139 Merge_section_properties msp(is_string, entsize, addralign);
c0a62865
DK
2140 Merge_section_by_properties_map::const_iterator p =
2141 this->merge_section_by_properties_map_.find(msp);
2142 if (p != this->merge_section_by_properties_map_.end())
2143 {
2144 Output_merge_base* merge_section = p->second;
2ea97941 2145 merge_section->add_input_section(object, shndx);
c0a62865 2146 gold_assert(merge_section->is_string() == is_string
2ea97941
ILT
2147 && merge_section->entsize() == entsize
2148 && merge_section->addralign() == addralign);
c0a62865
DK
2149
2150 // Link input section to found merge section.
5ac169d4
DK
2151 Const_section_id csid(object, shndx);
2152 this->merge_section_map_[csid] = merge_section;
c0a62865
DK
2153 return true;
2154 }
b8e6aad9
ILT
2155
2156 // We handle the actual constant merging in Output_merge_data or
2157 // Output_merge_string_data.
c0a62865 2158 Output_merge_base* pomb;
9a0910c3 2159 if (!is_string)
2ea97941 2160 pomb = new Output_merge_data(entsize, addralign);
b8e6aad9
ILT
2161 else
2162 {
2ea97941 2163 switch (entsize)
9a0910c3
ILT
2164 {
2165 case 1:
2ea97941 2166 pomb = new Output_merge_string<char>(addralign);
9a0910c3
ILT
2167 break;
2168 case 2:
2ea97941 2169 pomb = new Output_merge_string<uint16_t>(addralign);
9a0910c3
ILT
2170 break;
2171 case 4:
2ea97941 2172 pomb = new Output_merge_string<uint32_t>(addralign);
9a0910c3
ILT
2173 break;
2174 default:
2175 return false;
2176 }
b8e6aad9
ILT
2177 }
2178
c0a62865
DK
2179 // Add new merge section to this output section and link merge section
2180 // properties to new merge section in map.
2ea97941 2181 this->add_output_merge_section(pomb, is_string, entsize);
c0a62865
DK
2182 this->merge_section_by_properties_map_[msp] = pomb;
2183
2184 // Add input section to new merge section and link input section to new
2185 // merge section in map.
2ea97941 2186 pomb->add_input_section(object, shndx);
5ac169d4
DK
2187 Const_section_id csid(object, shndx);
2188 this->merge_section_map_[csid] = pomb;
9a0910c3 2189
b8e6aad9
ILT
2190 return true;
2191}
2192
c0a62865 2193// Build a relaxation map to speed up relaxation of existing input sections.
2ea97941 2194// Look up to the first LIMIT elements in INPUT_SECTIONS.
c0a62865 2195
20e6d0d6 2196void
c0a62865 2197Output_section::build_relaxation_map(
2ea97941 2198 const Input_section_list& input_sections,
c0a62865
DK
2199 size_t limit,
2200 Relaxation_map* relaxation_map) const
20e6d0d6 2201{
c0a62865
DK
2202 for (size_t i = 0; i < limit; ++i)
2203 {
2ea97941 2204 const Input_section& is(input_sections[i]);
c0a62865
DK
2205 if (is.is_input_section() || is.is_relaxed_input_section())
2206 {
5ac169d4
DK
2207 Section_id sid(is.relobj(), is.shndx());
2208 (*relaxation_map)[sid] = i;
c0a62865
DK
2209 }
2210 }
2211}
2212
2213// Convert regular input sections in INPUT_SECTIONS into relaxed input
5ac169d4
DK
2214// sections in RELAXED_SECTIONS. MAP is a prebuilt map from section id
2215// indices of INPUT_SECTIONS.
20e6d0d6 2216
c0a62865
DK
2217void
2218Output_section::convert_input_sections_in_list_to_relaxed_sections(
2219 const std::vector<Output_relaxed_input_section*>& relaxed_sections,
2220 const Relaxation_map& map,
2ea97941 2221 Input_section_list* input_sections)
c0a62865
DK
2222{
2223 for (size_t i = 0; i < relaxed_sections.size(); ++i)
2224 {
2225 Output_relaxed_input_section* poris = relaxed_sections[i];
5ac169d4
DK
2226 Section_id sid(poris->relobj(), poris->shndx());
2227 Relaxation_map::const_iterator p = map.find(sid);
c0a62865 2228 gold_assert(p != map.end());
2ea97941
ILT
2229 gold_assert((*input_sections)[p->second].is_input_section());
2230 (*input_sections)[p->second] = Input_section(poris);
c0a62865
DK
2231 }
2232}
2233
2234// Convert regular input sections into relaxed input sections. RELAXED_SECTIONS
2235// is a vector of pointers to Output_relaxed_input_section or its derived
2236// classes. The relaxed sections must correspond to existing input sections.
2237
2238void
2239Output_section::convert_input_sections_to_relaxed_sections(
2240 const std::vector<Output_relaxed_input_section*>& relaxed_sections)
2241{
029ba973 2242 gold_assert(parameters->target().may_relax());
20e6d0d6 2243
c0a62865
DK
2244 // We want to make sure that restore_states does not undo the effect of
2245 // this. If there is no checkpoint active, just search the current
2246 // input section list and replace the sections there. If there is
2247 // a checkpoint, also replace the sections there.
2248
2249 // By default, we look at the whole list.
2250 size_t limit = this->input_sections_.size();
2251
2252 if (this->checkpoint_ != NULL)
20e6d0d6 2253 {
c0a62865
DK
2254 // Replace input sections with relaxed input section in the saved
2255 // copy of the input section list.
2256 if (this->checkpoint_->input_sections_saved())
20e6d0d6 2257 {
c0a62865
DK
2258 Relaxation_map map;
2259 this->build_relaxation_map(
2260 *(this->checkpoint_->input_sections()),
2261 this->checkpoint_->input_sections()->size(),
2262 &map);
2263 this->convert_input_sections_in_list_to_relaxed_sections(
2264 relaxed_sections,
2265 map,
2266 this->checkpoint_->input_sections());
2267 }
2268 else
2269 {
2270 // We have not copied the input section list yet. Instead, just
2271 // look at the portion that would be saved.
2272 limit = this->checkpoint_->input_sections_size();
20e6d0d6 2273 }
20e6d0d6 2274 }
c0a62865
DK
2275
2276 // Convert input sections in input_section_list.
2277 Relaxation_map map;
2278 this->build_relaxation_map(this->input_sections_, limit, &map);
2279 this->convert_input_sections_in_list_to_relaxed_sections(
2280 relaxed_sections,
2281 map,
2282 &this->input_sections_);
41263c05
DK
2283
2284 // Update fast look-up map.
2285 if (this->is_relaxed_input_section_map_valid_)
2286 for (size_t i = 0; i < relaxed_sections.size(); ++i)
2287 {
2288 Output_relaxed_input_section* poris = relaxed_sections[i];
5ac169d4
DK
2289 Const_section_id csid(poris->relobj(), poris->shndx());
2290 this->relaxed_input_section_map_[csid] = poris;
41263c05 2291 }
20e6d0d6
DK
2292}
2293
9c547ec3
ILT
2294// Update the output section flags based on input section flags.
2295
2296void
2ea97941 2297Output_section::update_flags_for_input_section(elfcpp::Elf_Xword flags)
9c547ec3
ILT
2298{
2299 // If we created the section with SHF_ALLOC clear, we set the
2300 // address. If we are now setting the SHF_ALLOC flag, we need to
2301 // undo that.
2302 if ((this->flags_ & elfcpp::SHF_ALLOC) == 0
2ea97941 2303 && (flags & elfcpp::SHF_ALLOC) != 0)
9c547ec3
ILT
2304 this->mark_address_invalid();
2305
2ea97941 2306 this->flags_ |= (flags
9c547ec3
ILT
2307 & (elfcpp::SHF_WRITE
2308 | elfcpp::SHF_ALLOC
2309 | elfcpp::SHF_EXECINSTR));
e8cd95c7
ILT
2310
2311 if ((flags & elfcpp::SHF_MERGE) == 0)
2312 this->flags_ &=~ elfcpp::SHF_MERGE;
2313 else
2314 {
2315 if (this->current_data_size_for_child() == 0)
2316 this->flags_ |= elfcpp::SHF_MERGE;
2317 }
2318
2319 if ((flags & elfcpp::SHF_STRINGS) == 0)
2320 this->flags_ &=~ elfcpp::SHF_STRINGS;
2321 else
2322 {
2323 if (this->current_data_size_for_child() == 0)
2324 this->flags_ |= elfcpp::SHF_STRINGS;
2325 }
9c547ec3
ILT
2326}
2327
2ea97941 2328// Find the merge section into which an input section with index SHNDX in
c0a62865
DK
2329// OBJECT has been added. Return NULL if none found.
2330
2331Output_section_data*
2332Output_section::find_merge_section(const Relobj* object,
2ea97941 2333 unsigned int shndx) const
c0a62865 2334{
5ac169d4 2335 Const_section_id csid(object, shndx);
c0a62865 2336 Output_section_data_by_input_section_map::const_iterator p =
5ac169d4 2337 this->merge_section_map_.find(csid);
c0a62865
DK
2338 if (p != this->merge_section_map_.end())
2339 {
2340 Output_section_data* posd = p->second;
2ea97941 2341 gold_assert(posd->is_merge_section_for(object, shndx));
c0a62865
DK
2342 return posd;
2343 }
2344 else
2345 return NULL;
2346}
2347
2348// Find an relaxed input section corresponding to an input section
2ea97941 2349// in OBJECT with index SHNDX.
c0a62865 2350
d6344fb5 2351const Output_relaxed_input_section*
c0a62865 2352Output_section::find_relaxed_input_section(const Relobj* object,
2ea97941 2353 unsigned int shndx) const
c0a62865
DK
2354{
2355 // Be careful that the map may not be valid due to input section export
2356 // to scripts or a check-point restore.
2357 if (!this->is_relaxed_input_section_map_valid_)
2358 {
2359 // Rebuild the map as needed.
2360 this->relaxed_input_section_map_.clear();
2361 for (Input_section_list::const_iterator p = this->input_sections_.begin();
2362 p != this->input_sections_.end();
2363 ++p)
2364 if (p->is_relaxed_input_section())
2365 {
5ac169d4
DK
2366 Const_section_id csid(p->relobj(), p->shndx());
2367 this->relaxed_input_section_map_[csid] =
c0a62865
DK
2368 p->relaxed_input_section();
2369 }
2370 this->is_relaxed_input_section_map_valid_ = true;
2371 }
2372
5ac169d4 2373 Const_section_id csid(object, shndx);
d6344fb5 2374 Output_relaxed_input_section_by_input_section_map::const_iterator p =
5ac169d4 2375 this->relaxed_input_section_map_.find(csid);
c0a62865
DK
2376 if (p != this->relaxed_input_section_map_.end())
2377 return p->second;
2378 else
2379 return NULL;
2380}
2381
2ea97941
ILT
2382// Given an address OFFSET relative to the start of input section
2383// SHNDX in OBJECT, return whether this address is being included in
2384// the final link. This should only be called if SHNDX in OBJECT has
730cdc88
ILT
2385// a special mapping.
2386
2387bool
2388Output_section::is_input_address_mapped(const Relobj* object,
2ea97941
ILT
2389 unsigned int shndx,
2390 off_t offset) const
730cdc88 2391{
c0a62865 2392 // Look at the Output_section_data_maps first.
2ea97941 2393 const Output_section_data* posd = this->find_merge_section(object, shndx);
c0a62865 2394 if (posd == NULL)
2ea97941 2395 posd = this->find_relaxed_input_section(object, shndx);
c0a62865
DK
2396
2397 if (posd != NULL)
2398 {
2ea97941
ILT
2399 section_offset_type output_offset;
2400 bool found = posd->output_offset(object, shndx, offset, &output_offset);
c0a62865 2401 gold_assert(found);
2ea97941 2402 return output_offset != -1;
c0a62865
DK
2403 }
2404
2405 // Fall back to the slow look-up.
730cdc88
ILT
2406 for (Input_section_list::const_iterator p = this->input_sections_.begin();
2407 p != this->input_sections_.end();
2408 ++p)
2409 {
2ea97941
ILT
2410 section_offset_type output_offset;
2411 if (p->output_offset(object, shndx, offset, &output_offset))
2412 return output_offset != -1;
730cdc88
ILT
2413 }
2414
2415 // By default we assume that the address is mapped. This should
2416 // only be called after we have passed all sections to Layout. At
2417 // that point we should know what we are discarding.
2418 return true;
2419}
2420
2ea97941
ILT
2421// Given an address OFFSET relative to the start of input section
2422// SHNDX in object OBJECT, return the output offset relative to the
1e983657 2423// start of the input section in the output section. This should only
2ea97941 2424// be called if SHNDX in OBJECT has a special mapping.
730cdc88 2425
8383303e 2426section_offset_type
2ea97941
ILT
2427Output_section::output_offset(const Relobj* object, unsigned int shndx,
2428 section_offset_type offset) const
730cdc88 2429{
c0a62865
DK
2430 // This can only be called meaningfully when we know the data size
2431 // of this.
2432 gold_assert(this->is_data_size_valid());
730cdc88 2433
c0a62865 2434 // Look at the Output_section_data_maps first.
2ea97941 2435 const Output_section_data* posd = this->find_merge_section(object, shndx);
c0a62865 2436 if (posd == NULL)
2ea97941 2437 posd = this->find_relaxed_input_section(object, shndx);
c0a62865
DK
2438 if (posd != NULL)
2439 {
2ea97941
ILT
2440 section_offset_type output_offset;
2441 bool found = posd->output_offset(object, shndx, offset, &output_offset);
c0a62865 2442 gold_assert(found);
2ea97941 2443 return output_offset;
c0a62865
DK
2444 }
2445
2446 // Fall back to the slow look-up.
730cdc88
ILT
2447 for (Input_section_list::const_iterator p = this->input_sections_.begin();
2448 p != this->input_sections_.end();
2449 ++p)
2450 {
2ea97941
ILT
2451 section_offset_type output_offset;
2452 if (p->output_offset(object, shndx, offset, &output_offset))
2453 return output_offset;
730cdc88
ILT
2454 }
2455 gold_unreachable();
2456}
2457
2ea97941
ILT
2458// Return the output virtual address of OFFSET relative to the start
2459// of input section SHNDX in object OBJECT.
b8e6aad9
ILT
2460
2461uint64_t
2ea97941
ILT
2462Output_section::output_address(const Relobj* object, unsigned int shndx,
2463 off_t offset) const
b8e6aad9
ILT
2464{
2465 uint64_t addr = this->address() + this->first_input_offset_;
c0a62865
DK
2466
2467 // Look at the Output_section_data_maps first.
2ea97941 2468 const Output_section_data* posd = this->find_merge_section(object, shndx);
c0a62865 2469 if (posd == NULL)
2ea97941 2470 posd = this->find_relaxed_input_section(object, shndx);
c0a62865
DK
2471 if (posd != NULL && posd->is_address_valid())
2472 {
2ea97941
ILT
2473 section_offset_type output_offset;
2474 bool found = posd->output_offset(object, shndx, offset, &output_offset);
c0a62865 2475 gold_assert(found);
2ea97941 2476 return posd->address() + output_offset;
c0a62865
DK
2477 }
2478
2479 // Fall back to the slow look-up.
b8e6aad9
ILT
2480 for (Input_section_list::const_iterator p = this->input_sections_.begin();
2481 p != this->input_sections_.end();
2482 ++p)
2483 {
2484 addr = align_address(addr, p->addralign());
2ea97941
ILT
2485 section_offset_type output_offset;
2486 if (p->output_offset(object, shndx, offset, &output_offset))
730cdc88 2487 {
2ea97941 2488 if (output_offset == -1)
eff45813 2489 return -1ULL;
2ea97941 2490 return addr + output_offset;
730cdc88 2491 }
b8e6aad9
ILT
2492 addr += p->data_size();
2493 }
2494
2495 // If we get here, it means that we don't know the mapping for this
2496 // input section. This might happen in principle if
2497 // add_input_section were called before add_output_section_data.
2498 // But it should never actually happen.
2499
2500 gold_unreachable();
ead1e424
ILT
2501}
2502
e29e076a 2503// Find the output address of the start of the merged section for
2ea97941 2504// input section SHNDX in object OBJECT.
a9a60db6 2505
e29e076a
ILT
2506bool
2507Output_section::find_starting_output_address(const Relobj* object,
2ea97941 2508 unsigned int shndx,
e29e076a 2509 uint64_t* paddr) const
a9a60db6 2510{
c0a62865
DK
2511 // FIXME: This becomes a bottle-neck if we have many relaxed sections.
2512 // Looking up the merge section map does not always work as we sometimes
2513 // find a merge section without its address set.
a9a60db6
ILT
2514 uint64_t addr = this->address() + this->first_input_offset_;
2515 for (Input_section_list::const_iterator p = this->input_sections_.begin();
2516 p != this->input_sections_.end();
2517 ++p)
2518 {
2519 addr = align_address(addr, p->addralign());
2520
2521 // It would be nice if we could use the existing output_offset
2522 // method to get the output offset of input offset 0.
2523 // Unfortunately we don't know for sure that input offset 0 is
2524 // mapped at all.
2ea97941 2525 if (p->is_merge_section_for(object, shndx))
e29e076a
ILT
2526 {
2527 *paddr = addr;
2528 return true;
2529 }
a9a60db6
ILT
2530
2531 addr += p->data_size();
2532 }
e29e076a
ILT
2533
2534 // We couldn't find a merge output section for this input section.
2535 return false;
a9a60db6
ILT
2536}
2537
27bc2bce 2538// Set the data size of an Output_section. This is where we handle
ead1e424
ILT
2539// setting the addresses of any Output_section_data objects.
2540
2541void
27bc2bce 2542Output_section::set_final_data_size()
ead1e424
ILT
2543{
2544 if (this->input_sections_.empty())
27bc2bce
ILT
2545 {
2546 this->set_data_size(this->current_data_size_for_child());
2547 return;
2548 }
ead1e424 2549
2fd32231
ILT
2550 if (this->must_sort_attached_input_sections())
2551 this->sort_attached_input_sections();
2552
2ea97941 2553 uint64_t address = this->address();
27bc2bce 2554 off_t startoff = this->offset();
ead1e424
ILT
2555 off_t off = startoff + this->first_input_offset_;
2556 for (Input_section_list::iterator p = this->input_sections_.begin();
2557 p != this->input_sections_.end();
2558 ++p)
2559 {
2560 off = align_address(off, p->addralign());
2ea97941 2561 p->set_address_and_file_offset(address + (off - startoff), off,
96803768 2562 startoff);
ead1e424
ILT
2563 off += p->data_size();
2564 }
2565
2566 this->set_data_size(off - startoff);
2567}
9a0910c3 2568
a445fddf
ILT
2569// Reset the address and file offset.
2570
2571void
2572Output_section::do_reset_address_and_file_offset()
2573{
20e6d0d6
DK
2574 // An unallocated section has no address. Forcing this means that
2575 // we don't need special treatment for symbols defined in debug
2576 // sections. We do the same in the constructor.
2577 if ((this->flags_ & elfcpp::SHF_ALLOC) == 0)
2578 this->set_address(0);
2579
a445fddf
ILT
2580 for (Input_section_list::iterator p = this->input_sections_.begin();
2581 p != this->input_sections_.end();
2582 ++p)
2583 p->reset_address_and_file_offset();
2584}
20e6d0d6
DK
2585
2586// Return true if address and file offset have the values after reset.
2587
2588bool
2589Output_section::do_address_and_file_offset_have_reset_values() const
2590{
2591 if (this->is_offset_valid())
2592 return false;
2593
2594 // An unallocated section has address 0 after its construction or a reset.
2595 if ((this->flags_ & elfcpp::SHF_ALLOC) == 0)
2596 return this->is_address_valid() && this->address() == 0;
2597 else
2598 return !this->is_address_valid();
2599}
a445fddf 2600
7bf1f802
ILT
2601// Set the TLS offset. Called only for SHT_TLS sections.
2602
2603void
2604Output_section::do_set_tls_offset(uint64_t tls_base)
2605{
2606 this->tls_offset_ = this->address() - tls_base;
2607}
2608
2fd32231
ILT
2609// In a few cases we need to sort the input sections attached to an
2610// output section. This is used to implement the type of constructor
2611// priority ordering implemented by the GNU linker, in which the
2612// priority becomes part of the section name and the sections are
2613// sorted by name. We only do this for an output section if we see an
2614// attached input section matching ".ctor.*", ".dtor.*",
2615// ".init_array.*" or ".fini_array.*".
2616
2617class Output_section::Input_section_sort_entry
2618{
2619 public:
2620 Input_section_sort_entry()
2621 : input_section_(), index_(-1U), section_has_name_(false),
2622 section_name_()
2623 { }
2624
2ea97941
ILT
2625 Input_section_sort_entry(const Input_section& input_section,
2626 unsigned int index)
2627 : input_section_(input_section), index_(index),
2628 section_has_name_(input_section.is_input_section()
2629 || input_section.is_relaxed_input_section())
2fd32231
ILT
2630 {
2631 if (this->section_has_name_)
2632 {
2633 // This is only called single-threaded from Layout::finalize,
2634 // so it is OK to lock. Unfortunately we have no way to pass
2635 // in a Task token.
2636 const Task* dummy_task = reinterpret_cast<const Task*>(-1);
2ea97941
ILT
2637 Object* obj = (input_section.is_input_section()
2638 ? input_section.relobj()
2639 : input_section.relaxed_input_section()->relobj());
2fd32231
ILT
2640 Task_lock_obj<Object> tl(dummy_task, obj);
2641
2642 // This is a slow operation, which should be cached in
2643 // Layout::layout if this becomes a speed problem.
2ea97941 2644 this->section_name_ = obj->section_name(input_section.shndx());
2fd32231
ILT
2645 }
2646 }
2647
2648 // Return the Input_section.
2649 const Input_section&
2650 input_section() const
2651 {
2652 gold_assert(this->index_ != -1U);
2653 return this->input_section_;
2654 }
2655
2656 // The index of this entry in the original list. This is used to
2657 // make the sort stable.
2658 unsigned int
2659 index() const
2660 {
2661 gold_assert(this->index_ != -1U);
2662 return this->index_;
2663 }
2664
2665 // Whether there is a section name.
2666 bool
2667 section_has_name() const
2668 { return this->section_has_name_; }
2669
2670 // The section name.
2671 const std::string&
2672 section_name() const
2673 {
2674 gold_assert(this->section_has_name_);
2675 return this->section_name_;
2676 }
2677
ab794b6b
ILT
2678 // Return true if the section name has a priority. This is assumed
2679 // to be true if it has a dot after the initial dot.
2fd32231 2680 bool
ab794b6b 2681 has_priority() const
2fd32231
ILT
2682 {
2683 gold_assert(this->section_has_name_);
ab794b6b 2684 return this->section_name_.find('.', 1);
2fd32231
ILT
2685 }
2686
ab794b6b
ILT
2687 // Return true if this an input file whose base name matches
2688 // FILE_NAME. The base name must have an extension of ".o", and
2689 // must be exactly FILE_NAME.o or FILE_NAME, one character, ".o".
2690 // This is to match crtbegin.o as well as crtbeginS.o without
2691 // getting confused by other possibilities. Overall matching the
2692 // file name this way is a dreadful hack, but the GNU linker does it
2693 // in order to better support gcc, and we need to be compatible.
2fd32231 2694 bool
2ea97941 2695 match_file_name(const char* match_file_name) const
2fd32231 2696 {
2fd32231
ILT
2697 const std::string& file_name(this->input_section_.relobj()->name());
2698 const char* base_name = lbasename(file_name.c_str());
2ea97941
ILT
2699 size_t match_len = strlen(match_file_name);
2700 if (strncmp(base_name, match_file_name, match_len) != 0)
2fd32231
ILT
2701 return false;
2702 size_t base_len = strlen(base_name);
2703 if (base_len != match_len + 2 && base_len != match_len + 3)
2704 return false;
2705 return memcmp(base_name + base_len - 2, ".o", 2) == 0;
2706 }
2707
2708 private:
2709 // The Input_section we are sorting.
2710 Input_section input_section_;
2711 // The index of this Input_section in the original list.
2712 unsigned int index_;
2713 // Whether this Input_section has a section name--it won't if this
2714 // is some random Output_section_data.
2715 bool section_has_name_;
2716 // The section name if there is one.
2717 std::string section_name_;
2718};
2719
2720// Return true if S1 should come before S2 in the output section.
2721
2722bool
2723Output_section::Input_section_sort_compare::operator()(
2724 const Output_section::Input_section_sort_entry& s1,
2725 const Output_section::Input_section_sort_entry& s2) const
2726{
ab794b6b
ILT
2727 // crtbegin.o must come first.
2728 bool s1_begin = s1.match_file_name("crtbegin");
2729 bool s2_begin = s2.match_file_name("crtbegin");
2fd32231
ILT
2730 if (s1_begin || s2_begin)
2731 {
2732 if (!s1_begin)
2733 return false;
2734 if (!s2_begin)
2735 return true;
2736 return s1.index() < s2.index();
2737 }
2738
ab794b6b
ILT
2739 // crtend.o must come last.
2740 bool s1_end = s1.match_file_name("crtend");
2741 bool s2_end = s2.match_file_name("crtend");
2fd32231
ILT
2742 if (s1_end || s2_end)
2743 {
2744 if (!s1_end)
2745 return true;
2746 if (!s2_end)
2747 return false;
2748 return s1.index() < s2.index();
2749 }
2750
ab794b6b
ILT
2751 // We sort all the sections with no names to the end.
2752 if (!s1.section_has_name() || !s2.section_has_name())
2753 {
2754 if (s1.section_has_name())
2755 return true;
2756 if (s2.section_has_name())
2757 return false;
2758 return s1.index() < s2.index();
2759 }
2fd32231 2760
ab794b6b
ILT
2761 // A section with a priority follows a section without a priority.
2762 // The GNU linker does this for all but .init_array sections; until
2763 // further notice we'll assume that that is an mistake.
2764 bool s1_has_priority = s1.has_priority();
2765 bool s2_has_priority = s2.has_priority();
2766 if (s1_has_priority && !s2_has_priority)
2fd32231 2767 return false;
ab794b6b 2768 if (!s1_has_priority && s2_has_priority)
2fd32231
ILT
2769 return true;
2770
2771 // Otherwise we sort by name.
2772 int compare = s1.section_name().compare(s2.section_name());
2773 if (compare != 0)
2774 return compare < 0;
2775
2776 // Otherwise we keep the input order.
2777 return s1.index() < s2.index();
2778}
2779
2780// Sort the input sections attached to an output section.
2781
2782void
2783Output_section::sort_attached_input_sections()
2784{
2785 if (this->attached_input_sections_are_sorted_)
2786 return;
2787
20e6d0d6
DK
2788 if (this->checkpoint_ != NULL
2789 && !this->checkpoint_->input_sections_saved())
2790 this->checkpoint_->save_input_sections();
2791
2fd32231
ILT
2792 // The only thing we know about an input section is the object and
2793 // the section index. We need the section name. Recomputing this
2794 // is slow but this is an unusual case. If this becomes a speed
2795 // problem we can cache the names as required in Layout::layout.
2796
2797 // We start by building a larger vector holding a copy of each
2798 // Input_section, plus its current index in the list and its name.
2799 std::vector<Input_section_sort_entry> sort_list;
2800
2801 unsigned int i = 0;
2802 for (Input_section_list::iterator p = this->input_sections_.begin();
2803 p != this->input_sections_.end();
2804 ++p, ++i)
2805 sort_list.push_back(Input_section_sort_entry(*p, i));
2806
2807 // Sort the input sections.
2808 std::sort(sort_list.begin(), sort_list.end(), Input_section_sort_compare());
2809
2810 // Copy the sorted input sections back to our list.
2811 this->input_sections_.clear();
2812 for (std::vector<Input_section_sort_entry>::iterator p = sort_list.begin();
2813 p != sort_list.end();
2814 ++p)
2815 this->input_sections_.push_back(p->input_section());
2816
2817 // Remember that we sorted the input sections, since we might get
2818 // called again.
2819 this->attached_input_sections_are_sorted_ = true;
2820}
2821
61ba1cf9
ILT
2822// Write the section header to *OSHDR.
2823
2824template<int size, bool big_endian>
2825void
16649710
ILT
2826Output_section::write_header(const Layout* layout,
2827 const Stringpool* secnamepool,
61ba1cf9
ILT
2828 elfcpp::Shdr_write<size, big_endian>* oshdr) const
2829{
2830 oshdr->put_sh_name(secnamepool->get_offset(this->name_));
2831 oshdr->put_sh_type(this->type_);
6a74a719 2832
2ea97941 2833 elfcpp::Elf_Xword flags = this->flags_;
755ab8af 2834 if (this->info_section_ != NULL && this->info_uses_section_index_)
2ea97941
ILT
2835 flags |= elfcpp::SHF_INFO_LINK;
2836 oshdr->put_sh_flags(flags);
6a74a719 2837
61ba1cf9
ILT
2838 oshdr->put_sh_addr(this->address());
2839 oshdr->put_sh_offset(this->offset());
2840 oshdr->put_sh_size(this->data_size());
16649710
ILT
2841 if (this->link_section_ != NULL)
2842 oshdr->put_sh_link(this->link_section_->out_shndx());
2843 else if (this->should_link_to_symtab_)
2844 oshdr->put_sh_link(layout->symtab_section()->out_shndx());
2845 else if (this->should_link_to_dynsym_)
2846 oshdr->put_sh_link(layout->dynsym_section()->out_shndx());
2847 else
2848 oshdr->put_sh_link(this->link_);
755ab8af 2849
2ea97941 2850 elfcpp::Elf_Word info;
16649710 2851 if (this->info_section_ != NULL)
755ab8af
ILT
2852 {
2853 if (this->info_uses_section_index_)
2ea97941 2854 info = this->info_section_->out_shndx();
755ab8af 2855 else
2ea97941 2856 info = this->info_section_->symtab_index();
755ab8af 2857 }
6a74a719 2858 else if (this->info_symndx_ != NULL)
2ea97941 2859 info = this->info_symndx_->symtab_index();
16649710 2860 else
2ea97941
ILT
2861 info = this->info_;
2862 oshdr->put_sh_info(info);
755ab8af 2863
61ba1cf9
ILT
2864 oshdr->put_sh_addralign(this->addralign_);
2865 oshdr->put_sh_entsize(this->entsize_);
a2fb1b05
ILT
2866}
2867
ead1e424
ILT
2868// Write out the data. For input sections the data is written out by
2869// Object::relocate, but we have to handle Output_section_data objects
2870// here.
2871
2872void
2873Output_section::do_write(Output_file* of)
2874{
96803768
ILT
2875 gold_assert(!this->requires_postprocessing());
2876
c0a62865
DK
2877 // If the target performs relaxation, we delay filler generation until now.
2878 gold_assert(!this->generate_code_fills_at_write_ || this->fills_.empty());
2879
c51e6221
ILT
2880 off_t output_section_file_offset = this->offset();
2881 for (Fill_list::iterator p = this->fills_.begin();
2882 p != this->fills_.end();
2883 ++p)
2884 {
8851ecca 2885 std::string fill_data(parameters->target().code_fill(p->length()));
c51e6221 2886 of->write(output_section_file_offset + p->section_offset(),
a445fddf 2887 fill_data.data(), fill_data.size());
c51e6221
ILT
2888 }
2889
c0a62865 2890 off_t off = this->offset() + this->first_input_offset_;
ead1e424
ILT
2891 for (Input_section_list::iterator p = this->input_sections_.begin();
2892 p != this->input_sections_.end();
2893 ++p)
c0a62865
DK
2894 {
2895 off_t aligned_off = align_address(off, p->addralign());
2896 if (this->generate_code_fills_at_write_ && (off != aligned_off))
2897 {
2898 size_t fill_len = aligned_off - off;
2899 std::string fill_data(parameters->target().code_fill(fill_len));
2900 of->write(off, fill_data.data(), fill_data.size());
2901 }
2902
2903 p->write(of);
2904 off = aligned_off + p->data_size();
2905 }
ead1e424
ILT
2906}
2907
96803768
ILT
2908// If a section requires postprocessing, create the buffer to use.
2909
2910void
2911Output_section::create_postprocessing_buffer()
2912{
2913 gold_assert(this->requires_postprocessing());
1bedcac5
ILT
2914
2915 if (this->postprocessing_buffer_ != NULL)
2916 return;
96803768
ILT
2917
2918 if (!this->input_sections_.empty())
2919 {
2920 off_t off = this->first_input_offset_;
2921 for (Input_section_list::iterator p = this->input_sections_.begin();
2922 p != this->input_sections_.end();
2923 ++p)
2924 {
2925 off = align_address(off, p->addralign());
2926 p->finalize_data_size();
2927 off += p->data_size();
2928 }
2929 this->set_current_data_size_for_child(off);
2930 }
2931
2932 off_t buffer_size = this->current_data_size_for_child();
2933 this->postprocessing_buffer_ = new unsigned char[buffer_size];
2934}
2935
2936// Write all the data of an Output_section into the postprocessing
2937// buffer. This is used for sections which require postprocessing,
2938// such as compression. Input sections are handled by
2939// Object::Relocate.
2940
2941void
2942Output_section::write_to_postprocessing_buffer()
2943{
2944 gold_assert(this->requires_postprocessing());
2945
c0a62865
DK
2946 // If the target performs relaxation, we delay filler generation until now.
2947 gold_assert(!this->generate_code_fills_at_write_ || this->fills_.empty());
2948
96803768
ILT
2949 unsigned char* buffer = this->postprocessing_buffer();
2950 for (Fill_list::iterator p = this->fills_.begin();
2951 p != this->fills_.end();
2952 ++p)
2953 {
8851ecca 2954 std::string fill_data(parameters->target().code_fill(p->length()));
a445fddf
ILT
2955 memcpy(buffer + p->section_offset(), fill_data.data(),
2956 fill_data.size());
96803768
ILT
2957 }
2958
2959 off_t off = this->first_input_offset_;
2960 for (Input_section_list::iterator p = this->input_sections_.begin();
2961 p != this->input_sections_.end();
2962 ++p)
2963 {
c0a62865
DK
2964 off_t aligned_off = align_address(off, p->addralign());
2965 if (this->generate_code_fills_at_write_ && (off != aligned_off))
2966 {
2967 size_t fill_len = aligned_off - off;
2968 std::string fill_data(parameters->target().code_fill(fill_len));
2969 memcpy(buffer + off, fill_data.data(), fill_data.size());
2970 }
2971
2972 p->write_to_buffer(buffer + aligned_off);
2973 off = aligned_off + p->data_size();
96803768
ILT
2974 }
2975}
2976
a445fddf
ILT
2977// Get the input sections for linker script processing. We leave
2978// behind the Output_section_data entries. Note that this may be
2979// slightly incorrect for merge sections. We will leave them behind,
2980// but it is possible that the script says that they should follow
2981// some other input sections, as in:
2982// .rodata { *(.rodata) *(.rodata.cst*) }
2983// For that matter, we don't handle this correctly:
2984// .rodata { foo.o(.rodata.cst*) *(.rodata.cst*) }
2985// With luck this will never matter.
2986
2987uint64_t
2988Output_section::get_input_sections(
2ea97941 2989 uint64_t address,
a445fddf 2990 const std::string& fill,
2ea97941 2991 std::list<Simple_input_section>* input_sections)
a445fddf 2992{
20e6d0d6
DK
2993 if (this->checkpoint_ != NULL
2994 && !this->checkpoint_->input_sections_saved())
2995 this->checkpoint_->save_input_sections();
2996
c0a62865
DK
2997 // Invalidate the relaxed input section map.
2998 this->is_relaxed_input_section_map_valid_ = false;
2999
2ea97941 3000 uint64_t orig_address = address;
a445fddf 3001
2ea97941 3002 address = align_address(address, this->addralign());
a445fddf
ILT
3003
3004 Input_section_list remaining;
3005 for (Input_section_list::iterator p = this->input_sections_.begin();
3006 p != this->input_sections_.end();
3007 ++p)
3008 {
3009 if (p->is_input_section())
2ea97941 3010 input_sections->push_back(Simple_input_section(p->relobj(),
20e6d0d6
DK
3011 p->shndx()));
3012 else if (p->is_relaxed_input_section())
2ea97941 3013 input_sections->push_back(
20e6d0d6 3014 Simple_input_section(p->relaxed_input_section()));
a445fddf
ILT
3015 else
3016 {
2ea97941
ILT
3017 uint64_t aligned_address = align_address(address, p->addralign());
3018 if (aligned_address != address && !fill.empty())
a445fddf
ILT
3019 {
3020 section_size_type length =
2ea97941 3021 convert_to_section_size_type(aligned_address - address);
a445fddf
ILT
3022 std::string this_fill;
3023 this_fill.reserve(length);
3024 while (this_fill.length() + fill.length() <= length)
3025 this_fill += fill;
3026 if (this_fill.length() < length)
3027 this_fill.append(fill, 0, length - this_fill.length());
3028
3029 Output_section_data* posd = new Output_data_const(this_fill, 0);
3030 remaining.push_back(Input_section(posd));
3031 }
2ea97941 3032 address = aligned_address;
a445fddf
ILT
3033
3034 remaining.push_back(*p);
3035
3036 p->finalize_data_size();
2ea97941 3037 address += p->data_size();
a445fddf
ILT
3038 }
3039 }
3040
3041 this->input_sections_.swap(remaining);
3042 this->first_input_offset_ = 0;
3043
2ea97941
ILT
3044 uint64_t data_size = address - orig_address;
3045 this->set_current_data_size_for_child(data_size);
3046 return data_size;
a445fddf
ILT
3047}
3048
8923b24c 3049// Add an simple input section.
a445fddf
ILT
3050
3051void
8923b24c
DK
3052Output_section::add_simple_input_section(const Simple_input_section& sis,
3053 off_t data_size,
3054 uint64_t addralign)
a445fddf 3055{
2ea97941
ILT
3056 if (addralign > this->addralign_)
3057 this->addralign_ = addralign;
a445fddf
ILT
3058
3059 off_t offset_in_section = this->current_data_size_for_child();
3060 off_t aligned_offset_in_section = align_address(offset_in_section,
2ea97941 3061 addralign);
a445fddf
ILT
3062
3063 this->set_current_data_size_for_child(aligned_offset_in_section
2ea97941 3064 + data_size);
a445fddf 3065
20e6d0d6
DK
3066 Input_section is =
3067 (sis.is_relaxed_input_section()
3068 ? Input_section(sis.relaxed_input_section())
2ea97941 3069 : Input_section(sis.relobj(), sis.shndx(), data_size, addralign));
20e6d0d6
DK
3070 this->input_sections_.push_back(is);
3071}
3072
8923b24c 3073// Save states for relaxation.
20e6d0d6
DK
3074
3075void
3076Output_section::save_states()
3077{
3078 gold_assert(this->checkpoint_ == NULL);
3079 Checkpoint_output_section* checkpoint =
3080 new Checkpoint_output_section(this->addralign_, this->flags_,
3081 this->input_sections_,
3082 this->first_input_offset_,
3083 this->attached_input_sections_are_sorted_);
3084 this->checkpoint_ = checkpoint;
3085 gold_assert(this->fills_.empty());
3086}
3087
8923b24c
DK
3088void
3089Output_section::discard_states()
3090{
3091 gold_assert(this->checkpoint_ != NULL);
3092 delete this->checkpoint_;
3093 this->checkpoint_ = NULL;
3094 gold_assert(this->fills_.empty());
3095
3096 // Simply invalidate the relaxed input section map since we do not keep
3097 // track of it.
3098 this->is_relaxed_input_section_map_valid_ = false;
3099}
3100
20e6d0d6
DK
3101void
3102Output_section::restore_states()
3103{
3104 gold_assert(this->checkpoint_ != NULL);
3105 Checkpoint_output_section* checkpoint = this->checkpoint_;
3106
3107 this->addralign_ = checkpoint->addralign();
3108 this->flags_ = checkpoint->flags();
3109 this->first_input_offset_ = checkpoint->first_input_offset();
3110
3111 if (!checkpoint->input_sections_saved())
3112 {
3113 // If we have not copied the input sections, just resize it.
3114 size_t old_size = checkpoint->input_sections_size();
3115 gold_assert(this->input_sections_.size() >= old_size);
3116 this->input_sections_.resize(old_size);
3117 }
3118 else
3119 {
3120 // We need to copy the whole list. This is not efficient for
3121 // extremely large output with hundreads of thousands of input
3122 // objects. We may need to re-think how we should pass sections
3123 // to scripts.
c0a62865 3124 this->input_sections_ = *checkpoint->input_sections();
20e6d0d6
DK
3125 }
3126
3127 this->attached_input_sections_are_sorted_ =
3128 checkpoint->attached_input_sections_are_sorted();
c0a62865
DK
3129
3130 // Simply invalidate the relaxed input section map since we do not keep
3131 // track of it.
3132 this->is_relaxed_input_section_map_valid_ = false;
a445fddf
ILT
3133}
3134
8923b24c
DK
3135// Update the section offsets of input sections in this. This is required if
3136// relaxation causes some input sections to change sizes.
3137
3138void
3139Output_section::adjust_section_offsets()
3140{
3141 if (!this->section_offsets_need_adjustment_)
3142 return;
3143
3144 off_t off = 0;
3145 for (Input_section_list::iterator p = this->input_sections_.begin();
3146 p != this->input_sections_.end();
3147 ++p)
3148 {
3149 off = align_address(off, p->addralign());
3150 if (p->is_input_section())
3151 p->relobj()->set_section_offset(p->shndx(), off);
3152 off += p->data_size();
3153 }
3154
3155 this->section_offsets_need_adjustment_ = false;
3156}
3157
7d9e3d98
ILT
3158// Print to the map file.
3159
3160void
3161Output_section::do_print_to_mapfile(Mapfile* mapfile) const
3162{
3163 mapfile->print_output_section(this);
3164
3165 for (Input_section_list::const_iterator p = this->input_sections_.begin();
3166 p != this->input_sections_.end();
3167 ++p)
3168 p->print_to_mapfile(mapfile);
3169}
3170
38c5e8b4
ILT
3171// Print stats for merge sections to stderr.
3172
3173void
3174Output_section::print_merge_stats()
3175{
3176 Input_section_list::iterator p;
3177 for (p = this->input_sections_.begin();
3178 p != this->input_sections_.end();
3179 ++p)
3180 p->print_merge_stats(this->name_);
3181}
3182
a2fb1b05
ILT
3183// Output segment methods.
3184
2ea97941 3185Output_segment::Output_segment(elfcpp::Elf_Word type, elfcpp::Elf_Word flags)
54dc6425 3186 : output_data_(),
75f65a3e 3187 output_bss_(),
a2fb1b05
ILT
3188 vaddr_(0),
3189 paddr_(0),
3190 memsz_(0),
a445fddf
ILT
3191 max_align_(0),
3192 min_p_align_(0),
a2fb1b05
ILT
3193 offset_(0),
3194 filesz_(0),
2ea97941
ILT
3195 type_(type),
3196 flags_(flags),
a445fddf 3197 is_max_align_known_(false),
8a5e3e08
ILT
3198 are_addresses_set_(false),
3199 is_large_data_segment_(false)
a2fb1b05 3200{
bb321bb1
ILT
3201 // The ELF ABI specifies that a PT_TLS segment always has PF_R as
3202 // the flags.
3203 if (type == elfcpp::PT_TLS)
3204 this->flags_ = elfcpp::PF_R;
a2fb1b05
ILT
3205}
3206
3207// Add an Output_section to an Output_segment.
3208
3209void
75f65a3e 3210Output_segment::add_output_section(Output_section* os,
f5c870d2
ILT
3211 elfcpp::Elf_Word seg_flags,
3212 bool do_sort)
a2fb1b05 3213{
a3ad94ed 3214 gold_assert((os->flags() & elfcpp::SHF_ALLOC) != 0);
a445fddf 3215 gold_assert(!this->is_max_align_known_);
8a5e3e08 3216 gold_assert(os->is_large_data_section() == this->is_large_data_segment());
96a0d71b 3217 gold_assert(this->type() == elfcpp::PT_LOAD || !do_sort);
75f65a3e 3218
a192ba05 3219 this->update_flags_for_output_section(seg_flags);
75f65a3e
ILT
3220
3221 Output_segment::Output_data_list* pdl;
3222 if (os->type() == elfcpp::SHT_NOBITS)
3223 pdl = &this->output_bss_;
3224 else
3225 pdl = &this->output_data_;
54dc6425 3226
f5c870d2
ILT
3227 // Note that while there may be many input sections in an output
3228 // section, there are normally only a few output sections in an
3229 // output segment. The loops below are expected to be fast.
3230
a2fb1b05 3231 // So that PT_NOTE segments will work correctly, we need to ensure
96a0d71b 3232 // that all SHT_NOTE sections are adjacent.
61ba1cf9 3233 if (os->type() == elfcpp::SHT_NOTE && !pdl->empty())
a2fb1b05 3234 {
a3ad94ed 3235 Output_segment::Output_data_list::iterator p = pdl->end();
75f65a3e 3236 do
54dc6425 3237 {
75f65a3e 3238 --p;
54dc6425
ILT
3239 if ((*p)->is_section_type(elfcpp::SHT_NOTE))
3240 {
3241 ++p;
75f65a3e 3242 pdl->insert(p, os);
54dc6425
ILT
3243 return;
3244 }
3245 }
75f65a3e 3246 while (p != pdl->begin());
54dc6425
ILT
3247 }
3248
3249 // Similarly, so that PT_TLS segments will work, we need to group
75f65a3e
ILT
3250 // SHF_TLS sections. An SHF_TLS/SHT_NOBITS section is a special
3251 // case: we group the SHF_TLS/SHT_NOBITS sections right after the
3252 // SHF_TLS/SHT_PROGBITS sections. This lets us set up PT_TLS
07f397ab 3253 // correctly. SHF_TLS sections get added to both a PT_LOAD segment
f5c870d2
ILT
3254 // and the PT_TLS segment; we do this grouping only for the PT_LOAD
3255 // segment.
07f397ab 3256 if (this->type_ != elfcpp::PT_TLS
2d924fd9 3257 && (os->flags() & elfcpp::SHF_TLS) != 0)
54dc6425 3258 {
75f65a3e 3259 pdl = &this->output_data_;
661be1e2 3260 if (!pdl->empty())
a2fb1b05 3261 {
661be1e2
ILT
3262 bool nobits = os->type() == elfcpp::SHT_NOBITS;
3263 bool sawtls = false;
3264 Output_segment::Output_data_list::iterator p = pdl->end();
3265 gold_assert(p != pdl->begin());
3266 do
a2fb1b05 3267 {
661be1e2
ILT
3268 --p;
3269 bool insert;
3270 if ((*p)->is_section_flag_set(elfcpp::SHF_TLS))
3271 {
3272 sawtls = true;
3273 // Put a NOBITS section after the first TLS section.
3274 // Put a PROGBITS section after the first
3275 // TLS/PROGBITS section.
3276 insert = nobits || !(*p)->is_section_type(elfcpp::SHT_NOBITS);
3277 }
3278 else
3279 {
3280 // If we've gone past the TLS sections, but we've
3281 // seen a TLS section, then we need to insert this
3282 // section now.
3283 insert = sawtls;
3284 }
3285
3286 if (insert)
3287 {
3288 ++p;
3289 pdl->insert(p, os);
3290 return;
3291 }
a2fb1b05 3292 }
661be1e2 3293 while (p != pdl->begin());
a2fb1b05 3294 }
ead1e424 3295
dbe717ef
ILT
3296 // There are no TLS sections yet; put this one at the requested
3297 // location in the section list.
a2fb1b05
ILT
3298 }
3299
1a2dff53 3300 if (do_sort)
9f1d377b 3301 {
1a2dff53
ILT
3302 // For the PT_GNU_RELRO segment, we need to group relro
3303 // sections, and we need to put them before any non-relro
3304 // sections. Any relro local sections go before relro non-local
3305 // sections. One section may be marked as the last relro
3306 // section.
3307 if (os->is_relro())
9f1d377b 3308 {
1a2dff53
ILT
3309 gold_assert(pdl == &this->output_data_);
3310 Output_segment::Output_data_list::iterator p;
3311 for (p = pdl->begin(); p != pdl->end(); ++p)
3312 {
3313 if (!(*p)->is_section())
3314 break;
9f1d377b 3315
1a2dff53
ILT
3316 Output_section* pos = (*p)->output_section();
3317 if (!pos->is_relro()
3318 || (os->is_relro_local() && !pos->is_relro_local())
3319 || (!os->is_last_relro() && pos->is_last_relro()))
3320 break;
3321 }
3322
3323 pdl->insert(p, os);
3324 return;
9f1d377b
ILT
3325 }
3326
1a2dff53
ILT
3327 // One section may be marked as the first section which follows
3328 // the relro sections.
3329 if (os->is_first_non_relro())
3330 {
3331 gold_assert(pdl == &this->output_data_);
3332 Output_segment::Output_data_list::iterator p;
3333 for (p = pdl->begin(); p != pdl->end(); ++p)
3334 {
3335 if (!(*p)->is_section())
3336 break;
3337
3338 Output_section* pos = (*p)->output_section();
3339 if (!pos->is_relro())
3340 break;
3341 }
3342
3343 pdl->insert(p, os);
3344 return;
3345 }
9f1d377b
ILT
3346 }
3347
8a5e3e08
ILT
3348 // Small data sections go at the end of the list of data sections.
3349 // If OS is not small, and there are small sections, we have to
3350 // insert it before the first small section.
3351 if (os->type() != elfcpp::SHT_NOBITS
3352 && !os->is_small_section()
3353 && !pdl->empty()
3354 && pdl->back()->is_section()
3355 && pdl->back()->output_section()->is_small_section())
3356 {
3357 for (Output_segment::Output_data_list::iterator p = pdl->begin();
3358 p != pdl->end();
3359 ++p)
3360 {
3361 if ((*p)->is_section()
3362 && (*p)->output_section()->is_small_section())
3363 {
3364 pdl->insert(p, os);
3365 return;
3366 }
3367 }
3368 gold_unreachable();
3369 }
3370
3371 // A small BSS section goes at the start of the BSS sections, after
3372 // other small BSS sections.
3373 if (os->type() == elfcpp::SHT_NOBITS && os->is_small_section())
3374 {
3375 for (Output_segment::Output_data_list::iterator p = pdl->begin();
3376 p != pdl->end();
3377 ++p)
3378 {
3379 if (!(*p)->is_section()
3380 || !(*p)->output_section()->is_small_section())
3381 {
3382 pdl->insert(p, os);
3383 return;
3384 }
3385 }
3386 }
3387
3388 // A large BSS section goes at the end of the BSS sections, which
3389 // means that one that is not large must come before the first large
3390 // one.
3391 if (os->type() == elfcpp::SHT_NOBITS
3392 && !os->is_large_section()
3393 && !pdl->empty()
3394 && pdl->back()->is_section()
3395 && pdl->back()->output_section()->is_large_section())
3396 {
3397 for (Output_segment::Output_data_list::iterator p = pdl->begin();
3398 p != pdl->end();
3399 ++p)
3400 {
3401 if ((*p)->is_section()
3402 && (*p)->output_section()->is_large_section())
3403 {
3404 pdl->insert(p, os);
3405 return;
3406 }
3407 }
3408 gold_unreachable();
3409 }
3410
f5c870d2
ILT
3411 // We do some further output section sorting in order to make the
3412 // generated program run more efficiently. We should only do this
3413 // when not using a linker script, so it is controled by the DO_SORT
3414 // parameter.
3415 if (do_sort)
3416 {
3417 // FreeBSD requires the .interp section to be in the first page
3418 // of the executable. That is a more efficient location anyhow
3419 // for any OS, since it means that the kernel will have the data
3420 // handy after it reads the program headers.
3421 if (os->is_interp() && !pdl->empty())
3422 {
3423 pdl->insert(pdl->begin(), os);
3424 return;
3425 }
3426
3427 // Put loadable non-writable notes immediately after the .interp
3428 // sections, so that the PT_NOTE segment is on the first page of
3429 // the executable.
3430 if (os->type() == elfcpp::SHT_NOTE
3431 && (os->flags() & elfcpp::SHF_WRITE) == 0
3432 && !pdl->empty())
3433 {
3434 Output_segment::Output_data_list::iterator p = pdl->begin();
3435 if ((*p)->is_section() && (*p)->output_section()->is_interp())
3436 ++p;
3437 pdl->insert(p, os);
96a0d71b 3438 return;
f5c870d2
ILT
3439 }
3440
3441 // If this section is used by the dynamic linker, and it is not
3442 // writable, then put it first, after the .interp section and
3443 // any loadable notes. This makes it more likely that the
3444 // dynamic linker will have to read less data from the disk.
3445 if (os->is_dynamic_linker_section()
3446 && !pdl->empty()
3447 && (os->flags() & elfcpp::SHF_WRITE) == 0)
3448 {
3449 bool is_reloc = (os->type() == elfcpp::SHT_REL
3450 || os->type() == elfcpp::SHT_RELA);
3451 Output_segment::Output_data_list::iterator p = pdl->begin();
3452 while (p != pdl->end()
3453 && (*p)->is_section()
3454 && ((*p)->output_section()->is_dynamic_linker_section()
3455 || (*p)->output_section()->type() == elfcpp::SHT_NOTE))
3456 {
3457 // Put reloc sections after the other ones. Putting the
3458 // dynamic reloc sections first confuses BFD, notably
3459 // objcopy and strip.
3460 if (!is_reloc
3461 && ((*p)->output_section()->type() == elfcpp::SHT_REL
3462 || (*p)->output_section()->type() == elfcpp::SHT_RELA))
3463 break;
3464 ++p;
3465 }
3466 pdl->insert(p, os);
3467 return;
3468 }
3469 }
3470
3471 // If there were no constraints on the output section, just add it
3472 // to the end of the list.
01676dcd 3473 pdl->push_back(os);
75f65a3e
ILT
3474}
3475
1650c4ff
ILT
3476// Remove an Output_section from this segment. It is an error if it
3477// is not present.
3478
3479void
3480Output_segment::remove_output_section(Output_section* os)
3481{
3482 // We only need this for SHT_PROGBITS.
3483 gold_assert(os->type() == elfcpp::SHT_PROGBITS);
3484 for (Output_data_list::iterator p = this->output_data_.begin();
3485 p != this->output_data_.end();
3486 ++p)
3487 {
3488 if (*p == os)
3489 {
3490 this->output_data_.erase(p);
3491 return;
3492 }
3493 }
3494 gold_unreachable();
3495}
3496
a192ba05
ILT
3497// Add an Output_data (which need not be an Output_section) to the
3498// start of a segment.
75f65a3e
ILT
3499
3500void
3501Output_segment::add_initial_output_data(Output_data* od)
3502{
a445fddf 3503 gold_assert(!this->is_max_align_known_);
75f65a3e
ILT
3504 this->output_data_.push_front(od);
3505}
3506
9f1d377b
ILT
3507// Return whether the first data section is a relro section.
3508
3509bool
3510Output_segment::is_first_section_relro() const
3511{
3512 return (!this->output_data_.empty()
3513 && this->output_data_.front()->is_section()
3514 && this->output_data_.front()->output_section()->is_relro());
3515}
3516
75f65a3e 3517// Return the maximum alignment of the Output_data in Output_segment.
75f65a3e
ILT
3518
3519uint64_t
a445fddf 3520Output_segment::maximum_alignment()
75f65a3e 3521{
a445fddf 3522 if (!this->is_max_align_known_)
ead1e424 3523 {
2ea97941 3524 uint64_t addralign;
ead1e424 3525
2ea97941
ILT
3526 addralign = Output_segment::maximum_alignment_list(&this->output_data_);
3527 if (addralign > this->max_align_)
3528 this->max_align_ = addralign;
ead1e424 3529
2ea97941
ILT
3530 addralign = Output_segment::maximum_alignment_list(&this->output_bss_);
3531 if (addralign > this->max_align_)
3532 this->max_align_ = addralign;
ead1e424 3533
a445fddf 3534 this->is_max_align_known_ = true;
ead1e424
ILT
3535 }
3536
a445fddf 3537 return this->max_align_;
75f65a3e
ILT
3538}
3539
ead1e424
ILT
3540// Return the maximum alignment of a list of Output_data.
3541
3542uint64_t
a445fddf 3543Output_segment::maximum_alignment_list(const Output_data_list* pdl)
ead1e424
ILT
3544{
3545 uint64_t ret = 0;
3546 for (Output_data_list::const_iterator p = pdl->begin();
3547 p != pdl->end();
3548 ++p)
3549 {
2ea97941
ILT
3550 uint64_t addralign = (*p)->addralign();
3551 if (addralign > ret)
3552 ret = addralign;
ead1e424
ILT
3553 }
3554 return ret;
3555}
3556
4f4c5f80
ILT
3557// Return the number of dynamic relocs applied to this segment.
3558
3559unsigned int
3560Output_segment::dynamic_reloc_count() const
3561{
3562 return (this->dynamic_reloc_count_list(&this->output_data_)
3563 + this->dynamic_reloc_count_list(&this->output_bss_));
3564}
3565
3566// Return the number of dynamic relocs applied to an Output_data_list.
3567
3568unsigned int
3569Output_segment::dynamic_reloc_count_list(const Output_data_list* pdl) const
3570{
3571 unsigned int count = 0;
3572 for (Output_data_list::const_iterator p = pdl->begin();
3573 p != pdl->end();
3574 ++p)
3575 count += (*p)->dynamic_reloc_count();
3576 return count;
3577}
3578
a445fddf
ILT
3579// Set the section addresses for an Output_segment. If RESET is true,
3580// reset the addresses first. ADDR is the address and *POFF is the
3581// file offset. Set the section indexes starting with *PSHNDX.
3582// Return the address of the immediately following segment. Update
3583// *POFF and *PSHNDX.
75f65a3e
ILT
3584
3585uint64_t
96a2b4e4 3586Output_segment::set_section_addresses(const Layout* layout, bool reset,
1a2dff53
ILT
3587 uint64_t addr,
3588 unsigned int increase_relro,
3589 off_t* poff,
ead1e424 3590 unsigned int* pshndx)
75f65a3e 3591{
a3ad94ed 3592 gold_assert(this->type_ == elfcpp::PT_LOAD);
75f65a3e 3593
1a2dff53
ILT
3594 off_t orig_off = *poff;
3595
3596 // If we have relro sections, we need to pad forward now so that the
3597 // relro sections plus INCREASE_RELRO end on a common page boundary.
3598 if (parameters->options().relro()
3599 && this->is_first_section_relro()
3600 && (!this->are_addresses_set_ || reset))
3601 {
3602 uint64_t relro_size = 0;
3603 off_t off = *poff;
3604 for (Output_data_list::iterator p = this->output_data_.begin();
3605 p != this->output_data_.end();
3606 ++p)
3607 {
3608 if (!(*p)->is_section())
3609 break;
3610 Output_section* pos = (*p)->output_section();
3611 if (!pos->is_relro())
3612 break;
3613 gold_assert(!(*p)->is_section_flag_set(elfcpp::SHF_TLS));
3614 if ((*p)->is_address_valid())
3615 relro_size += (*p)->data_size();
3616 else
3617 {
3618 // FIXME: This could be faster.
3619 (*p)->set_address_and_file_offset(addr + relro_size,
3620 off + relro_size);
3621 relro_size += (*p)->data_size();
3622 (*p)->reset_address_and_file_offset();
3623 }
3624 }
3625 relro_size += increase_relro;
3626
3627 uint64_t page_align = parameters->target().common_pagesize();
3628
3629 // Align to offset N such that (N + RELRO_SIZE) % PAGE_ALIGN == 0.
3630 uint64_t desired_align = page_align - (relro_size % page_align);
3631 if (desired_align < *poff % page_align)
3632 *poff += page_align - *poff % page_align;
3633 *poff += desired_align - *poff % page_align;
3634 addr += *poff - orig_off;
3635 orig_off = *poff;
3636 }
3637
a445fddf
ILT
3638 if (!reset && this->are_addresses_set_)
3639 {
3640 gold_assert(this->paddr_ == addr);
3641 addr = this->vaddr_;
3642 }
3643 else
3644 {
3645 this->vaddr_ = addr;
3646 this->paddr_ = addr;
3647 this->are_addresses_set_ = true;
3648 }
75f65a3e 3649
96a2b4e4
ILT
3650 bool in_tls = false;
3651
75f65a3e
ILT
3652 this->offset_ = orig_off;
3653
96a2b4e4 3654 addr = this->set_section_list_addresses(layout, reset, &this->output_data_,
1a2dff53 3655 addr, poff, pshndx, &in_tls);
75f65a3e
ILT
3656 this->filesz_ = *poff - orig_off;
3657
3658 off_t off = *poff;
3659
96a2b4e4
ILT
3660 uint64_t ret = this->set_section_list_addresses(layout, reset,
3661 &this->output_bss_,
3662 addr, poff, pshndx,
1a2dff53 3663 &in_tls);
96a2b4e4
ILT
3664
3665 // If the last section was a TLS section, align upward to the
3666 // alignment of the TLS segment, so that the overall size of the TLS
3667 // segment is aligned.
3668 if (in_tls)
3669 {
3670 uint64_t segment_align = layout->tls_segment()->maximum_alignment();
3671 *poff = align_address(*poff, segment_align);
3672 }
3673
75f65a3e
ILT
3674 this->memsz_ = *poff - orig_off;
3675
3676 // Ignore the file offset adjustments made by the BSS Output_data
3677 // objects.
3678 *poff = off;
61ba1cf9
ILT
3679
3680 return ret;
75f65a3e
ILT
3681}
3682
b8e6aad9
ILT
3683// Set the addresses and file offsets in a list of Output_data
3684// structures.
75f65a3e
ILT
3685
3686uint64_t
96a2b4e4
ILT
3687Output_segment::set_section_list_addresses(const Layout* layout, bool reset,
3688 Output_data_list* pdl,
ead1e424 3689 uint64_t addr, off_t* poff,
96a2b4e4 3690 unsigned int* pshndx,
1a2dff53 3691 bool* in_tls)
75f65a3e 3692{
ead1e424 3693 off_t startoff = *poff;
75f65a3e 3694
ead1e424 3695 off_t off = startoff;
75f65a3e
ILT
3696 for (Output_data_list::iterator p = pdl->begin();
3697 p != pdl->end();
3698 ++p)
3699 {
a445fddf
ILT
3700 if (reset)
3701 (*p)->reset_address_and_file_offset();
3702
3703 // When using a linker script the section will most likely
3704 // already have an address.
3705 if (!(*p)->is_address_valid())
3802b2dd 3706 {
96a2b4e4
ILT
3707 uint64_t align = (*p)->addralign();
3708
3709 if ((*p)->is_section_flag_set(elfcpp::SHF_TLS))
3710 {
3711 // Give the first TLS section the alignment of the
3712 // entire TLS segment. Otherwise the TLS segment as a
3713 // whole may be misaligned.
3714 if (!*in_tls)
3715 {
3716 Output_segment* tls_segment = layout->tls_segment();
3717 gold_assert(tls_segment != NULL);
3718 uint64_t segment_align = tls_segment->maximum_alignment();
3719 gold_assert(segment_align >= align);
3720 align = segment_align;
3721
3722 *in_tls = true;
3723 }
3724 }
3725 else
3726 {
3727 // If this is the first section after the TLS segment,
3728 // align it to at least the alignment of the TLS
3729 // segment, so that the size of the overall TLS segment
3730 // is aligned.
3731 if (*in_tls)
3732 {
3733 uint64_t segment_align =
3734 layout->tls_segment()->maximum_alignment();
3735 if (segment_align > align)
3736 align = segment_align;
3737
3738 *in_tls = false;
3739 }
3740 }
3741
3742 off = align_address(off, align);
3802b2dd
ILT
3743 (*p)->set_address_and_file_offset(addr + (off - startoff), off);
3744 }
a445fddf
ILT
3745 else
3746 {
3747 // The script may have inserted a skip forward, but it
3748 // better not have moved backward.
661be1e2
ILT
3749 if ((*p)->address() >= addr + (off - startoff))
3750 off += (*p)->address() - (addr + (off - startoff));
3751 else
3752 {
3753 if (!layout->script_options()->saw_sections_clause())
3754 gold_unreachable();
3755 else
3756 {
3757 Output_section* os = (*p)->output_section();
64b1ae37
DK
3758
3759 // Cast to unsigned long long to avoid format warnings.
3760 unsigned long long previous_dot =
3761 static_cast<unsigned long long>(addr + (off - startoff));
3762 unsigned long long dot =
3763 static_cast<unsigned long long>((*p)->address());
3764
661be1e2
ILT
3765 if (os == NULL)
3766 gold_error(_("dot moves backward in linker script "
64b1ae37 3767 "from 0x%llx to 0x%llx"), previous_dot, dot);
661be1e2
ILT
3768 else
3769 gold_error(_("address of section '%s' moves backward "
3770 "from 0x%llx to 0x%llx"),
64b1ae37 3771 os->name(), previous_dot, dot);
661be1e2
ILT
3772 }
3773 }
a445fddf
ILT
3774 (*p)->set_file_offset(off);
3775 (*p)->finalize_data_size();
3776 }
ead1e424 3777
96a2b4e4
ILT
3778 // We want to ignore the size of a SHF_TLS or SHT_NOBITS
3779 // section. Such a section does not affect the size of a
3780 // PT_LOAD segment.
3781 if (!(*p)->is_section_flag_set(elfcpp::SHF_TLS)
ead1e424
ILT
3782 || !(*p)->is_section_type(elfcpp::SHT_NOBITS))
3783 off += (*p)->data_size();
75f65a3e 3784
ead1e424
ILT
3785 if ((*p)->is_section())
3786 {
3787 (*p)->set_out_shndx(*pshndx);
3788 ++*pshndx;
3789 }
75f65a3e
ILT
3790 }
3791
3792 *poff = off;
ead1e424 3793 return addr + (off - startoff);
75f65a3e
ILT
3794}
3795
3796// For a non-PT_LOAD segment, set the offset from the sections, if
1a2dff53 3797// any. Add INCREASE to the file size and the memory size.
75f65a3e
ILT
3798
3799void
1a2dff53 3800Output_segment::set_offset(unsigned int increase)
75f65a3e 3801{
a3ad94ed 3802 gold_assert(this->type_ != elfcpp::PT_LOAD);
75f65a3e 3803
a445fddf
ILT
3804 gold_assert(!this->are_addresses_set_);
3805
75f65a3e
ILT
3806 if (this->output_data_.empty() && this->output_bss_.empty())
3807 {
1a2dff53 3808 gold_assert(increase == 0);
75f65a3e
ILT
3809 this->vaddr_ = 0;
3810 this->paddr_ = 0;
a445fddf 3811 this->are_addresses_set_ = true;
75f65a3e 3812 this->memsz_ = 0;
a445fddf 3813 this->min_p_align_ = 0;
75f65a3e
ILT
3814 this->offset_ = 0;
3815 this->filesz_ = 0;
3816 return;
3817 }
3818
3819 const Output_data* first;
3820 if (this->output_data_.empty())
3821 first = this->output_bss_.front();
3822 else
3823 first = this->output_data_.front();
3824 this->vaddr_ = first->address();
a445fddf
ILT
3825 this->paddr_ = (first->has_load_address()
3826 ? first->load_address()
3827 : this->vaddr_);
3828 this->are_addresses_set_ = true;
75f65a3e
ILT
3829 this->offset_ = first->offset();
3830
3831 if (this->output_data_.empty())
3832 this->filesz_ = 0;
3833 else
3834 {
3835 const Output_data* last_data = this->output_data_.back();
3836 this->filesz_ = (last_data->address()
3837 + last_data->data_size()
3838 - this->vaddr_);
3839 }
3840
3841 const Output_data* last;
3842 if (this->output_bss_.empty())
3843 last = this->output_data_.back();
3844 else
3845 last = this->output_bss_.back();
3846 this->memsz_ = (last->address()
3847 + last->data_size()
3848 - this->vaddr_);
96a2b4e4 3849
1a2dff53
ILT
3850 this->filesz_ += increase;
3851 this->memsz_ += increase;
3852
96a2b4e4
ILT
3853 // If this is a TLS segment, align the memory size. The code in
3854 // set_section_list ensures that the section after the TLS segment
3855 // is aligned to give us room.
3856 if (this->type_ == elfcpp::PT_TLS)
3857 {
3858 uint64_t segment_align = this->maximum_alignment();
3859 gold_assert(this->vaddr_ == align_address(this->vaddr_, segment_align));
3860 this->memsz_ = align_address(this->memsz_, segment_align);
3861 }
75f65a3e
ILT
3862}
3863
7bf1f802
ILT
3864// Set the TLS offsets of the sections in the PT_TLS segment.
3865
3866void
3867Output_segment::set_tls_offsets()
3868{
3869 gold_assert(this->type_ == elfcpp::PT_TLS);
3870
3871 for (Output_data_list::iterator p = this->output_data_.begin();
3872 p != this->output_data_.end();
3873 ++p)
3874 (*p)->set_tls_offset(this->vaddr_);
3875
3876 for (Output_data_list::iterator p = this->output_bss_.begin();
3877 p != this->output_bss_.end();
3878 ++p)
3879 (*p)->set_tls_offset(this->vaddr_);
3880}
3881
a445fddf
ILT
3882// Return the address of the first section.
3883
3884uint64_t
3885Output_segment::first_section_load_address() const
3886{
3887 for (Output_data_list::const_iterator p = this->output_data_.begin();
3888 p != this->output_data_.end();
3889 ++p)
3890 if ((*p)->is_section())
3891 return (*p)->has_load_address() ? (*p)->load_address() : (*p)->address();
3892
3893 for (Output_data_list::const_iterator p = this->output_bss_.begin();
3894 p != this->output_bss_.end();
3895 ++p)
3896 if ((*p)->is_section())
3897 return (*p)->has_load_address() ? (*p)->load_address() : (*p)->address();
3898
3899 gold_unreachable();
3900}
3901
75f65a3e
ILT
3902// Return the number of Output_sections in an Output_segment.
3903
3904unsigned int
3905Output_segment::output_section_count() const
3906{
3907 return (this->output_section_count_list(&this->output_data_)
3908 + this->output_section_count_list(&this->output_bss_));
3909}
3910
3911// Return the number of Output_sections in an Output_data_list.
3912
3913unsigned int
3914Output_segment::output_section_count_list(const Output_data_list* pdl) const
3915{
3916 unsigned int count = 0;
3917 for (Output_data_list::const_iterator p = pdl->begin();
3918 p != pdl->end();
3919 ++p)
3920 {
3921 if ((*p)->is_section())
3922 ++count;
3923 }
3924 return count;
a2fb1b05
ILT
3925}
3926
1c4f3631
ILT
3927// Return the section attached to the list segment with the lowest
3928// load address. This is used when handling a PHDRS clause in a
3929// linker script.
3930
3931Output_section*
3932Output_segment::section_with_lowest_load_address() const
3933{
3934 Output_section* found = NULL;
3935 uint64_t found_lma = 0;
3936 this->lowest_load_address_in_list(&this->output_data_, &found, &found_lma);
3937
3938 Output_section* found_data = found;
3939 this->lowest_load_address_in_list(&this->output_bss_, &found, &found_lma);
3940 if (found != found_data && found_data != NULL)
3941 {
3942 gold_error(_("nobits section %s may not precede progbits section %s "
3943 "in same segment"),
3944 found->name(), found_data->name());
3945 return NULL;
3946 }
3947
3948 return found;
3949}
3950
3951// Look through a list for a section with a lower load address.
3952
3953void
3954Output_segment::lowest_load_address_in_list(const Output_data_list* pdl,
3955 Output_section** found,
3956 uint64_t* found_lma) const
3957{
3958 for (Output_data_list::const_iterator p = pdl->begin();
3959 p != pdl->end();
3960 ++p)
3961 {
3962 if (!(*p)->is_section())
3963 continue;
3964 Output_section* os = static_cast<Output_section*>(*p);
3965 uint64_t lma = (os->has_load_address()
3966 ? os->load_address()
3967 : os->address());
3968 if (*found == NULL || lma < *found_lma)
3969 {
3970 *found = os;
3971 *found_lma = lma;
3972 }
3973 }
3974}
3975
61ba1cf9
ILT
3976// Write the segment data into *OPHDR.
3977
3978template<int size, bool big_endian>
3979void
ead1e424 3980Output_segment::write_header(elfcpp::Phdr_write<size, big_endian>* ophdr)
61ba1cf9
ILT
3981{
3982 ophdr->put_p_type(this->type_);
3983 ophdr->put_p_offset(this->offset_);
3984 ophdr->put_p_vaddr(this->vaddr_);
3985 ophdr->put_p_paddr(this->paddr_);
3986 ophdr->put_p_filesz(this->filesz_);
3987 ophdr->put_p_memsz(this->memsz_);
3988 ophdr->put_p_flags(this->flags_);
a445fddf 3989 ophdr->put_p_align(std::max(this->min_p_align_, this->maximum_alignment()));
61ba1cf9
ILT
3990}
3991
3992// Write the section headers into V.
3993
3994template<int size, bool big_endian>
3995unsigned char*
16649710
ILT
3996Output_segment::write_section_headers(const Layout* layout,
3997 const Stringpool* secnamepool,
ead1e424 3998 unsigned char* v,
7d1a9ebb 3999 unsigned int *pshndx) const
5482377d 4000{
ead1e424
ILT
4001 // Every section that is attached to a segment must be attached to a
4002 // PT_LOAD segment, so we only write out section headers for PT_LOAD
4003 // segments.
4004 if (this->type_ != elfcpp::PT_LOAD)
4005 return v;
4006
7d1a9ebb
ILT
4007 v = this->write_section_headers_list<size, big_endian>(layout, secnamepool,
4008 &this->output_data_,
4009 v, pshndx);
4010 v = this->write_section_headers_list<size, big_endian>(layout, secnamepool,
4011 &this->output_bss_,
4012 v, pshndx);
61ba1cf9
ILT
4013 return v;
4014}
4015
4016template<int size, bool big_endian>
4017unsigned char*
16649710
ILT
4018Output_segment::write_section_headers_list(const Layout* layout,
4019 const Stringpool* secnamepool,
61ba1cf9 4020 const Output_data_list* pdl,
ead1e424 4021 unsigned char* v,
7d1a9ebb 4022 unsigned int* pshndx) const
61ba1cf9
ILT
4023{
4024 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
4025 for (Output_data_list::const_iterator p = pdl->begin();
4026 p != pdl->end();
4027 ++p)
4028 {
4029 if ((*p)->is_section())
4030 {
5482377d 4031 const Output_section* ps = static_cast<const Output_section*>(*p);
a3ad94ed 4032 gold_assert(*pshndx == ps->out_shndx());
61ba1cf9 4033 elfcpp::Shdr_write<size, big_endian> oshdr(v);
16649710 4034 ps->write_header(layout, secnamepool, &oshdr);
61ba1cf9 4035 v += shdr_size;
ead1e424 4036 ++*pshndx;
61ba1cf9
ILT
4037 }
4038 }
4039 return v;
4040}
4041
7d9e3d98
ILT
4042// Print the output sections to the map file.
4043
4044void
4045Output_segment::print_sections_to_mapfile(Mapfile* mapfile) const
4046{
4047 if (this->type() != elfcpp::PT_LOAD)
4048 return;
4049 this->print_section_list_to_mapfile(mapfile, &this->output_data_);
4050 this->print_section_list_to_mapfile(mapfile, &this->output_bss_);
4051}
4052
4053// Print an output section list to the map file.
4054
4055void
4056Output_segment::print_section_list_to_mapfile(Mapfile* mapfile,
4057 const Output_data_list* pdl) const
4058{
4059 for (Output_data_list::const_iterator p = pdl->begin();
4060 p != pdl->end();
4061 ++p)
4062 (*p)->print_to_mapfile(mapfile);
4063}
4064
a2fb1b05
ILT
4065// Output_file methods.
4066
14144f39
ILT
4067Output_file::Output_file(const char* name)
4068 : name_(name),
61ba1cf9
ILT
4069 o_(-1),
4070 file_size_(0),
c420411f 4071 base_(NULL),
516cb3d0
ILT
4072 map_is_anonymous_(false),
4073 is_temporary_(false)
61ba1cf9
ILT
4074{
4075}
4076
404c2abb
ILT
4077// Try to open an existing file. Returns false if the file doesn't
4078// exist, has a size of 0 or can't be mmapped.
4079
4080bool
4081Output_file::open_for_modification()
4082{
4083 // The name "-" means "stdout".
4084 if (strcmp(this->name_, "-") == 0)
4085 return false;
4086
4087 // Don't bother opening files with a size of zero.
4088 struct stat s;
4089 if (::stat(this->name_, &s) != 0 || s.st_size == 0)
4090 return false;
4091
4092 int o = open_descriptor(-1, this->name_, O_RDWR, 0);
4093 if (o < 0)
4094 gold_fatal(_("%s: open: %s"), this->name_, strerror(errno));
4095 this->o_ = o;
4096 this->file_size_ = s.st_size;
4097
4098 // If the file can't be mmapped, copying the content to an anonymous
4099 // map will probably negate the performance benefits of incremental
4100 // linking. This could be helped by using views and loading only
4101 // the necessary parts, but this is not supported as of now.
4102 if (!this->map_no_anonymous())
4103 {
4104 release_descriptor(o, true);
4105 this->o_ = -1;
4106 this->file_size_ = 0;
4107 return false;
4108 }
4109
4110 return true;
4111}
4112
61ba1cf9
ILT
4113// Open the output file.
4114
a2fb1b05 4115void
61ba1cf9 4116Output_file::open(off_t file_size)
a2fb1b05 4117{
61ba1cf9
ILT
4118 this->file_size_ = file_size;
4119
4e9d8586
ILT
4120 // Unlink the file first; otherwise the open() may fail if the file
4121 // is busy (e.g. it's an executable that's currently being executed).
4122 //
4123 // However, the linker may be part of a system where a zero-length
4124 // file is created for it to write to, with tight permissions (gcc
4125 // 2.95 did something like this). Unlinking the file would work
4126 // around those permission controls, so we only unlink if the file
4127 // has a non-zero size. We also unlink only regular files to avoid
4128 // trouble with directories/etc.
4129 //
4130 // If we fail, continue; this command is merely a best-effort attempt
4131 // to improve the odds for open().
4132
42a1b686 4133 // We let the name "-" mean "stdout"
516cb3d0 4134 if (!this->is_temporary_)
42a1b686 4135 {
516cb3d0
ILT
4136 if (strcmp(this->name_, "-") == 0)
4137 this->o_ = STDOUT_FILENO;
4138 else
4139 {
4140 struct stat s;
6a89f575
CC
4141 if (::stat(this->name_, &s) == 0
4142 && (S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
4143 {
4144 if (s.st_size != 0)
4145 ::unlink(this->name_);
4146 else if (!parameters->options().relocatable())
4147 {
4148 // If we don't unlink the existing file, add execute
4149 // permission where read permissions already exist
4150 // and where the umask permits.
4151 int mask = ::umask(0);
4152 ::umask(mask);
4153 s.st_mode |= (s.st_mode & 0444) >> 2;
4154 ::chmod(this->name_, s.st_mode & ~mask);
4155 }
4156 }
516cb3d0 4157
8851ecca 4158 int mode = parameters->options().relocatable() ? 0666 : 0777;
2a00e4fb
ILT
4159 int o = open_descriptor(-1, this->name_, O_RDWR | O_CREAT | O_TRUNC,
4160 mode);
516cb3d0
ILT
4161 if (o < 0)
4162 gold_fatal(_("%s: open: %s"), this->name_, strerror(errno));
4163 this->o_ = o;
4164 }
42a1b686 4165 }
61ba1cf9 4166
27bc2bce
ILT
4167 this->map();
4168}
4169
4170// Resize the output file.
4171
4172void
4173Output_file::resize(off_t file_size)
4174{
c420411f
ILT
4175 // If the mmap is mapping an anonymous memory buffer, this is easy:
4176 // just mremap to the new size. If it's mapping to a file, we want
4177 // to unmap to flush to the file, then remap after growing the file.
4178 if (this->map_is_anonymous_)
4179 {
4180 void* base = ::mremap(this->base_, this->file_size_, file_size,
4181 MREMAP_MAYMOVE);
4182 if (base == MAP_FAILED)
4183 gold_fatal(_("%s: mremap: %s"), this->name_, strerror(errno));
4184 this->base_ = static_cast<unsigned char*>(base);
4185 this->file_size_ = file_size;
4186 }
4187 else
4188 {
4189 this->unmap();
4190 this->file_size_ = file_size;
fdcac5af
ILT
4191 if (!this->map_no_anonymous())
4192 gold_fatal(_("%s: mmap: %s"), this->name_, strerror(errno));
c420411f 4193 }
27bc2bce
ILT
4194}
4195
404c2abb
ILT
4196// Map an anonymous block of memory which will later be written to the
4197// file. Return whether the map succeeded.
26736d8e 4198
404c2abb 4199bool
26736d8e
ILT
4200Output_file::map_anonymous()
4201{
404c2abb
ILT
4202 void* base = ::mmap(NULL, this->file_size_, PROT_READ | PROT_WRITE,
4203 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
4204 if (base != MAP_FAILED)
4205 {
4206 this->map_is_anonymous_ = true;
4207 this->base_ = static_cast<unsigned char*>(base);
4208 return true;
4209 }
4210 return false;
26736d8e
ILT
4211}
4212
404c2abb 4213// Map the file into memory. Return whether the mapping succeeded.
27bc2bce 4214
404c2abb
ILT
4215bool
4216Output_file::map_no_anonymous()
27bc2bce 4217{
c420411f 4218 const int o = this->o_;
61ba1cf9 4219
c420411f
ILT
4220 // If the output file is not a regular file, don't try to mmap it;
4221 // instead, we'll mmap a block of memory (an anonymous buffer), and
4222 // then later write the buffer to the file.
4223 void* base;
4224 struct stat statbuf;
42a1b686
ILT
4225 if (o == STDOUT_FILENO || o == STDERR_FILENO
4226 || ::fstat(o, &statbuf) != 0
516cb3d0
ILT
4227 || !S_ISREG(statbuf.st_mode)
4228 || this->is_temporary_)
404c2abb
ILT
4229 return false;
4230
4231 // Ensure that we have disk space available for the file. If we
4232 // don't do this, it is possible that we will call munmap, close,
4233 // and exit with dirty buffers still in the cache with no assigned
4234 // disk blocks. If the disk is out of space at that point, the
4235 // output file will wind up incomplete, but we will have already
4236 // exited. The alternative to fallocate would be to use fdatasync,
4237 // but that would be a more significant performance hit.
4238 if (::posix_fallocate(o, 0, this->file_size_) < 0)
4239 gold_fatal(_("%s: %s"), this->name_, strerror(errno));
4240
4241 // Map the file into memory.
4242 base = ::mmap(NULL, this->file_size_, PROT_READ | PROT_WRITE,
4243 MAP_SHARED, o, 0);
4244
4245 // The mmap call might fail because of file system issues: the file
4246 // system might not support mmap at all, or it might not support
4247 // mmap with PROT_WRITE.
61ba1cf9 4248 if (base == MAP_FAILED)
404c2abb
ILT
4249 return false;
4250
4251 this->map_is_anonymous_ = false;
61ba1cf9 4252 this->base_ = static_cast<unsigned char*>(base);
404c2abb
ILT
4253 return true;
4254}
4255
4256// Map the file into memory.
4257
4258void
4259Output_file::map()
4260{
4261 if (this->map_no_anonymous())
4262 return;
4263
4264 // The mmap call might fail because of file system issues: the file
4265 // system might not support mmap at all, or it might not support
4266 // mmap with PROT_WRITE. I'm not sure which errno values we will
4267 // see in all cases, so if the mmap fails for any reason and we
4268 // don't care about file contents, try for an anonymous map.
4269 if (this->map_anonymous())
4270 return;
4271
4272 gold_fatal(_("%s: mmap: failed to allocate %lu bytes for output file: %s"),
4273 this->name_, static_cast<unsigned long>(this->file_size_),
4274 strerror(errno));
61ba1cf9
ILT
4275}
4276
c420411f 4277// Unmap the file from memory.
61ba1cf9
ILT
4278
4279void
c420411f 4280Output_file::unmap()
61ba1cf9
ILT
4281{
4282 if (::munmap(this->base_, this->file_size_) < 0)
a0c4fb0a 4283 gold_error(_("%s: munmap: %s"), this->name_, strerror(errno));
61ba1cf9 4284 this->base_ = NULL;
c420411f
ILT
4285}
4286
4287// Close the output file.
4288
4289void
4290Output_file::close()
4291{
4292 // If the map isn't file-backed, we need to write it now.
516cb3d0 4293 if (this->map_is_anonymous_ && !this->is_temporary_)
c420411f
ILT
4294 {
4295 size_t bytes_to_write = this->file_size_;
6d1e3092 4296 size_t offset = 0;
c420411f
ILT
4297 while (bytes_to_write > 0)
4298 {
6d1e3092
CD
4299 ssize_t bytes_written = ::write(this->o_, this->base_ + offset,
4300 bytes_to_write);
c420411f
ILT
4301 if (bytes_written == 0)
4302 gold_error(_("%s: write: unexpected 0 return-value"), this->name_);
4303 else if (bytes_written < 0)
4304 gold_error(_("%s: write: %s"), this->name_, strerror(errno));
4305 else
6d1e3092
CD
4306 {
4307 bytes_to_write -= bytes_written;
4308 offset += bytes_written;
4309 }
c420411f
ILT
4310 }
4311 }
4312 this->unmap();
61ba1cf9 4313
42a1b686 4314 // We don't close stdout or stderr
516cb3d0
ILT
4315 if (this->o_ != STDOUT_FILENO
4316 && this->o_ != STDERR_FILENO
4317 && !this->is_temporary_)
42a1b686
ILT
4318 if (::close(this->o_) < 0)
4319 gold_error(_("%s: close: %s"), this->name_, strerror(errno));
61ba1cf9 4320 this->o_ = -1;
a2fb1b05
ILT
4321}
4322
4323// Instantiate the templates we need. We could use the configure
4324// script to restrict this to only the ones for implemented targets.
4325
193a53d9 4326#ifdef HAVE_TARGET_32_LITTLE
a2fb1b05
ILT
4327template
4328off_t
4329Output_section::add_input_section<32, false>(
730cdc88 4330 Sized_relobj<32, false>* object,
2ea97941 4331 unsigned int shndx,
a2fb1b05 4332 const char* secname,
730cdc88 4333 const elfcpp::Shdr<32, false>& shdr,
a445fddf
ILT
4334 unsigned int reloc_shndx,
4335 bool have_sections_script);
193a53d9 4336#endif
a2fb1b05 4337
193a53d9 4338#ifdef HAVE_TARGET_32_BIG
a2fb1b05
ILT
4339template
4340off_t
4341Output_section::add_input_section<32, true>(
730cdc88 4342 Sized_relobj<32, true>* object,
2ea97941 4343 unsigned int shndx,
a2fb1b05 4344 const char* secname,
730cdc88 4345 const elfcpp::Shdr<32, true>& shdr,
a445fddf
ILT
4346 unsigned int reloc_shndx,
4347 bool have_sections_script);
193a53d9 4348#endif
a2fb1b05 4349
193a53d9 4350#ifdef HAVE_TARGET_64_LITTLE
a2fb1b05
ILT
4351template
4352off_t
4353Output_section::add_input_section<64, false>(
730cdc88 4354 Sized_relobj<64, false>* object,
2ea97941 4355 unsigned int shndx,
a2fb1b05 4356 const char* secname,
730cdc88 4357 const elfcpp::Shdr<64, false>& shdr,
a445fddf
ILT
4358 unsigned int reloc_shndx,
4359 bool have_sections_script);
193a53d9 4360#endif
a2fb1b05 4361
193a53d9 4362#ifdef HAVE_TARGET_64_BIG
a2fb1b05
ILT
4363template
4364off_t
4365Output_section::add_input_section<64, true>(
730cdc88 4366 Sized_relobj<64, true>* object,
2ea97941 4367 unsigned int shndx,
a2fb1b05 4368 const char* secname,
730cdc88 4369 const elfcpp::Shdr<64, true>& shdr,
a445fddf
ILT
4370 unsigned int reloc_shndx,
4371 bool have_sections_script);
193a53d9 4372#endif
a2fb1b05 4373
bbbfea06
CC
4374#ifdef HAVE_TARGET_32_LITTLE
4375template
4376class Output_reloc<elfcpp::SHT_REL, false, 32, false>;
4377#endif
4378
4379#ifdef HAVE_TARGET_32_BIG
4380template
4381class Output_reloc<elfcpp::SHT_REL, false, 32, true>;
4382#endif
4383
4384#ifdef HAVE_TARGET_64_LITTLE
4385template
4386class Output_reloc<elfcpp::SHT_REL, false, 64, false>;
4387#endif
4388
4389#ifdef HAVE_TARGET_64_BIG
4390template
4391class Output_reloc<elfcpp::SHT_REL, false, 64, true>;
4392#endif
4393
4394#ifdef HAVE_TARGET_32_LITTLE
4395template
4396class Output_reloc<elfcpp::SHT_REL, true, 32, false>;
4397#endif
4398
4399#ifdef HAVE_TARGET_32_BIG
4400template
4401class Output_reloc<elfcpp::SHT_REL, true, 32, true>;
4402#endif
4403
4404#ifdef HAVE_TARGET_64_LITTLE
4405template
4406class Output_reloc<elfcpp::SHT_REL, true, 64, false>;
4407#endif
4408
4409#ifdef HAVE_TARGET_64_BIG
4410template
4411class Output_reloc<elfcpp::SHT_REL, true, 64, true>;
4412#endif
4413
4414#ifdef HAVE_TARGET_32_LITTLE
4415template
4416class Output_reloc<elfcpp::SHT_RELA, false, 32, false>;
4417#endif
4418
4419#ifdef HAVE_TARGET_32_BIG
4420template
4421class Output_reloc<elfcpp::SHT_RELA, false, 32, true>;
4422#endif
4423
4424#ifdef HAVE_TARGET_64_LITTLE
4425template
4426class Output_reloc<elfcpp::SHT_RELA, false, 64, false>;
4427#endif
4428
4429#ifdef HAVE_TARGET_64_BIG
4430template
4431class Output_reloc<elfcpp::SHT_RELA, false, 64, true>;
4432#endif
4433
4434#ifdef HAVE_TARGET_32_LITTLE
4435template
4436class Output_reloc<elfcpp::SHT_RELA, true, 32, false>;
4437#endif
4438
4439#ifdef HAVE_TARGET_32_BIG
4440template
4441class Output_reloc<elfcpp::SHT_RELA, true, 32, true>;
4442#endif
4443
4444#ifdef HAVE_TARGET_64_LITTLE
4445template
4446class Output_reloc<elfcpp::SHT_RELA, true, 64, false>;
4447#endif
4448
4449#ifdef HAVE_TARGET_64_BIG
4450template
4451class Output_reloc<elfcpp::SHT_RELA, true, 64, true>;
4452#endif
4453
193a53d9 4454#ifdef HAVE_TARGET_32_LITTLE
c06b7b0b
ILT
4455template
4456class Output_data_reloc<elfcpp::SHT_REL, false, 32, false>;
193a53d9 4457#endif
c06b7b0b 4458
193a53d9 4459#ifdef HAVE_TARGET_32_BIG
c06b7b0b
ILT
4460template
4461class Output_data_reloc<elfcpp::SHT_REL, false, 32, true>;
193a53d9 4462#endif
c06b7b0b 4463
193a53d9 4464#ifdef HAVE_TARGET_64_LITTLE
c06b7b0b
ILT
4465template
4466class Output_data_reloc<elfcpp::SHT_REL, false, 64, false>;
193a53d9 4467#endif
c06b7b0b 4468
193a53d9 4469#ifdef HAVE_TARGET_64_BIG
c06b7b0b
ILT
4470template
4471class Output_data_reloc<elfcpp::SHT_REL, false, 64, true>;
193a53d9 4472#endif
c06b7b0b 4473
193a53d9 4474#ifdef HAVE_TARGET_32_LITTLE
c06b7b0b
ILT
4475template
4476class Output_data_reloc<elfcpp::SHT_REL, true, 32, false>;
193a53d9 4477#endif
c06b7b0b 4478
193a53d9 4479#ifdef HAVE_TARGET_32_BIG
c06b7b0b
ILT
4480template
4481class Output_data_reloc<elfcpp::SHT_REL, true, 32, true>;
193a53d9 4482#endif
c06b7b0b 4483
193a53d9 4484#ifdef HAVE_TARGET_64_LITTLE
c06b7b0b
ILT
4485template
4486class Output_data_reloc<elfcpp::SHT_REL, true, 64, false>;
193a53d9 4487#endif
c06b7b0b 4488
193a53d9 4489#ifdef HAVE_TARGET_64_BIG
c06b7b0b
ILT
4490template
4491class Output_data_reloc<elfcpp::SHT_REL, true, 64, true>;
193a53d9 4492#endif
c06b7b0b 4493
193a53d9 4494#ifdef HAVE_TARGET_32_LITTLE
c06b7b0b
ILT
4495template
4496class Output_data_reloc<elfcpp::SHT_RELA, false, 32, false>;
193a53d9 4497#endif
c06b7b0b 4498
193a53d9 4499#ifdef HAVE_TARGET_32_BIG
c06b7b0b
ILT
4500template
4501class Output_data_reloc<elfcpp::SHT_RELA, false, 32, true>;
193a53d9 4502#endif
c06b7b0b 4503
193a53d9 4504#ifdef HAVE_TARGET_64_LITTLE
c06b7b0b
ILT
4505template
4506class Output_data_reloc<elfcpp::SHT_RELA, false, 64, false>;
193a53d9 4507#endif
c06b7b0b 4508
193a53d9 4509#ifdef HAVE_TARGET_64_BIG
c06b7b0b
ILT
4510template
4511class Output_data_reloc<elfcpp::SHT_RELA, false, 64, true>;
193a53d9 4512#endif
c06b7b0b 4513
193a53d9 4514#ifdef HAVE_TARGET_32_LITTLE
c06b7b0b
ILT
4515template
4516class Output_data_reloc<elfcpp::SHT_RELA, true, 32, false>;
193a53d9 4517#endif
c06b7b0b 4518
193a53d9 4519#ifdef HAVE_TARGET_32_BIG
c06b7b0b
ILT
4520template
4521class Output_data_reloc<elfcpp::SHT_RELA, true, 32, true>;
193a53d9 4522#endif
c06b7b0b 4523
193a53d9 4524#ifdef HAVE_TARGET_64_LITTLE
c06b7b0b
ILT
4525template
4526class Output_data_reloc<elfcpp::SHT_RELA, true, 64, false>;
193a53d9 4527#endif
c06b7b0b 4528
193a53d9 4529#ifdef HAVE_TARGET_64_BIG
c06b7b0b
ILT
4530template
4531class Output_data_reloc<elfcpp::SHT_RELA, true, 64, true>;
193a53d9 4532#endif
c06b7b0b 4533
6a74a719
ILT
4534#ifdef HAVE_TARGET_32_LITTLE
4535template
4536class Output_relocatable_relocs<elfcpp::SHT_REL, 32, false>;
4537#endif
4538
4539#ifdef HAVE_TARGET_32_BIG
4540template
4541class Output_relocatable_relocs<elfcpp::SHT_REL, 32, true>;
4542#endif
4543
4544#ifdef HAVE_TARGET_64_LITTLE
4545template
4546class Output_relocatable_relocs<elfcpp::SHT_REL, 64, false>;
4547#endif
4548
4549#ifdef HAVE_TARGET_64_BIG
4550template
4551class Output_relocatable_relocs<elfcpp::SHT_REL, 64, true>;
4552#endif
4553
4554#ifdef HAVE_TARGET_32_LITTLE
4555template
4556class Output_relocatable_relocs<elfcpp::SHT_RELA, 32, false>;
4557#endif
4558
4559#ifdef HAVE_TARGET_32_BIG
4560template
4561class Output_relocatable_relocs<elfcpp::SHT_RELA, 32, true>;
4562#endif
4563
4564#ifdef HAVE_TARGET_64_LITTLE
4565template
4566class Output_relocatable_relocs<elfcpp::SHT_RELA, 64, false>;
4567#endif
4568
4569#ifdef HAVE_TARGET_64_BIG
4570template
4571class Output_relocatable_relocs<elfcpp::SHT_RELA, 64, true>;
4572#endif
4573
4574#ifdef HAVE_TARGET_32_LITTLE
4575template
4576class Output_data_group<32, false>;
4577#endif
4578
4579#ifdef HAVE_TARGET_32_BIG
4580template
4581class Output_data_group<32, true>;
4582#endif
4583
4584#ifdef HAVE_TARGET_64_LITTLE
4585template
4586class Output_data_group<64, false>;
4587#endif
4588
4589#ifdef HAVE_TARGET_64_BIG
4590template
4591class Output_data_group<64, true>;
4592#endif
4593
193a53d9 4594#ifdef HAVE_TARGET_32_LITTLE
ead1e424 4595template
dbe717ef 4596class Output_data_got<32, false>;
193a53d9 4597#endif
ead1e424 4598
193a53d9 4599#ifdef HAVE_TARGET_32_BIG
ead1e424 4600template
dbe717ef 4601class Output_data_got<32, true>;
193a53d9 4602#endif
ead1e424 4603
193a53d9 4604#ifdef HAVE_TARGET_64_LITTLE
ead1e424 4605template
dbe717ef 4606class Output_data_got<64, false>;
193a53d9 4607#endif
ead1e424 4608
193a53d9 4609#ifdef HAVE_TARGET_64_BIG
ead1e424 4610template
dbe717ef 4611class Output_data_got<64, true>;
193a53d9 4612#endif
ead1e424 4613
a2fb1b05 4614} // End namespace gold.
This page took 0.419473 seconds and 4 git commands to generate.