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