* remote-mips.c (set_breakpoint): Rename to...
[deliverable/binutils-gdb.git] / gold / output.cc
CommitLineData
a2fb1b05
ILT
1// output.cc -- manage the output file for gold
2
6cb15b7f
ILT
3// Copyright 2006, 2007 Free Software Foundation, Inc.
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>
61ba1cf9
ILT
26#include <cerrno>
27#include <fcntl.h>
28#include <unistd.h>
29#include <sys/mman.h>
4e9d8586 30#include <sys/stat.h>
75f65a3e 31#include <algorithm>
5ffcaa86 32#include "libiberty.h" // for unlink_if_ordinary()
a2fb1b05 33
7e1edb90 34#include "parameters.h"
a2fb1b05 35#include "object.h"
ead1e424
ILT
36#include "symtab.h"
37#include "reloc.h"
b8e6aad9 38#include "merge.h"
a2fb1b05
ILT
39#include "output.h"
40
c420411f
ILT
41// Some BSD systems still use MAP_ANON instead of MAP_ANONYMOUS
42#ifndef MAP_ANONYMOUS
43# define MAP_ANONYMOUS MAP_ANON
44#endif
45
a2fb1b05
ILT
46namespace gold
47{
48
a3ad94ed
ILT
49// Output_data variables.
50
27bc2bce 51bool Output_data::allocated_sizes_are_fixed;
a3ad94ed 52
a2fb1b05
ILT
53// Output_data methods.
54
55Output_data::~Output_data()
56{
57}
58
730cdc88
ILT
59// Return the default alignment for the target size.
60
61uint64_t
62Output_data::default_alignment()
63{
64 return Output_data::default_alignment_for_size(parameters->get_size());
65}
66
75f65a3e
ILT
67// Return the default alignment for a size--32 or 64.
68
69uint64_t
730cdc88 70Output_data::default_alignment_for_size(int size)
75f65a3e
ILT
71{
72 if (size == 32)
73 return 4;
74 else if (size == 64)
75 return 8;
76 else
a3ad94ed 77 gold_unreachable();
75f65a3e
ILT
78}
79
75f65a3e
ILT
80// Output_section_header methods. This currently assumes that the
81// segment and section lists are complete at construction time.
82
83Output_section_headers::Output_section_headers(
16649710
ILT
84 const Layout* layout,
85 const Layout::Segment_list* segment_list,
6a74a719 86 const Layout::Section_list* section_list,
16649710 87 const Layout::Section_list* unattached_section_list,
61ba1cf9 88 const Stringpool* secnamepool)
9025d29d 89 : layout_(layout),
75f65a3e 90 segment_list_(segment_list),
6a74a719 91 section_list_(section_list),
a3ad94ed 92 unattached_section_list_(unattached_section_list),
61ba1cf9 93 secnamepool_(secnamepool)
75f65a3e 94{
61ba1cf9
ILT
95 // Count all the sections. Start with 1 for the null section.
96 off_t count = 1;
6a74a719
ILT
97 if (!parameters->output_is_object())
98 {
99 for (Layout::Segment_list::const_iterator p = segment_list->begin();
100 p != segment_list->end();
101 ++p)
102 if ((*p)->type() == elfcpp::PT_LOAD)
103 count += (*p)->output_section_count();
104 }
105 else
106 {
107 for (Layout::Section_list::const_iterator p = section_list->begin();
108 p != section_list->end();
109 ++p)
110 if (((*p)->flags() & elfcpp::SHF_ALLOC) != 0)
111 ++count;
112 }
16649710 113 count += unattached_section_list->size();
75f65a3e 114
9025d29d 115 const int size = parameters->get_size();
75f65a3e
ILT
116 int shdr_size;
117 if (size == 32)
118 shdr_size = elfcpp::Elf_sizes<32>::shdr_size;
119 else if (size == 64)
120 shdr_size = elfcpp::Elf_sizes<64>::shdr_size;
121 else
a3ad94ed 122 gold_unreachable();
75f65a3e
ILT
123
124 this->set_data_size(count * shdr_size);
125}
126
61ba1cf9
ILT
127// Write out the section headers.
128
75f65a3e 129void
61ba1cf9 130Output_section_headers::do_write(Output_file* of)
a2fb1b05 131{
9025d29d 132 if (parameters->get_size() == 32)
61ba1cf9 133 {
9025d29d
ILT
134 if (parameters->is_big_endian())
135 {
136#ifdef HAVE_TARGET_32_BIG
137 this->do_sized_write<32, true>(of);
138#else
139 gold_unreachable();
140#endif
141 }
61ba1cf9 142 else
9025d29d
ILT
143 {
144#ifdef HAVE_TARGET_32_LITTLE
145 this->do_sized_write<32, false>(of);
146#else
147 gold_unreachable();
148#endif
149 }
61ba1cf9 150 }
9025d29d 151 else if (parameters->get_size() == 64)
61ba1cf9 152 {
9025d29d
ILT
153 if (parameters->is_big_endian())
154 {
155#ifdef HAVE_TARGET_64_BIG
156 this->do_sized_write<64, true>(of);
157#else
158 gold_unreachable();
159#endif
160 }
61ba1cf9 161 else
9025d29d
ILT
162 {
163#ifdef HAVE_TARGET_64_LITTLE
164 this->do_sized_write<64, false>(of);
165#else
166 gold_unreachable();
167#endif
168 }
61ba1cf9
ILT
169 }
170 else
a3ad94ed 171 gold_unreachable();
61ba1cf9
ILT
172}
173
174template<int size, bool big_endian>
175void
176Output_section_headers::do_sized_write(Output_file* of)
177{
178 off_t all_shdrs_size = this->data_size();
179 unsigned char* view = of->get_output_view(this->offset(), all_shdrs_size);
180
181 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
182 unsigned char* v = view;
183
184 {
185 typename elfcpp::Shdr_write<size, big_endian> oshdr(v);
186 oshdr.put_sh_name(0);
187 oshdr.put_sh_type(elfcpp::SHT_NULL);
188 oshdr.put_sh_flags(0);
189 oshdr.put_sh_addr(0);
190 oshdr.put_sh_offset(0);
191 oshdr.put_sh_size(0);
192 oshdr.put_sh_link(0);
193 oshdr.put_sh_info(0);
194 oshdr.put_sh_addralign(0);
195 oshdr.put_sh_entsize(0);
196 }
197
198 v += shdr_size;
199
6a74a719
ILT
200 unsigned int shndx = 1;
201 if (!parameters->output_is_object())
202 {
203 for (Layout::Segment_list::const_iterator p =
204 this->segment_list_->begin();
205 p != this->segment_list_->end();
206 ++p)
207 v = (*p)->write_section_headers<size, big_endian>(this->layout_,
208 this->secnamepool_,
209 v,
210 &shndx);
211 }
212 else
213 {
214 for (Layout::Section_list::const_iterator p =
215 this->section_list_->begin();
216 p != this->section_list_->end();
217 ++p)
218 {
219 // We do unallocated sections below, except that group
220 // sections have to come first.
221 if (((*p)->flags() & elfcpp::SHF_ALLOC) == 0
222 && (*p)->type() != elfcpp::SHT_GROUP)
223 continue;
224 gold_assert(shndx == (*p)->out_shndx());
225 elfcpp::Shdr_write<size, big_endian> oshdr(v);
226 (*p)->write_header(this->layout_, this->secnamepool_, &oshdr);
227 v += shdr_size;
228 ++shndx;
229 }
230 }
231
a3ad94ed 232 for (Layout::Section_list::const_iterator p =
16649710
ILT
233 this->unattached_section_list_->begin();
234 p != this->unattached_section_list_->end();
61ba1cf9
ILT
235 ++p)
236 {
6a74a719
ILT
237 // For a relocatable link, we did unallocated group sections
238 // above, since they have to come first.
239 if ((*p)->type() == elfcpp::SHT_GROUP
240 && parameters->output_is_object())
241 continue;
a3ad94ed 242 gold_assert(shndx == (*p)->out_shndx());
61ba1cf9 243 elfcpp::Shdr_write<size, big_endian> oshdr(v);
16649710 244 (*p)->write_header(this->layout_, this->secnamepool_, &oshdr);
61ba1cf9 245 v += shdr_size;
ead1e424 246 ++shndx;
61ba1cf9
ILT
247 }
248
249 of->write_output_view(this->offset(), all_shdrs_size, view);
a2fb1b05
ILT
250}
251
54dc6425
ILT
252// Output_segment_header methods.
253
61ba1cf9 254Output_segment_headers::Output_segment_headers(
61ba1cf9 255 const Layout::Segment_list& segment_list)
9025d29d 256 : segment_list_(segment_list)
61ba1cf9 257{
9025d29d 258 const int size = parameters->get_size();
61ba1cf9
ILT
259 int phdr_size;
260 if (size == 32)
261 phdr_size = elfcpp::Elf_sizes<32>::phdr_size;
262 else if (size == 64)
263 phdr_size = elfcpp::Elf_sizes<64>::phdr_size;
264 else
a3ad94ed 265 gold_unreachable();
61ba1cf9
ILT
266
267 this->set_data_size(segment_list.size() * phdr_size);
268}
269
54dc6425 270void
61ba1cf9 271Output_segment_headers::do_write(Output_file* of)
75f65a3e 272{
9025d29d 273 if (parameters->get_size() == 32)
61ba1cf9 274 {
9025d29d
ILT
275 if (parameters->is_big_endian())
276 {
277#ifdef HAVE_TARGET_32_BIG
278 this->do_sized_write<32, true>(of);
279#else
280 gold_unreachable();
281#endif
282 }
61ba1cf9 283 else
9025d29d
ILT
284 {
285#ifdef HAVE_TARGET_32_LITTLE
61ba1cf9 286 this->do_sized_write<32, false>(of);
9025d29d
ILT
287#else
288 gold_unreachable();
289#endif
290 }
61ba1cf9 291 }
9025d29d 292 else if (parameters->get_size() == 64)
61ba1cf9 293 {
9025d29d
ILT
294 if (parameters->is_big_endian())
295 {
296#ifdef HAVE_TARGET_64_BIG
297 this->do_sized_write<64, true>(of);
298#else
299 gold_unreachable();
300#endif
301 }
61ba1cf9 302 else
9025d29d
ILT
303 {
304#ifdef HAVE_TARGET_64_LITTLE
305 this->do_sized_write<64, false>(of);
306#else
307 gold_unreachable();
308#endif
309 }
61ba1cf9
ILT
310 }
311 else
a3ad94ed 312 gold_unreachable();
61ba1cf9
ILT
313}
314
315template<int size, bool big_endian>
316void
317Output_segment_headers::do_sized_write(Output_file* of)
318{
319 const int phdr_size = elfcpp::Elf_sizes<size>::phdr_size;
320 off_t all_phdrs_size = this->segment_list_.size() * phdr_size;
a445fddf 321 gold_assert(all_phdrs_size == this->data_size());
61ba1cf9
ILT
322 unsigned char* view = of->get_output_view(this->offset(),
323 all_phdrs_size);
324 unsigned char* v = view;
325 for (Layout::Segment_list::const_iterator p = this->segment_list_.begin();
326 p != this->segment_list_.end();
327 ++p)
328 {
329 elfcpp::Phdr_write<size, big_endian> ophdr(v);
330 (*p)->write_header(&ophdr);
331 v += phdr_size;
332 }
333
a445fddf
ILT
334 gold_assert(v - view == all_phdrs_size);
335
61ba1cf9 336 of->write_output_view(this->offset(), all_phdrs_size, view);
75f65a3e
ILT
337}
338
339// Output_file_header methods.
340
9025d29d 341Output_file_header::Output_file_header(const Target* target,
75f65a3e 342 const Symbol_table* symtab,
d391083d
ILT
343 const Output_segment_headers* osh,
344 const char* entry)
9025d29d 345 : target_(target),
75f65a3e 346 symtab_(symtab),
61ba1cf9 347 segment_header_(osh),
75f65a3e 348 section_header_(NULL),
d391083d
ILT
349 shstrtab_(NULL),
350 entry_(entry)
75f65a3e 351{
9025d29d 352 const int size = parameters->get_size();
61ba1cf9
ILT
353 int ehdr_size;
354 if (size == 32)
355 ehdr_size = elfcpp::Elf_sizes<32>::ehdr_size;
356 else if (size == 64)
357 ehdr_size = elfcpp::Elf_sizes<64>::ehdr_size;
358 else
a3ad94ed 359 gold_unreachable();
61ba1cf9
ILT
360
361 this->set_data_size(ehdr_size);
75f65a3e
ILT
362}
363
364// Set the section table information for a file header.
365
366void
367Output_file_header::set_section_info(const Output_section_headers* shdrs,
368 const Output_section* shstrtab)
369{
370 this->section_header_ = shdrs;
371 this->shstrtab_ = shstrtab;
372}
373
374// Write out the file header.
375
376void
61ba1cf9 377Output_file_header::do_write(Output_file* of)
54dc6425 378{
27bc2bce
ILT
379 gold_assert(this->offset() == 0);
380
9025d29d 381 if (parameters->get_size() == 32)
61ba1cf9 382 {
9025d29d
ILT
383 if (parameters->is_big_endian())
384 {
385#ifdef HAVE_TARGET_32_BIG
386 this->do_sized_write<32, true>(of);
387#else
388 gold_unreachable();
389#endif
390 }
61ba1cf9 391 else
9025d29d
ILT
392 {
393#ifdef HAVE_TARGET_32_LITTLE
394 this->do_sized_write<32, false>(of);
395#else
396 gold_unreachable();
397#endif
398 }
61ba1cf9 399 }
9025d29d 400 else if (parameters->get_size() == 64)
61ba1cf9 401 {
9025d29d
ILT
402 if (parameters->is_big_endian())
403 {
404#ifdef HAVE_TARGET_64_BIG
405 this->do_sized_write<64, true>(of);
406#else
407 gold_unreachable();
408#endif
409 }
61ba1cf9 410 else
9025d29d
ILT
411 {
412#ifdef HAVE_TARGET_64_LITTLE
413 this->do_sized_write<64, false>(of);
414#else
415 gold_unreachable();
416#endif
417 }
61ba1cf9
ILT
418 }
419 else
a3ad94ed 420 gold_unreachable();
61ba1cf9
ILT
421}
422
423// Write out the file header with appropriate size and endianess.
424
425template<int size, bool big_endian>
426void
427Output_file_header::do_sized_write(Output_file* of)
428{
a3ad94ed 429 gold_assert(this->offset() == 0);
61ba1cf9
ILT
430
431 int ehdr_size = elfcpp::Elf_sizes<size>::ehdr_size;
432 unsigned char* view = of->get_output_view(0, ehdr_size);
433 elfcpp::Ehdr_write<size, big_endian> oehdr(view);
434
435 unsigned char e_ident[elfcpp::EI_NIDENT];
436 memset(e_ident, 0, elfcpp::EI_NIDENT);
437 e_ident[elfcpp::EI_MAG0] = elfcpp::ELFMAG0;
438 e_ident[elfcpp::EI_MAG1] = elfcpp::ELFMAG1;
439 e_ident[elfcpp::EI_MAG2] = elfcpp::ELFMAG2;
440 e_ident[elfcpp::EI_MAG3] = elfcpp::ELFMAG3;
441 if (size == 32)
442 e_ident[elfcpp::EI_CLASS] = elfcpp::ELFCLASS32;
443 else if (size == 64)
444 e_ident[elfcpp::EI_CLASS] = elfcpp::ELFCLASS64;
445 else
a3ad94ed 446 gold_unreachable();
61ba1cf9
ILT
447 e_ident[elfcpp::EI_DATA] = (big_endian
448 ? elfcpp::ELFDATA2MSB
449 : elfcpp::ELFDATA2LSB);
450 e_ident[elfcpp::EI_VERSION] = elfcpp::EV_CURRENT;
451 // FIXME: Some targets may need to set EI_OSABI and EI_ABIVERSION.
452 oehdr.put_e_ident(e_ident);
453
454 elfcpp::ET e_type;
7e1edb90 455 if (parameters->output_is_object())
61ba1cf9 456 e_type = elfcpp::ET_REL;
436ca963
ILT
457 else if (parameters->output_is_shared())
458 e_type = elfcpp::ET_DYN;
61ba1cf9
ILT
459 else
460 e_type = elfcpp::ET_EXEC;
461 oehdr.put_e_type(e_type);
462
463 oehdr.put_e_machine(this->target_->machine_code());
464 oehdr.put_e_version(elfcpp::EV_CURRENT);
465
d391083d 466 oehdr.put_e_entry(this->entry<size>());
61ba1cf9 467
6a74a719
ILT
468 if (this->segment_header_ == NULL)
469 oehdr.put_e_phoff(0);
470 else
471 oehdr.put_e_phoff(this->segment_header_->offset());
472
61ba1cf9
ILT
473 oehdr.put_e_shoff(this->section_header_->offset());
474
475 // FIXME: The target needs to set the flags.
476 oehdr.put_e_flags(0);
477
478 oehdr.put_e_ehsize(elfcpp::Elf_sizes<size>::ehdr_size);
6a74a719
ILT
479
480 if (this->segment_header_ == NULL)
481 {
482 oehdr.put_e_phentsize(0);
483 oehdr.put_e_phnum(0);
484 }
485 else
486 {
487 oehdr.put_e_phentsize(elfcpp::Elf_sizes<size>::phdr_size);
488 oehdr.put_e_phnum(this->segment_header_->data_size()
489 / elfcpp::Elf_sizes<size>::phdr_size);
490 }
491
61ba1cf9
ILT
492 oehdr.put_e_shentsize(elfcpp::Elf_sizes<size>::shdr_size);
493 oehdr.put_e_shnum(this->section_header_->data_size()
494 / elfcpp::Elf_sizes<size>::shdr_size);
ead1e424 495 oehdr.put_e_shstrndx(this->shstrtab_->out_shndx());
61ba1cf9
ILT
496
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
508 && parameters->output_is_executable());
509
510 // FIXME: Need to support target specific entry symbol.
511 const char* entry = this->entry_;
512 if (entry == NULL)
513 entry = "_start";
514
515 Symbol* sym = this->symtab_->lookup(entry);
516
517 typename Sized_symbol<size>::Value_type v;
518 if (sym != NULL)
519 {
520 Sized_symbol<size>* ssym;
521 ssym = this->symtab_->get_sized_symbol<size>(sym);
522 if (!ssym->is_defined() && should_issue_warning)
523 gold_warning("entry symbol '%s' exists but is not defined", entry);
524 v = ssym->value();
525 }
526 else
527 {
528 // We couldn't find the entry symbol. See if we can parse it as
529 // a number. This supports, e.g., -e 0x1000.
530 char* endptr;
531 v = strtoull(entry, &endptr, 0);
532 if (*endptr != '\0')
533 {
534 if (should_issue_warning)
535 gold_warning("cannot find entry symbol '%s'", entry);
536 v = 0;
537 }
538 }
539
540 return v;
541}
542
dbe717ef
ILT
543// Output_data_const methods.
544
545void
a3ad94ed 546Output_data_const::do_write(Output_file* of)
dbe717ef 547{
a3ad94ed
ILT
548 of->write(this->offset(), this->data_.data(), this->data_.size());
549}
550
551// Output_data_const_buffer methods.
552
553void
554Output_data_const_buffer::do_write(Output_file* of)
555{
556 of->write(this->offset(), this->p_, this->data_size());
dbe717ef
ILT
557}
558
559// Output_section_data methods.
560
16649710
ILT
561// Record the output section, and set the entry size and such.
562
563void
564Output_section_data::set_output_section(Output_section* os)
565{
566 gold_assert(this->output_section_ == NULL);
567 this->output_section_ = os;
568 this->do_adjust_output_section(os);
569}
570
571// Return the section index of the output section.
572
dbe717ef
ILT
573unsigned int
574Output_section_data::do_out_shndx() const
575{
a3ad94ed 576 gold_assert(this->output_section_ != NULL);
dbe717ef
ILT
577 return this->output_section_->out_shndx();
578}
579
a3ad94ed
ILT
580// Output_data_strtab methods.
581
27bc2bce 582// Set the final data size.
a3ad94ed
ILT
583
584void
27bc2bce 585Output_data_strtab::set_final_data_size()
a3ad94ed
ILT
586{
587 this->strtab_->set_string_offsets();
588 this->set_data_size(this->strtab_->get_strtab_size());
589}
590
591// Write out a string table.
592
593void
594Output_data_strtab::do_write(Output_file* of)
595{
596 this->strtab_->write(of, this->offset());
597}
598
c06b7b0b
ILT
599// Output_reloc methods.
600
7bf1f802
ILT
601// A reloc against a global symbol.
602
603template<bool dynamic, int size, bool big_endian>
604Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
605 Symbol* gsym,
606 unsigned int type,
607 Output_data* od,
e8c846c3
ILT
608 Address address,
609 bool is_relative)
7bf1f802 610 : address_(address), local_sym_index_(GSYM_CODE), type_(type),
e8c846c3 611 is_relative_(is_relative), shndx_(INVALID_CODE)
7bf1f802
ILT
612{
613 this->u1_.gsym = gsym;
614 this->u2_.od = od;
e8c846c3 615 if (dynamic && !is_relative)
7bf1f802
ILT
616 gsym->set_needs_dynsym_entry();
617}
618
619template<bool dynamic, int size, bool big_endian>
620Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
621 Symbol* gsym,
622 unsigned int type,
623 Relobj* relobj,
624 unsigned int shndx,
e8c846c3
ILT
625 Address address,
626 bool is_relative)
7bf1f802 627 : address_(address), local_sym_index_(GSYM_CODE), type_(type),
e8c846c3 628 is_relative_(is_relative), shndx_(shndx)
7bf1f802
ILT
629{
630 gold_assert(shndx != INVALID_CODE);
631 this->u1_.gsym = gsym;
632 this->u2_.relobj = relobj;
e8c846c3 633 if (dynamic && !is_relative)
7bf1f802
ILT
634 gsym->set_needs_dynsym_entry();
635}
636
637// A reloc against a local symbol.
638
639template<bool dynamic, int size, bool big_endian>
640Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
641 Sized_relobj<size, big_endian>* relobj,
642 unsigned int local_sym_index,
643 unsigned int type,
644 Output_data* od,
e8c846c3
ILT
645 Address address,
646 bool is_relative)
7bf1f802 647 : address_(address), local_sym_index_(local_sym_index), type_(type),
e8c846c3 648 is_relative_(is_relative), shndx_(INVALID_CODE)
7bf1f802
ILT
649{
650 gold_assert(local_sym_index != GSYM_CODE
651 && local_sym_index != INVALID_CODE);
652 this->u1_.relobj = relobj;
653 this->u2_.od = od;
e8c846c3 654 if (dynamic && !is_relative)
7bf1f802
ILT
655 relobj->set_needs_output_dynsym_entry(local_sym_index);
656}
657
658template<bool dynamic, int size, bool big_endian>
659Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
660 Sized_relobj<size, big_endian>* relobj,
661 unsigned int local_sym_index,
662 unsigned int type,
663 unsigned int shndx,
e8c846c3
ILT
664 Address address,
665 bool is_relative)
7bf1f802 666 : address_(address), local_sym_index_(local_sym_index), type_(type),
e8c846c3 667 is_relative_(is_relative), shndx_(shndx)
7bf1f802
ILT
668{
669 gold_assert(local_sym_index != GSYM_CODE
670 && local_sym_index != INVALID_CODE);
671 gold_assert(shndx != INVALID_CODE);
672 this->u1_.relobj = relobj;
673 this->u2_.relobj = relobj;
e8c846c3 674 if (dynamic && !is_relative)
7bf1f802
ILT
675 relobj->set_needs_output_dynsym_entry(local_sym_index);
676}
677
678// A reloc against the STT_SECTION symbol of an output section.
679
680template<bool dynamic, int size, bool big_endian>
681Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
682 Output_section* os,
683 unsigned int type,
684 Output_data* od,
685 Address address)
686 : address_(address), local_sym_index_(SECTION_CODE), type_(type),
e8c846c3 687 is_relative_(false), shndx_(INVALID_CODE)
7bf1f802
ILT
688{
689 this->u1_.os = os;
690 this->u2_.od = od;
691 if (dynamic)
692 os->set_needs_dynsym_index();
693}
694
695template<bool dynamic, int size, bool big_endian>
696Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::Output_reloc(
697 Output_section* os,
698 unsigned int type,
699 Relobj* relobj,
700 unsigned int shndx,
701 Address address)
702 : address_(address), local_sym_index_(SECTION_CODE), type_(type),
e8c846c3 703 is_relative_(false), shndx_(shndx)
7bf1f802
ILT
704{
705 gold_assert(shndx != INVALID_CODE);
706 this->u1_.os = os;
707 this->u2_.relobj = relobj;
708 if (dynamic)
709 os->set_needs_dynsym_index();
710}
711
c06b7b0b
ILT
712// Get the symbol index of a relocation.
713
714template<bool dynamic, int size, bool big_endian>
715unsigned int
716Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::get_symbol_index()
717 const
718{
719 unsigned int index;
720 switch (this->local_sym_index_)
721 {
722 case INVALID_CODE:
a3ad94ed 723 gold_unreachable();
c06b7b0b
ILT
724
725 case GSYM_CODE:
5a6f7e2d 726 if (this->u1_.gsym == NULL)
c06b7b0b
ILT
727 index = 0;
728 else if (dynamic)
5a6f7e2d 729 index = this->u1_.gsym->dynsym_index();
c06b7b0b 730 else
5a6f7e2d 731 index = this->u1_.gsym->symtab_index();
c06b7b0b
ILT
732 break;
733
734 case SECTION_CODE:
735 if (dynamic)
5a6f7e2d 736 index = this->u1_.os->dynsym_index();
c06b7b0b 737 else
5a6f7e2d 738 index = this->u1_.os->symtab_index();
c06b7b0b
ILT
739 break;
740
436ca963
ILT
741 case 0:
742 // Relocations without symbols use a symbol index of 0.
743 index = 0;
744 break;
745
c06b7b0b
ILT
746 default:
747 if (dynamic)
7bf1f802 748 index = this->u1_.relobj->dynsym_index(this->local_sym_index_);
c06b7b0b 749 else
5a6f7e2d 750 index = this->u1_.relobj->symtab_index(this->local_sym_index_);
c06b7b0b
ILT
751 break;
752 }
a3ad94ed 753 gold_assert(index != -1U);
c06b7b0b
ILT
754 return index;
755}
756
757// Write out the offset and info fields of a Rel or Rela relocation
758// entry.
759
760template<bool dynamic, int size, bool big_endian>
761template<typename Write_rel>
762void
763Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::write_rel(
764 Write_rel* wr) const
765{
a3ad94ed 766 Address address = this->address_;
5a6f7e2d
ILT
767 if (this->shndx_ != INVALID_CODE)
768 {
8383303e 769 section_offset_type off;
5a6f7e2d
ILT
770 Output_section* os = this->u2_.relobj->output_section(this->shndx_,
771 &off);
772 gold_assert(os != NULL);
730cdc88
ILT
773 if (off != -1)
774 address += os->address() + off;
775 else
776 {
777 address = os->output_address(this->u2_.relobj, this->shndx_,
778 address);
779 gold_assert(address != -1U);
780 }
5a6f7e2d
ILT
781 }
782 else if (this->u2_.od != NULL)
783 address += this->u2_.od->address();
a3ad94ed 784 wr->put_r_offset(address);
e8c846c3
ILT
785 unsigned int sym_index = this->is_relative_ ? 0 : this->get_symbol_index();
786 wr->put_r_info(elfcpp::elf_r_info<size>(sym_index, this->type_));
c06b7b0b
ILT
787}
788
789// Write out a Rel relocation.
790
791template<bool dynamic, int size, bool big_endian>
792void
793Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::write(
794 unsigned char* pov) const
795{
796 elfcpp::Rel_write<size, big_endian> orel(pov);
797 this->write_rel(&orel);
798}
799
e8c846c3
ILT
800// Get the value of the symbol referred to by a Rel relocation.
801
802template<bool dynamic, int size, bool big_endian>
803typename elfcpp::Elf_types<size>::Elf_Addr
804Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>::symbol_value() const
805{
806 if (this->local_sym_index_ == GSYM_CODE)
807 {
808 const Sized_symbol<size>* sym;
809 sym = static_cast<const Sized_symbol<size>*>(this->u1_.gsym);
810 return sym->value();
811 }
812 gold_assert(this->local_sym_index_ != SECTION_CODE
813 && this->local_sym_index_ != INVALID_CODE);
814 const Sized_relobj<size, big_endian>* relobj = this->u1_.relobj;
815 return relobj->local_symbol_value(this->local_sym_index_);
816}
817
c06b7b0b
ILT
818// Write out a Rela relocation.
819
820template<bool dynamic, int size, bool big_endian>
821void
822Output_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>::write(
823 unsigned char* pov) const
824{
825 elfcpp::Rela_write<size, big_endian> orel(pov);
826 this->rel_.write_rel(&orel);
e8c846c3
ILT
827 Addend addend = this->addend_;
828 if (rel_.is_relative())
829 addend += rel_.symbol_value();
830 orel.put_r_addend(addend);
c06b7b0b
ILT
831}
832
833// Output_data_reloc_base methods.
834
16649710
ILT
835// Adjust the output section.
836
837template<int sh_type, bool dynamic, int size, bool big_endian>
838void
839Output_data_reloc_base<sh_type, dynamic, size, big_endian>
840 ::do_adjust_output_section(Output_section* os)
841{
842 if (sh_type == elfcpp::SHT_REL)
843 os->set_entsize(elfcpp::Elf_sizes<size>::rel_size);
844 else if (sh_type == elfcpp::SHT_RELA)
845 os->set_entsize(elfcpp::Elf_sizes<size>::rela_size);
846 else
847 gold_unreachable();
848 if (dynamic)
849 os->set_should_link_to_dynsym();
850 else
851 os->set_should_link_to_symtab();
852}
853
c06b7b0b
ILT
854// Write out relocation data.
855
856template<int sh_type, bool dynamic, int size, bool big_endian>
857void
858Output_data_reloc_base<sh_type, dynamic, size, big_endian>::do_write(
859 Output_file* of)
860{
861 const off_t off = this->offset();
862 const off_t oview_size = this->data_size();
863 unsigned char* const oview = of->get_output_view(off, oview_size);
864
865 unsigned char* pov = oview;
866 for (typename Relocs::const_iterator p = this->relocs_.begin();
867 p != this->relocs_.end();
868 ++p)
869 {
870 p->write(pov);
871 pov += reloc_size;
872 }
873
a3ad94ed 874 gold_assert(pov - oview == oview_size);
c06b7b0b
ILT
875
876 of->write_output_view(off, oview_size, oview);
877
878 // We no longer need the relocation entries.
879 this->relocs_.clear();
880}
881
6a74a719
ILT
882// Class Output_relocatable_relocs.
883
884template<int sh_type, int size, bool big_endian>
885void
886Output_relocatable_relocs<sh_type, size, big_endian>::set_final_data_size()
887{
888 this->set_data_size(this->rr_->output_reloc_count()
889 * Reloc_types<sh_type, size, big_endian>::reloc_size);
890}
891
892// class Output_data_group.
893
894template<int size, bool big_endian>
895Output_data_group<size, big_endian>::Output_data_group(
896 Sized_relobj<size, big_endian>* relobj,
897 section_size_type entry_count,
898 const elfcpp::Elf_Word* contents)
899 : Output_section_data(entry_count * 4, 4),
900 relobj_(relobj)
901{
902 this->flags_ = elfcpp::Swap<32, big_endian>::readval(contents);
903 for (section_size_type i = 1; i < entry_count; ++i)
904 {
905 unsigned int shndx = elfcpp::Swap<32, big_endian>::readval(contents + i);
906 this->input_sections_.push_back(shndx);
907 }
908}
909
910// Write out the section group, which means translating the section
911// indexes to apply to the output file.
912
913template<int size, bool big_endian>
914void
915Output_data_group<size, big_endian>::do_write(Output_file* of)
916{
917 const off_t off = this->offset();
918 const section_size_type oview_size =
919 convert_to_section_size_type(this->data_size());
920 unsigned char* const oview = of->get_output_view(off, oview_size);
921
922 elfcpp::Elf_Word* contents = reinterpret_cast<elfcpp::Elf_Word*>(oview);
923 elfcpp::Swap<32, big_endian>::writeval(contents, this->flags_);
924 ++contents;
925
926 for (std::vector<unsigned int>::const_iterator p =
927 this->input_sections_.begin();
928 p != this->input_sections_.end();
929 ++p, ++contents)
930 {
931 section_offset_type dummy;
932 Output_section* os = this->relobj_->output_section(*p, &dummy);
933
934 unsigned int output_shndx;
935 if (os != NULL)
936 output_shndx = os->out_shndx();
937 else
938 {
939 this->relobj_->error(_("section group retained but "
940 "group element discarded"));
941 output_shndx = 0;
942 }
943
944 elfcpp::Swap<32, big_endian>::writeval(contents, output_shndx);
945 }
946
947 size_t wrote = reinterpret_cast<unsigned char*>(contents) - oview;
948 gold_assert(wrote == oview_size);
949
950 of->write_output_view(off, oview_size, oview);
951
952 // We no longer need this information.
953 this->input_sections_.clear();
954}
955
dbe717ef 956// Output_data_got::Got_entry methods.
ead1e424
ILT
957
958// Write out the entry.
959
960template<int size, bool big_endian>
961void
7e1edb90 962Output_data_got<size, big_endian>::Got_entry::write(unsigned char* pov) const
ead1e424
ILT
963{
964 Valtype val = 0;
965
966 switch (this->local_sym_index_)
967 {
968 case GSYM_CODE:
969 {
e8c846c3
ILT
970 // If the symbol is resolved locally, we need to write out the
971 // link-time value, which will be relocated dynamically by a
972 // RELATIVE relocation.
ead1e424 973 Symbol* gsym = this->u_.gsym;
e8c846c3
ILT
974 Sized_symbol<size>* sgsym;
975 // This cast is a bit ugly. We don't want to put a
976 // virtual method in Symbol, because we want Symbol to be
977 // as small as possible.
978 sgsym = static_cast<Sized_symbol<size>*>(gsym);
979 val = sgsym->value();
ead1e424
ILT
980 }
981 break;
982
983 case CONSTANT_CODE:
984 val = this->u_.constant;
985 break;
986
987 default:
e727fa71
ILT
988 val = this->u_.object->local_symbol_value(this->local_sym_index_);
989 break;
ead1e424
ILT
990 }
991
a3ad94ed 992 elfcpp::Swap<size, big_endian>::writeval(pov, val);
ead1e424
ILT
993}
994
dbe717ef 995// Output_data_got methods.
ead1e424 996
dbe717ef
ILT
997// Add an entry for a global symbol to the GOT. This returns true if
998// this is a new GOT entry, false if the symbol already had a GOT
999// entry.
1000
1001template<int size, bool big_endian>
1002bool
1003Output_data_got<size, big_endian>::add_global(Symbol* gsym)
ead1e424 1004{
dbe717ef
ILT
1005 if (gsym->has_got_offset())
1006 return false;
ead1e424 1007
dbe717ef
ILT
1008 this->entries_.push_back(Got_entry(gsym));
1009 this->set_got_size();
1010 gsym->set_got_offset(this->last_got_offset());
1011 return true;
1012}
ead1e424 1013
7bf1f802
ILT
1014// Add an entry for a global symbol to the GOT, and add a dynamic
1015// relocation of type R_TYPE for the GOT entry.
1016template<int size, bool big_endian>
1017void
1018Output_data_got<size, big_endian>::add_global_with_rel(
1019 Symbol* gsym,
1020 Rel_dyn* rel_dyn,
1021 unsigned int r_type)
1022{
1023 if (gsym->has_got_offset())
1024 return;
1025
1026 this->entries_.push_back(Got_entry());
1027 this->set_got_size();
1028 unsigned int got_offset = this->last_got_offset();
1029 gsym->set_got_offset(got_offset);
1030 rel_dyn->add_global(gsym, r_type, this, got_offset);
1031}
1032
1033template<int size, bool big_endian>
1034void
1035Output_data_got<size, big_endian>::add_global_with_rela(
1036 Symbol* gsym,
1037 Rela_dyn* rela_dyn,
1038 unsigned int r_type)
1039{
1040 if (gsym->has_got_offset())
1041 return;
1042
1043 this->entries_.push_back(Got_entry());
1044 this->set_got_size();
1045 unsigned int got_offset = this->last_got_offset();
1046 gsym->set_got_offset(got_offset);
1047 rela_dyn->add_global(gsym, r_type, this, got_offset, 0);
1048}
1049
e727fa71
ILT
1050// Add an entry for a local symbol to the GOT. This returns true if
1051// this is a new GOT entry, false if the symbol already has a GOT
1052// entry.
1053
1054template<int size, bool big_endian>
1055bool
1056Output_data_got<size, big_endian>::add_local(
1057 Sized_relobj<size, big_endian>* object,
1058 unsigned int symndx)
1059{
1060 if (object->local_has_got_offset(symndx))
1061 return false;
07f397ab 1062
e727fa71
ILT
1063 this->entries_.push_back(Got_entry(object, symndx));
1064 this->set_got_size();
1065 object->set_local_got_offset(symndx, this->last_got_offset());
1066 return true;
1067}
1068
7bf1f802
ILT
1069// Add an entry for a local symbol to the GOT, and add a dynamic
1070// relocation of type R_TYPE for the GOT entry.
1071template<int size, bool big_endian>
1072void
1073Output_data_got<size, big_endian>::add_local_with_rel(
1074 Sized_relobj<size, big_endian>* object,
1075 unsigned int symndx,
1076 Rel_dyn* rel_dyn,
1077 unsigned int r_type)
1078{
1079 if (object->local_has_got_offset(symndx))
1080 return;
1081
1082 this->entries_.push_back(Got_entry());
1083 this->set_got_size();
1084 unsigned int got_offset = this->last_got_offset();
1085 object->set_local_got_offset(symndx, got_offset);
1086 rel_dyn->add_local(object, symndx, r_type, this, got_offset);
1087}
1088
1089template<int size, bool big_endian>
1090void
1091Output_data_got<size, big_endian>::add_local_with_rela(
1092 Sized_relobj<size, big_endian>* object,
1093 unsigned int symndx,
1094 Rela_dyn* rela_dyn,
1095 unsigned int r_type)
1096{
1097 if (object->local_has_got_offset(symndx))
1098 return;
1099
1100 this->entries_.push_back(Got_entry());
1101 this->set_got_size();
1102 unsigned int got_offset = this->last_got_offset();
1103 object->set_local_got_offset(symndx, got_offset);
1104 rela_dyn->add_local(object, symndx, r_type, this, got_offset, 0);
1105}
1106
07f397ab
ILT
1107// Add an entry (or a pair of entries) for a global TLS symbol to the GOT.
1108// In a pair of entries, the first value in the pair will be used for the
1109// module index, and the second value will be used for the dtv-relative
1110// offset. This returns true if this is a new GOT entry, false if the symbol
1111// already has a GOT entry.
1112
1113template<int size, bool big_endian>
1114bool
7bf1f802 1115Output_data_got<size, big_endian>::add_global_tls(Symbol* gsym, bool need_pair)
07f397ab
ILT
1116{
1117 if (gsym->has_tls_got_offset(need_pair))
1118 return false;
1119
1120 this->entries_.push_back(Got_entry(gsym));
1121 gsym->set_tls_got_offset(this->last_got_offset(), need_pair);
1122 if (need_pair)
1123 this->entries_.push_back(Got_entry(gsym));
1124 this->set_got_size();
1125 return true;
1126}
1127
7bf1f802
ILT
1128// Add an entry for a global TLS symbol to the GOT, and add a dynamic
1129// relocation of type R_TYPE.
1130template<int size, bool big_endian>
1131void
1132Output_data_got<size, big_endian>::add_global_tls_with_rel(
1133 Symbol* gsym,
1134 Rel_dyn* rel_dyn,
1135 unsigned int r_type)
1136{
1137 if (gsym->has_tls_got_offset(false))
1138 return;
1139
1140 this->entries_.push_back(Got_entry());
1141 this->set_got_size();
1142 unsigned int got_offset = this->last_got_offset();
1143 gsym->set_tls_got_offset(got_offset, false);
1144 rel_dyn->add_global(gsym, r_type, this, got_offset);
1145}
1146
1147template<int size, bool big_endian>
1148void
1149Output_data_got<size, big_endian>::add_global_tls_with_rela(
1150 Symbol* gsym,
1151 Rela_dyn* rela_dyn,
1152 unsigned int r_type)
1153{
1154 if (gsym->has_tls_got_offset(false))
1155 return;
1156
1157 this->entries_.push_back(Got_entry());
1158 this->set_got_size();
1159 unsigned int got_offset = this->last_got_offset();
1160 gsym->set_tls_got_offset(got_offset, false);
1161 rela_dyn->add_global(gsym, r_type, this, got_offset, 0);
1162}
1163
1164// Add a pair of entries for a global TLS symbol to the GOT, and add
1165// dynamic relocations of type MOD_R_TYPE and DTV_R_TYPE, respectively.
1166template<int size, bool big_endian>
1167void
1168Output_data_got<size, big_endian>::add_global_tls_with_rel(
1169 Symbol* gsym,
1170 Rel_dyn* rel_dyn,
1171 unsigned int mod_r_type,
1172 unsigned int dtv_r_type)
1173{
1174 if (gsym->has_tls_got_offset(true))
1175 return;
1176
1177 this->entries_.push_back(Got_entry());
1178 unsigned int got_offset = this->last_got_offset();
1179 gsym->set_tls_got_offset(got_offset, true);
1180 rel_dyn->add_global(gsym, mod_r_type, this, got_offset);
1181
1182 this->entries_.push_back(Got_entry());
1183 this->set_got_size();
1184 got_offset = this->last_got_offset();
1185 rel_dyn->add_global(gsym, dtv_r_type, this, got_offset);
1186}
1187
1188template<int size, bool big_endian>
1189void
1190Output_data_got<size, big_endian>::add_global_tls_with_rela(
1191 Symbol* gsym,
1192 Rela_dyn* rela_dyn,
1193 unsigned int mod_r_type,
1194 unsigned int dtv_r_type)
1195{
1196 if (gsym->has_tls_got_offset(true))
1197 return;
1198
1199 this->entries_.push_back(Got_entry());
1200 unsigned int got_offset = this->last_got_offset();
1201 gsym->set_tls_got_offset(got_offset, true);
1202 rela_dyn->add_global(gsym, mod_r_type, this, got_offset, 0);
1203
1204 this->entries_.push_back(Got_entry());
1205 this->set_got_size();
1206 got_offset = this->last_got_offset();
1207 rela_dyn->add_global(gsym, dtv_r_type, this, got_offset, 0);
1208}
1209
07f397ab
ILT
1210// Add an entry (or a pair of entries) for a local TLS symbol to the GOT.
1211// In a pair of entries, the first value in the pair will be used for the
1212// module index, and the second value will be used for the dtv-relative
1213// offset. This returns true if this is a new GOT entry, false if the symbol
1214// already has a GOT entry.
1215
1216template<int size, bool big_endian>
1217bool
1218Output_data_got<size, big_endian>::add_local_tls(
1219 Sized_relobj<size, big_endian>* object,
1220 unsigned int symndx,
1221 bool need_pair)
1222{
1223 if (object->local_has_tls_got_offset(symndx, need_pair))
1224 return false;
1225
1226 this->entries_.push_back(Got_entry(object, symndx));
1227 object->set_local_tls_got_offset(symndx, this->last_got_offset(), need_pair);
1228 if (need_pair)
1229 this->entries_.push_back(Got_entry(object, symndx));
1230 this->set_got_size();
1231 return true;
1232}
1233
7bf1f802
ILT
1234// Add an entry (or pair of entries) for a local TLS symbol to the GOT,
1235// and add a dynamic relocation of type R_TYPE for the first GOT entry.
1236// Because this is a local symbol, the first GOT entry can be relocated
1237// relative to a section symbol, and the second GOT entry will have an
1238// dtv-relative value that can be computed at link time.
1239template<int size, bool big_endian>
1240void
1241Output_data_got<size, big_endian>::add_local_tls_with_rel(
1242 Sized_relobj<size, big_endian>* object,
1243 unsigned int symndx,
1244 unsigned int shndx,
1245 bool need_pair,
1246 Rel_dyn* rel_dyn,
1247 unsigned int r_type)
1248{
1249 if (object->local_has_tls_got_offset(symndx, need_pair))
1250 return;
1251
1252 this->entries_.push_back(Got_entry());
1253 unsigned int got_offset = this->last_got_offset();
1254 object->set_local_tls_got_offset(symndx, got_offset, need_pair);
8383303e 1255 section_offset_type off;
7bf1f802
ILT
1256 Output_section* os = object->output_section(shndx, &off);
1257 rel_dyn->add_output_section(os, r_type, this, got_offset);
1258
1259 // The second entry of the pair will be statically initialized
1260 // with the TLS offset of the symbol.
1261 if (need_pair)
1262 this->entries_.push_back(Got_entry(object, symndx));
1263
1264 this->set_got_size();
1265}
1266
1267template<int size, bool big_endian>
1268void
1269Output_data_got<size, big_endian>::add_local_tls_with_rela(
1270 Sized_relobj<size, big_endian>* object,
1271 unsigned int symndx,
1272 unsigned int shndx,
1273 bool need_pair,
1274 Rela_dyn* rela_dyn,
1275 unsigned int r_type)
1276{
1277 if (object->local_has_tls_got_offset(symndx, need_pair))
1278 return;
1279
1280 this->entries_.push_back(Got_entry());
1281 unsigned int got_offset = this->last_got_offset();
1282 object->set_local_tls_got_offset(symndx, got_offset, need_pair);
8383303e 1283 section_offset_type off;
7bf1f802
ILT
1284 Output_section* os = object->output_section(shndx, &off);
1285 rela_dyn->add_output_section(os, r_type, this, got_offset, 0);
1286
1287 // The second entry of the pair will be statically initialized
1288 // with the TLS offset of the symbol.
1289 if (need_pair)
1290 this->entries_.push_back(Got_entry(object, symndx));
1291
1292 this->set_got_size();
1293}
1294
ead1e424
ILT
1295// Write out the GOT.
1296
1297template<int size, bool big_endian>
1298void
dbe717ef 1299Output_data_got<size, big_endian>::do_write(Output_file* of)
ead1e424
ILT
1300{
1301 const int add = size / 8;
1302
1303 const off_t off = this->offset();
c06b7b0b 1304 const off_t oview_size = this->data_size();
ead1e424
ILT
1305 unsigned char* const oview = of->get_output_view(off, oview_size);
1306
1307 unsigned char* pov = oview;
1308 for (typename Got_entries::const_iterator p = this->entries_.begin();
1309 p != this->entries_.end();
1310 ++p)
1311 {
7e1edb90 1312 p->write(pov);
ead1e424
ILT
1313 pov += add;
1314 }
1315
a3ad94ed 1316 gold_assert(pov - oview == oview_size);
c06b7b0b 1317
ead1e424
ILT
1318 of->write_output_view(off, oview_size, oview);
1319
1320 // We no longer need the GOT entries.
1321 this->entries_.clear();
1322}
1323
a3ad94ed
ILT
1324// Output_data_dynamic::Dynamic_entry methods.
1325
1326// Write out the entry.
1327
1328template<int size, bool big_endian>
1329void
1330Output_data_dynamic::Dynamic_entry::write(
1331 unsigned char* pov,
1ddbd1e6
ILT
1332 const Stringpool* pool
1333 ACCEPT_SIZE_ENDIAN) const
a3ad94ed
ILT
1334{
1335 typename elfcpp::Elf_types<size>::Elf_WXword val;
1336 switch (this->classification_)
1337 {
1338 case DYNAMIC_NUMBER:
1339 val = this->u_.val;
1340 break;
1341
1342 case DYNAMIC_SECTION_ADDRESS:
16649710 1343 val = this->u_.od->address();
a3ad94ed
ILT
1344 break;
1345
1346 case DYNAMIC_SECTION_SIZE:
16649710 1347 val = this->u_.od->data_size();
a3ad94ed
ILT
1348 break;
1349
1350 case DYNAMIC_SYMBOL:
1351 {
16649710
ILT
1352 const Sized_symbol<size>* s =
1353 static_cast<const Sized_symbol<size>*>(this->u_.sym);
a3ad94ed
ILT
1354 val = s->value();
1355 }
1356 break;
1357
1358 case DYNAMIC_STRING:
1359 val = pool->get_offset(this->u_.str);
1360 break;
1361
1362 default:
1363 gold_unreachable();
1364 }
1365
1366 elfcpp::Dyn_write<size, big_endian> dw(pov);
1367 dw.put_d_tag(this->tag_);
1368 dw.put_d_val(val);
1369}
1370
1371// Output_data_dynamic methods.
1372
16649710
ILT
1373// Adjust the output section to set the entry size.
1374
1375void
1376Output_data_dynamic::do_adjust_output_section(Output_section* os)
1377{
9025d29d 1378 if (parameters->get_size() == 32)
16649710 1379 os->set_entsize(elfcpp::Elf_sizes<32>::dyn_size);
9025d29d 1380 else if (parameters->get_size() == 64)
16649710
ILT
1381 os->set_entsize(elfcpp::Elf_sizes<64>::dyn_size);
1382 else
1383 gold_unreachable();
1384}
1385
a3ad94ed
ILT
1386// Set the final data size.
1387
1388void
27bc2bce 1389Output_data_dynamic::set_final_data_size()
a3ad94ed
ILT
1390{
1391 // Add the terminating entry.
1392 this->add_constant(elfcpp::DT_NULL, 0);
1393
1394 int dyn_size;
9025d29d 1395 if (parameters->get_size() == 32)
a3ad94ed 1396 dyn_size = elfcpp::Elf_sizes<32>::dyn_size;
9025d29d 1397 else if (parameters->get_size() == 64)
a3ad94ed
ILT
1398 dyn_size = elfcpp::Elf_sizes<64>::dyn_size;
1399 else
1400 gold_unreachable();
1401 this->set_data_size(this->entries_.size() * dyn_size);
1402}
1403
1404// Write out the dynamic entries.
1405
1406void
1407Output_data_dynamic::do_write(Output_file* of)
1408{
9025d29d 1409 if (parameters->get_size() == 32)
a3ad94ed 1410 {
9025d29d
ILT
1411 if (parameters->is_big_endian())
1412 {
1413#ifdef HAVE_TARGET_32_BIG
1414 this->sized_write<32, true>(of);
1415#else
1416 gold_unreachable();
1417#endif
1418 }
a3ad94ed 1419 else
9025d29d
ILT
1420 {
1421#ifdef HAVE_TARGET_32_LITTLE
1422 this->sized_write<32, false>(of);
1423#else
1424 gold_unreachable();
1425#endif
1426 }
a3ad94ed 1427 }
9025d29d 1428 else if (parameters->get_size() == 64)
a3ad94ed 1429 {
9025d29d
ILT
1430 if (parameters->is_big_endian())
1431 {
1432#ifdef HAVE_TARGET_64_BIG
1433 this->sized_write<64, true>(of);
1434#else
1435 gold_unreachable();
1436#endif
1437 }
a3ad94ed 1438 else
9025d29d
ILT
1439 {
1440#ifdef HAVE_TARGET_64_LITTLE
1441 this->sized_write<64, false>(of);
1442#else
1443 gold_unreachable();
1444#endif
1445 }
a3ad94ed
ILT
1446 }
1447 else
1448 gold_unreachable();
1449}
1450
1451template<int size, bool big_endian>
1452void
1453Output_data_dynamic::sized_write(Output_file* of)
1454{
1455 const int dyn_size = elfcpp::Elf_sizes<size>::dyn_size;
1456
1457 const off_t offset = this->offset();
1458 const off_t oview_size = this->data_size();
1459 unsigned char* const oview = of->get_output_view(offset, oview_size);
1460
1461 unsigned char* pov = oview;
1462 for (typename Dynamic_entries::const_iterator p = this->entries_.begin();
1463 p != this->entries_.end();
1464 ++p)
1465 {
1ddbd1e6
ILT
1466 p->write SELECT_SIZE_ENDIAN_NAME(size, big_endian)(
1467 pov, this->pool_ SELECT_SIZE_ENDIAN(size, big_endian));
a3ad94ed
ILT
1468 pov += dyn_size;
1469 }
1470
1471 gold_assert(pov - oview == oview_size);
1472
1473 of->write_output_view(offset, oview_size, oview);
1474
1475 // We no longer need the dynamic entries.
1476 this->entries_.clear();
1477}
1478
ead1e424
ILT
1479// Output_section::Input_section methods.
1480
1481// Return the data size. For an input section we store the size here.
1482// For an Output_section_data, we have to ask it for the size.
1483
1484off_t
1485Output_section::Input_section::data_size() const
1486{
1487 if (this->is_input_section())
b8e6aad9 1488 return this->u1_.data_size;
ead1e424 1489 else
b8e6aad9 1490 return this->u2_.posd->data_size();
ead1e424
ILT
1491}
1492
1493// Set the address and file offset.
1494
1495void
96803768
ILT
1496Output_section::Input_section::set_address_and_file_offset(
1497 uint64_t address,
1498 off_t file_offset,
1499 off_t section_file_offset)
ead1e424
ILT
1500{
1501 if (this->is_input_section())
96803768
ILT
1502 this->u2_.object->set_section_offset(this->shndx_,
1503 file_offset - section_file_offset);
ead1e424 1504 else
96803768
ILT
1505 this->u2_.posd->set_address_and_file_offset(address, file_offset);
1506}
1507
a445fddf
ILT
1508// Reset the address and file offset.
1509
1510void
1511Output_section::Input_section::reset_address_and_file_offset()
1512{
1513 if (!this->is_input_section())
1514 this->u2_.posd->reset_address_and_file_offset();
1515}
1516
96803768
ILT
1517// Finalize the data size.
1518
1519void
1520Output_section::Input_section::finalize_data_size()
1521{
1522 if (!this->is_input_section())
1523 this->u2_.posd->finalize_data_size();
b8e6aad9
ILT
1524}
1525
1e983657
ILT
1526// Try to turn an input offset into an output offset. We want to
1527// return the output offset relative to the start of this
1528// Input_section in the output section.
b8e6aad9 1529
8f00aeb8 1530inline bool
8383303e
ILT
1531Output_section::Input_section::output_offset(
1532 const Relobj* object,
1533 unsigned int shndx,
1534 section_offset_type offset,
1535 section_offset_type *poutput) const
b8e6aad9
ILT
1536{
1537 if (!this->is_input_section())
730cdc88 1538 return this->u2_.posd->output_offset(object, shndx, offset, poutput);
b8e6aad9
ILT
1539 else
1540 {
730cdc88 1541 if (this->shndx_ != shndx || this->u2_.object != object)
b8e6aad9 1542 return false;
1e983657 1543 *poutput = offset;
b8e6aad9
ILT
1544 return true;
1545 }
ead1e424
ILT
1546}
1547
a9a60db6
ILT
1548// Return whether this is the merge section for the input section
1549// SHNDX in OBJECT.
1550
1551inline bool
1552Output_section::Input_section::is_merge_section_for(const Relobj* object,
1553 unsigned int shndx) const
1554{
1555 if (this->is_input_section())
1556 return false;
1557 return this->u2_.posd->is_merge_section_for(object, shndx);
1558}
1559
ead1e424
ILT
1560// Write out the data. We don't have to do anything for an input
1561// section--they are handled via Object::relocate--but this is where
1562// we write out the data for an Output_section_data.
1563
1564void
1565Output_section::Input_section::write(Output_file* of)
1566{
1567 if (!this->is_input_section())
b8e6aad9 1568 this->u2_.posd->write(of);
ead1e424
ILT
1569}
1570
96803768
ILT
1571// Write the data to a buffer. As for write(), we don't have to do
1572// anything for an input section.
1573
1574void
1575Output_section::Input_section::write_to_buffer(unsigned char* buffer)
1576{
1577 if (!this->is_input_section())
1578 this->u2_.posd->write_to_buffer(buffer);
1579}
1580
a2fb1b05
ILT
1581// Output_section methods.
1582
1583// Construct an Output_section. NAME will point into a Stringpool.
1584
96803768 1585Output_section::Output_section(const char* name, elfcpp::Elf_Word type,
b8e6aad9 1586 elfcpp::Elf_Xword flags)
96803768 1587 : name_(name),
a2fb1b05
ILT
1588 addralign_(0),
1589 entsize_(0),
a445fddf 1590 load_address_(0),
16649710 1591 link_section_(NULL),
a2fb1b05 1592 link_(0),
16649710 1593 info_section_(NULL),
6a74a719 1594 info_symndx_(NULL),
a2fb1b05
ILT
1595 info_(0),
1596 type_(type),
61ba1cf9 1597 flags_(flags),
91ea499d 1598 out_shndx_(-1U),
c06b7b0b
ILT
1599 symtab_index_(0),
1600 dynsym_index_(0),
ead1e424
ILT
1601 input_sections_(),
1602 first_input_offset_(0),
c51e6221 1603 fills_(),
96803768 1604 postprocessing_buffer_(NULL),
a3ad94ed 1605 needs_symtab_index_(false),
16649710
ILT
1606 needs_dynsym_index_(false),
1607 should_link_to_symtab_(false),
730cdc88 1608 should_link_to_dynsym_(false),
27bc2bce 1609 after_input_sections_(false),
7bf1f802 1610 requires_postprocessing_(false),
a445fddf
ILT
1611 found_in_sections_clause_(false),
1612 has_load_address_(false),
7bf1f802 1613 tls_offset_(0)
a2fb1b05 1614{
27bc2bce
ILT
1615 // An unallocated section has no address. Forcing this means that
1616 // we don't need special treatment for symbols defined in debug
1617 // sections.
1618 if ((flags & elfcpp::SHF_ALLOC) == 0)
1619 this->set_address(0);
a2fb1b05
ILT
1620}
1621
54dc6425
ILT
1622Output_section::~Output_section()
1623{
1624}
1625
16649710
ILT
1626// Set the entry size.
1627
1628void
1629Output_section::set_entsize(uint64_t v)
1630{
1631 if (this->entsize_ == 0)
1632 this->entsize_ = v;
1633 else
1634 gold_assert(this->entsize_ == v);
1635}
1636
ead1e424 1637// Add the input section SHNDX, with header SHDR, named SECNAME, in
730cdc88
ILT
1638// OBJECT, to the Output_section. RELOC_SHNDX is the index of a
1639// relocation section which applies to this section, or 0 if none, or
1640// -1U if more than one. Return the offset of the input section
1641// within the output section. Return -1 if the input section will
1642// receive special handling. In the normal case we don't always keep
1643// track of input sections for an Output_section. Instead, each
1644// Object keeps track of the Output_section for each of its input
a445fddf
ILT
1645// sections. However, if HAVE_SECTIONS_SCRIPT is true, we do keep
1646// track of input sections here; this is used when SECTIONS appears in
1647// a linker script.
a2fb1b05
ILT
1648
1649template<int size, bool big_endian>
1650off_t
730cdc88
ILT
1651Output_section::add_input_section(Sized_relobj<size, big_endian>* object,
1652 unsigned int shndx,
ead1e424 1653 const char* secname,
730cdc88 1654 const elfcpp::Shdr<size, big_endian>& shdr,
a445fddf
ILT
1655 unsigned int reloc_shndx,
1656 bool have_sections_script)
a2fb1b05
ILT
1657{
1658 elfcpp::Elf_Xword addralign = shdr.get_sh_addralign();
1659 if ((addralign & (addralign - 1)) != 0)
1660 {
75f2446e
ILT
1661 object->error(_("invalid alignment %lu for section \"%s\""),
1662 static_cast<unsigned long>(addralign), secname);
1663 addralign = 1;
a2fb1b05 1664 }
a2fb1b05
ILT
1665
1666 if (addralign > this->addralign_)
1667 this->addralign_ = addralign;
1668
44a43cf9 1669 typename elfcpp::Elf_types<size>::Elf_WXword sh_flags = shdr.get_sh_flags();
a445fddf
ILT
1670 this->flags_ |= (sh_flags
1671 & (elfcpp::SHF_WRITE
1672 | elfcpp::SHF_ALLOC
1673 | elfcpp::SHF_EXECINSTR));
1674
4f833eee 1675 uint64_t entsize = shdr.get_sh_entsize();
44a43cf9
ILT
1676
1677 // .debug_str is a mergeable string section, but is not always so
1678 // marked by compilers. Mark manually here so we can optimize.
1679 if (strcmp(secname, ".debug_str") == 0)
4f833eee
ILT
1680 {
1681 sh_flags |= (elfcpp::SHF_MERGE | elfcpp::SHF_STRINGS);
1682 entsize = 1;
1683 }
44a43cf9 1684
b8e6aad9 1685 // If this is a SHF_MERGE section, we pass all the input sections to
730cdc88
ILT
1686 // a Output_data_merge. We don't try to handle relocations for such
1687 // a section.
44a43cf9 1688 if ((sh_flags & elfcpp::SHF_MERGE) != 0
730cdc88 1689 && reloc_shndx == 0)
b8e6aad9 1690 {
44a43cf9 1691 if (this->add_merge_input_section(object, shndx, sh_flags,
96803768 1692 entsize, addralign))
b8e6aad9
ILT
1693 {
1694 // Tell the relocation routines that they need to call the
730cdc88 1695 // output_offset method to determine the final address.
b8e6aad9
ILT
1696 return -1;
1697 }
1698 }
1699
27bc2bce 1700 off_t offset_in_section = this->current_data_size_for_child();
c51e6221
ILT
1701 off_t aligned_offset_in_section = align_address(offset_in_section,
1702 addralign);
1703
1704 if (aligned_offset_in_section > offset_in_section
a445fddf 1705 && !have_sections_script
44a43cf9 1706 && (sh_flags & elfcpp::SHF_EXECINSTR) != 0
c51e6221
ILT
1707 && object->target()->has_code_fill())
1708 {
1709 // We need to add some fill data. Using fill_list_ when
1710 // possible is an optimization, since we will often have fill
1711 // sections without input sections.
1712 off_t fill_len = aligned_offset_in_section - offset_in_section;
1713 if (this->input_sections_.empty())
1714 this->fills_.push_back(Fill(offset_in_section, fill_len));
1715 else
1716 {
1717 // FIXME: When relaxing, the size needs to adjust to
1718 // maintain a constant alignment.
1719 std::string fill_data(object->target()->code_fill(fill_len));
1720 Output_data_const* odc = new Output_data_const(fill_data, 1);
1721 this->input_sections_.push_back(Input_section(odc));
1722 }
1723 }
1724
27bc2bce
ILT
1725 this->set_current_data_size_for_child(aligned_offset_in_section
1726 + shdr.get_sh_size());
a2fb1b05 1727
ead1e424
ILT
1728 // We need to keep track of this section if we are already keeping
1729 // track of sections, or if we are relaxing. FIXME: Add test for
1730 // relaxing.
a445fddf 1731 if (have_sections_script || !this->input_sections_.empty())
ead1e424
ILT
1732 this->input_sections_.push_back(Input_section(object, shndx,
1733 shdr.get_sh_size(),
1734 addralign));
54dc6425 1735
c51e6221 1736 return aligned_offset_in_section;
61ba1cf9
ILT
1737}
1738
ead1e424
ILT
1739// Add arbitrary data to an output section.
1740
1741void
1742Output_section::add_output_section_data(Output_section_data* posd)
1743{
b8e6aad9
ILT
1744 Input_section inp(posd);
1745 this->add_output_section_data(&inp);
a445fddf
ILT
1746
1747 if (posd->is_data_size_valid())
1748 {
1749 off_t offset_in_section = this->current_data_size_for_child();
1750 off_t aligned_offset_in_section = align_address(offset_in_section,
1751 posd->addralign());
1752 this->set_current_data_size_for_child(aligned_offset_in_section
1753 + posd->data_size());
1754 }
b8e6aad9
ILT
1755}
1756
1757// Add arbitrary data to an output section by Input_section.
c06b7b0b 1758
b8e6aad9
ILT
1759void
1760Output_section::add_output_section_data(Input_section* inp)
1761{
ead1e424 1762 if (this->input_sections_.empty())
27bc2bce 1763 this->first_input_offset_ = this->current_data_size_for_child();
c06b7b0b 1764
b8e6aad9 1765 this->input_sections_.push_back(*inp);
c06b7b0b 1766
b8e6aad9 1767 uint64_t addralign = inp->addralign();
ead1e424
ILT
1768 if (addralign > this->addralign_)
1769 this->addralign_ = addralign;
c06b7b0b 1770
b8e6aad9
ILT
1771 inp->set_output_section(this);
1772}
1773
1774// Add a merge section to an output section.
1775
1776void
1777Output_section::add_output_merge_section(Output_section_data* posd,
1778 bool is_string, uint64_t entsize)
1779{
1780 Input_section inp(posd, is_string, entsize);
1781 this->add_output_section_data(&inp);
1782}
1783
1784// Add an input section to a SHF_MERGE section.
1785
1786bool
1787Output_section::add_merge_input_section(Relobj* object, unsigned int shndx,
1788 uint64_t flags, uint64_t entsize,
96803768 1789 uint64_t addralign)
b8e6aad9 1790{
87f95776
ILT
1791 bool is_string = (flags & elfcpp::SHF_STRINGS) != 0;
1792
1793 // We only merge strings if the alignment is not more than the
1794 // character size. This could be handled, but it's unusual.
1795 if (is_string && addralign > entsize)
b8e6aad9
ILT
1796 return false;
1797
b8e6aad9
ILT
1798 Input_section_list::iterator p;
1799 for (p = this->input_sections_.begin();
1800 p != this->input_sections_.end();
1801 ++p)
87f95776 1802 if (p->is_merge_section(is_string, entsize, addralign))
9a0910c3
ILT
1803 {
1804 p->add_input_section(object, shndx);
1805 return true;
1806 }
b8e6aad9
ILT
1807
1808 // We handle the actual constant merging in Output_merge_data or
1809 // Output_merge_string_data.
9a0910c3
ILT
1810 Output_section_data* posd;
1811 if (!is_string)
1812 posd = new Output_merge_data(entsize, addralign);
b8e6aad9
ILT
1813 else
1814 {
9a0910c3
ILT
1815 switch (entsize)
1816 {
1817 case 1:
1818 posd = new Output_merge_string<char>(addralign);
1819 break;
1820 case 2:
1821 posd = new Output_merge_string<uint16_t>(addralign);
1822 break;
1823 case 4:
1824 posd = new Output_merge_string<uint32_t>(addralign);
1825 break;
1826 default:
1827 return false;
1828 }
b8e6aad9
ILT
1829 }
1830
9a0910c3
ILT
1831 this->add_output_merge_section(posd, is_string, entsize);
1832 posd->add_input_section(object, shndx);
1833
b8e6aad9
ILT
1834 return true;
1835}
1836
730cdc88
ILT
1837// Given an address OFFSET relative to the start of input section
1838// SHNDX in OBJECT, return whether this address is being included in
1839// the final link. This should only be called if SHNDX in OBJECT has
1840// a special mapping.
1841
1842bool
1843Output_section::is_input_address_mapped(const Relobj* object,
1844 unsigned int shndx,
1845 off_t offset) const
1846{
1847 gold_assert(object->is_section_specially_mapped(shndx));
1848
1849 for (Input_section_list::const_iterator p = this->input_sections_.begin();
1850 p != this->input_sections_.end();
1851 ++p)
1852 {
8383303e 1853 section_offset_type output_offset;
730cdc88
ILT
1854 if (p->output_offset(object, shndx, offset, &output_offset))
1855 return output_offset != -1;
1856 }
1857
1858 // By default we assume that the address is mapped. This should
1859 // only be called after we have passed all sections to Layout. At
1860 // that point we should know what we are discarding.
1861 return true;
1862}
1863
1864// Given an address OFFSET relative to the start of input section
1865// SHNDX in object OBJECT, return the output offset relative to the
1e983657
ILT
1866// start of the input section in the output section. This should only
1867// be called if SHNDX in OBJECT has a special mapping.
730cdc88 1868
8383303e 1869section_offset_type
730cdc88 1870Output_section::output_offset(const Relobj* object, unsigned int shndx,
8383303e 1871 section_offset_type offset) const
730cdc88
ILT
1872{
1873 gold_assert(object->is_section_specially_mapped(shndx));
1874 // This can only be called meaningfully when layout is complete.
1875 gold_assert(Output_data::is_layout_complete());
1876
1877 for (Input_section_list::const_iterator p = this->input_sections_.begin();
1878 p != this->input_sections_.end();
1879 ++p)
1880 {
8383303e 1881 section_offset_type output_offset;
730cdc88
ILT
1882 if (p->output_offset(object, shndx, offset, &output_offset))
1883 return output_offset;
1884 }
1885 gold_unreachable();
1886}
1887
b8e6aad9
ILT
1888// Return the output virtual address of OFFSET relative to the start
1889// of input section SHNDX in object OBJECT.
1890
1891uint64_t
1892Output_section::output_address(const Relobj* object, unsigned int shndx,
1893 off_t offset) const
1894{
730cdc88 1895 gold_assert(object->is_section_specially_mapped(shndx));
730cdc88 1896
b8e6aad9
ILT
1897 uint64_t addr = this->address() + this->first_input_offset_;
1898 for (Input_section_list::const_iterator p = this->input_sections_.begin();
1899 p != this->input_sections_.end();
1900 ++p)
1901 {
1902 addr = align_address(addr, p->addralign());
8383303e 1903 section_offset_type output_offset;
730cdc88
ILT
1904 if (p->output_offset(object, shndx, offset, &output_offset))
1905 {
1906 if (output_offset == -1)
1907 return -1U;
1908 return addr + output_offset;
1909 }
b8e6aad9
ILT
1910 addr += p->data_size();
1911 }
1912
1913 // If we get here, it means that we don't know the mapping for this
1914 // input section. This might happen in principle if
1915 // add_input_section were called before add_output_section_data.
1916 // But it should never actually happen.
1917
1918 gold_unreachable();
ead1e424
ILT
1919}
1920
a9a60db6
ILT
1921// Return the output address of the start of the merged section for
1922// input section SHNDX in object OBJECT.
1923
1924uint64_t
1925Output_section::starting_output_address(const Relobj* object,
1926 unsigned int shndx) const
1927{
1928 gold_assert(object->is_section_specially_mapped(shndx));
1929
1930 uint64_t addr = this->address() + this->first_input_offset_;
1931 for (Input_section_list::const_iterator p = this->input_sections_.begin();
1932 p != this->input_sections_.end();
1933 ++p)
1934 {
1935 addr = align_address(addr, p->addralign());
1936
1937 // It would be nice if we could use the existing output_offset
1938 // method to get the output offset of input offset 0.
1939 // Unfortunately we don't know for sure that input offset 0 is
1940 // mapped at all.
1941 if (p->is_merge_section_for(object, shndx))
1942 return addr;
1943
1944 addr += p->data_size();
1945 }
1946 gold_unreachable();
1947}
1948
27bc2bce 1949// Set the data size of an Output_section. This is where we handle
ead1e424
ILT
1950// setting the addresses of any Output_section_data objects.
1951
1952void
27bc2bce 1953Output_section::set_final_data_size()
ead1e424
ILT
1954{
1955 if (this->input_sections_.empty())
27bc2bce
ILT
1956 {
1957 this->set_data_size(this->current_data_size_for_child());
1958 return;
1959 }
ead1e424 1960
27bc2bce
ILT
1961 uint64_t address = this->address();
1962 off_t startoff = this->offset();
ead1e424
ILT
1963 off_t off = startoff + this->first_input_offset_;
1964 for (Input_section_list::iterator p = this->input_sections_.begin();
1965 p != this->input_sections_.end();
1966 ++p)
1967 {
1968 off = align_address(off, p->addralign());
96803768
ILT
1969 p->set_address_and_file_offset(address + (off - startoff), off,
1970 startoff);
ead1e424
ILT
1971 off += p->data_size();
1972 }
1973
1974 this->set_data_size(off - startoff);
1975}
9a0910c3 1976
a445fddf
ILT
1977// Reset the address and file offset.
1978
1979void
1980Output_section::do_reset_address_and_file_offset()
1981{
1982 for (Input_section_list::iterator p = this->input_sections_.begin();
1983 p != this->input_sections_.end();
1984 ++p)
1985 p->reset_address_and_file_offset();
1986}
1987
7bf1f802
ILT
1988// Set the TLS offset. Called only for SHT_TLS sections.
1989
1990void
1991Output_section::do_set_tls_offset(uint64_t tls_base)
1992{
1993 this->tls_offset_ = this->address() - tls_base;
1994}
1995
61ba1cf9
ILT
1996// Write the section header to *OSHDR.
1997
1998template<int size, bool big_endian>
1999void
16649710
ILT
2000Output_section::write_header(const Layout* layout,
2001 const Stringpool* secnamepool,
61ba1cf9
ILT
2002 elfcpp::Shdr_write<size, big_endian>* oshdr) const
2003{
2004 oshdr->put_sh_name(secnamepool->get_offset(this->name_));
2005 oshdr->put_sh_type(this->type_);
6a74a719
ILT
2006
2007 elfcpp::Elf_Xword flags = this->flags_;
2008 if (this->info_section_ != NULL)
2009 flags |= elfcpp::SHF_INFO_LINK;
2010 oshdr->put_sh_flags(flags);
2011
61ba1cf9
ILT
2012 oshdr->put_sh_addr(this->address());
2013 oshdr->put_sh_offset(this->offset());
2014 oshdr->put_sh_size(this->data_size());
16649710
ILT
2015 if (this->link_section_ != NULL)
2016 oshdr->put_sh_link(this->link_section_->out_shndx());
2017 else if (this->should_link_to_symtab_)
2018 oshdr->put_sh_link(layout->symtab_section()->out_shndx());
2019 else if (this->should_link_to_dynsym_)
2020 oshdr->put_sh_link(layout->dynsym_section()->out_shndx());
2021 else
2022 oshdr->put_sh_link(this->link_);
2023 if (this->info_section_ != NULL)
2024 oshdr->put_sh_info(this->info_section_->out_shndx());
6a74a719
ILT
2025 else if (this->info_symndx_ != NULL)
2026 oshdr->put_sh_info(this->info_symndx_->symtab_index());
16649710
ILT
2027 else
2028 oshdr->put_sh_info(this->info_);
61ba1cf9
ILT
2029 oshdr->put_sh_addralign(this->addralign_);
2030 oshdr->put_sh_entsize(this->entsize_);
a2fb1b05
ILT
2031}
2032
ead1e424
ILT
2033// Write out the data. For input sections the data is written out by
2034// Object::relocate, but we have to handle Output_section_data objects
2035// here.
2036
2037void
2038Output_section::do_write(Output_file* of)
2039{
96803768
ILT
2040 gold_assert(!this->requires_postprocessing());
2041
c51e6221
ILT
2042 off_t output_section_file_offset = this->offset();
2043 for (Fill_list::iterator p = this->fills_.begin();
2044 p != this->fills_.end();
2045 ++p)
2046 {
14144f39 2047 std::string fill_data(parameters->target()->code_fill(p->length()));
c51e6221 2048 of->write(output_section_file_offset + p->section_offset(),
a445fddf 2049 fill_data.data(), fill_data.size());
c51e6221
ILT
2050 }
2051
ead1e424
ILT
2052 for (Input_section_list::iterator p = this->input_sections_.begin();
2053 p != this->input_sections_.end();
2054 ++p)
2055 p->write(of);
2056}
2057
96803768
ILT
2058// If a section requires postprocessing, create the buffer to use.
2059
2060void
2061Output_section::create_postprocessing_buffer()
2062{
2063 gold_assert(this->requires_postprocessing());
1bedcac5
ILT
2064
2065 if (this->postprocessing_buffer_ != NULL)
2066 return;
96803768
ILT
2067
2068 if (!this->input_sections_.empty())
2069 {
2070 off_t off = this->first_input_offset_;
2071 for (Input_section_list::iterator p = this->input_sections_.begin();
2072 p != this->input_sections_.end();
2073 ++p)
2074 {
2075 off = align_address(off, p->addralign());
2076 p->finalize_data_size();
2077 off += p->data_size();
2078 }
2079 this->set_current_data_size_for_child(off);
2080 }
2081
2082 off_t buffer_size = this->current_data_size_for_child();
2083 this->postprocessing_buffer_ = new unsigned char[buffer_size];
2084}
2085
2086// Write all the data of an Output_section into the postprocessing
2087// buffer. This is used for sections which require postprocessing,
2088// such as compression. Input sections are handled by
2089// Object::Relocate.
2090
2091void
2092Output_section::write_to_postprocessing_buffer()
2093{
2094 gold_assert(this->requires_postprocessing());
2095
2096 Target* target = parameters->target();
2097 unsigned char* buffer = this->postprocessing_buffer();
2098 for (Fill_list::iterator p = this->fills_.begin();
2099 p != this->fills_.end();
2100 ++p)
2101 {
2102 std::string fill_data(target->code_fill(p->length()));
a445fddf
ILT
2103 memcpy(buffer + p->section_offset(), fill_data.data(),
2104 fill_data.size());
96803768
ILT
2105 }
2106
2107 off_t off = this->first_input_offset_;
2108 for (Input_section_list::iterator p = this->input_sections_.begin();
2109 p != this->input_sections_.end();
2110 ++p)
2111 {
2112 off = align_address(off, p->addralign());
2113 p->write_to_buffer(buffer + off);
2114 off += p->data_size();
2115 }
2116}
2117
a445fddf
ILT
2118// Get the input sections for linker script processing. We leave
2119// behind the Output_section_data entries. Note that this may be
2120// slightly incorrect for merge sections. We will leave them behind,
2121// but it is possible that the script says that they should follow
2122// some other input sections, as in:
2123// .rodata { *(.rodata) *(.rodata.cst*) }
2124// For that matter, we don't handle this correctly:
2125// .rodata { foo.o(.rodata.cst*) *(.rodata.cst*) }
2126// With luck this will never matter.
2127
2128uint64_t
2129Output_section::get_input_sections(
2130 uint64_t address,
2131 const std::string& fill,
2132 std::list<std::pair<Relobj*, unsigned int> >* input_sections)
2133{
2134 uint64_t orig_address = address;
2135
2136 address = align_address(address, this->addralign());
2137
2138 Input_section_list remaining;
2139 for (Input_section_list::iterator p = this->input_sections_.begin();
2140 p != this->input_sections_.end();
2141 ++p)
2142 {
2143 if (p->is_input_section())
2144 input_sections->push_back(std::make_pair(p->relobj(), p->shndx()));
2145 else
2146 {
2147 uint64_t aligned_address = align_address(address, p->addralign());
2148 if (aligned_address != address && !fill.empty())
2149 {
2150 section_size_type length =
2151 convert_to_section_size_type(aligned_address - address);
2152 std::string this_fill;
2153 this_fill.reserve(length);
2154 while (this_fill.length() + fill.length() <= length)
2155 this_fill += fill;
2156 if (this_fill.length() < length)
2157 this_fill.append(fill, 0, length - this_fill.length());
2158
2159 Output_section_data* posd = new Output_data_const(this_fill, 0);
2160 remaining.push_back(Input_section(posd));
2161 }
2162 address = aligned_address;
2163
2164 remaining.push_back(*p);
2165
2166 p->finalize_data_size();
2167 address += p->data_size();
2168 }
2169 }
2170
2171 this->input_sections_.swap(remaining);
2172 this->first_input_offset_ = 0;
2173
2174 uint64_t data_size = address - orig_address;
2175 this->set_current_data_size_for_child(data_size);
2176 return data_size;
2177}
2178
2179// Add an input section from a script.
2180
2181void
2182Output_section::add_input_section_for_script(Relobj* object,
2183 unsigned int shndx,
2184 off_t data_size,
2185 uint64_t addralign)
2186{
2187 if (addralign > this->addralign_)
2188 this->addralign_ = addralign;
2189
2190 off_t offset_in_section = this->current_data_size_for_child();
2191 off_t aligned_offset_in_section = align_address(offset_in_section,
2192 addralign);
2193
2194 this->set_current_data_size_for_child(aligned_offset_in_section
2195 + data_size);
2196
2197 this->input_sections_.push_back(Input_section(object, shndx,
2198 data_size, addralign));
2199}
2200
38c5e8b4
ILT
2201// Print stats for merge sections to stderr.
2202
2203void
2204Output_section::print_merge_stats()
2205{
2206 Input_section_list::iterator p;
2207 for (p = this->input_sections_.begin();
2208 p != this->input_sections_.end();
2209 ++p)
2210 p->print_merge_stats(this->name_);
2211}
2212
a2fb1b05
ILT
2213// Output segment methods.
2214
2215Output_segment::Output_segment(elfcpp::Elf_Word type, elfcpp::Elf_Word flags)
54dc6425 2216 : output_data_(),
75f65a3e 2217 output_bss_(),
a2fb1b05
ILT
2218 vaddr_(0),
2219 paddr_(0),
2220 memsz_(0),
a445fddf
ILT
2221 max_align_(0),
2222 min_p_align_(0),
a2fb1b05
ILT
2223 offset_(0),
2224 filesz_(0),
2225 type_(type),
ead1e424 2226 flags_(flags),
a445fddf
ILT
2227 is_max_align_known_(false),
2228 are_addresses_set_(false)
a2fb1b05
ILT
2229{
2230}
2231
2232// Add an Output_section to an Output_segment.
2233
2234void
75f65a3e 2235Output_segment::add_output_section(Output_section* os,
dbe717ef
ILT
2236 elfcpp::Elf_Word seg_flags,
2237 bool front)
a2fb1b05 2238{
a3ad94ed 2239 gold_assert((os->flags() & elfcpp::SHF_ALLOC) != 0);
a445fddf 2240 gold_assert(!this->is_max_align_known_);
75f65a3e 2241
ead1e424 2242 // Update the segment flags.
75f65a3e 2243 this->flags_ |= seg_flags;
75f65a3e
ILT
2244
2245 Output_segment::Output_data_list* pdl;
2246 if (os->type() == elfcpp::SHT_NOBITS)
2247 pdl = &this->output_bss_;
2248 else
2249 pdl = &this->output_data_;
54dc6425 2250
a2fb1b05
ILT
2251 // So that PT_NOTE segments will work correctly, we need to ensure
2252 // that all SHT_NOTE sections are adjacent. This will normally
2253 // happen automatically, because all the SHT_NOTE input sections
2254 // will wind up in the same output section. However, it is possible
2255 // for multiple SHT_NOTE input sections to have different section
2256 // flags, and thus be in different output sections, but for the
2257 // different section flags to map into the same segment flags and
2258 // thus the same output segment.
54dc6425
ILT
2259
2260 // Note that while there may be many input sections in an output
2261 // section, there are normally only a few output sections in an
2262 // output segment. This loop is expected to be fast.
2263
61ba1cf9 2264 if (os->type() == elfcpp::SHT_NOTE && !pdl->empty())
a2fb1b05 2265 {
a3ad94ed 2266 Output_segment::Output_data_list::iterator p = pdl->end();
75f65a3e 2267 do
54dc6425 2268 {
75f65a3e 2269 --p;
54dc6425
ILT
2270 if ((*p)->is_section_type(elfcpp::SHT_NOTE))
2271 {
dbe717ef 2272 // We don't worry about the FRONT parameter.
54dc6425 2273 ++p;
75f65a3e 2274 pdl->insert(p, os);
54dc6425
ILT
2275 return;
2276 }
2277 }
75f65a3e 2278 while (p != pdl->begin());
54dc6425
ILT
2279 }
2280
2281 // Similarly, so that PT_TLS segments will work, we need to group
75f65a3e
ILT
2282 // SHF_TLS sections. An SHF_TLS/SHT_NOBITS section is a special
2283 // case: we group the SHF_TLS/SHT_NOBITS sections right after the
2284 // SHF_TLS/SHT_PROGBITS sections. This lets us set up PT_TLS
07f397ab
ILT
2285 // correctly. SHF_TLS sections get added to both a PT_LOAD segment
2286 // and the PT_TLS segment -- we do this grouping only for the
2287 // PT_LOAD segment.
2288 if (this->type_ != elfcpp::PT_TLS
2289 && (os->flags() & elfcpp::SHF_TLS) != 0
2290 && !this->output_data_.empty())
54dc6425 2291 {
75f65a3e
ILT
2292 pdl = &this->output_data_;
2293 bool nobits = os->type() == elfcpp::SHT_NOBITS;
ead1e424 2294 bool sawtls = false;
a3ad94ed 2295 Output_segment::Output_data_list::iterator p = pdl->end();
75f65a3e 2296 do
a2fb1b05 2297 {
75f65a3e 2298 --p;
ead1e424
ILT
2299 bool insert;
2300 if ((*p)->is_section_flag_set(elfcpp::SHF_TLS))
2301 {
2302 sawtls = true;
2303 // Put a NOBITS section after the first TLS section.
2304 // But a PROGBITS section after the first TLS/PROGBITS
2305 // section.
2306 insert = nobits || !(*p)->is_section_type(elfcpp::SHT_NOBITS);
2307 }
2308 else
2309 {
2310 // If we've gone past the TLS sections, but we've seen a
2311 // TLS section, then we need to insert this section now.
2312 insert = sawtls;
2313 }
2314
2315 if (insert)
a2fb1b05 2316 {
dbe717ef 2317 // We don't worry about the FRONT parameter.
a2fb1b05 2318 ++p;
75f65a3e 2319 pdl->insert(p, os);
a2fb1b05
ILT
2320 return;
2321 }
2322 }
75f65a3e 2323 while (p != pdl->begin());
ead1e424 2324
dbe717ef
ILT
2325 // There are no TLS sections yet; put this one at the requested
2326 // location in the section list.
a2fb1b05
ILT
2327 }
2328
dbe717ef
ILT
2329 if (front)
2330 pdl->push_front(os);
2331 else
2332 pdl->push_back(os);
75f65a3e
ILT
2333}
2334
2335// Add an Output_data (which is not an Output_section) to the start of
2336// a segment.
2337
2338void
2339Output_segment::add_initial_output_data(Output_data* od)
2340{
a445fddf 2341 gold_assert(!this->is_max_align_known_);
75f65a3e
ILT
2342 this->output_data_.push_front(od);
2343}
2344
2345// Return the maximum alignment of the Output_data in Output_segment.
75f65a3e
ILT
2346
2347uint64_t
a445fddf 2348Output_segment::maximum_alignment()
75f65a3e 2349{
a445fddf 2350 if (!this->is_max_align_known_)
ead1e424
ILT
2351 {
2352 uint64_t addralign;
2353
a445fddf
ILT
2354 addralign = Output_segment::maximum_alignment_list(&this->output_data_);
2355 if (addralign > this->max_align_)
2356 this->max_align_ = addralign;
ead1e424 2357
a445fddf
ILT
2358 addralign = Output_segment::maximum_alignment_list(&this->output_bss_);
2359 if (addralign > this->max_align_)
2360 this->max_align_ = addralign;
ead1e424 2361
a445fddf 2362 this->is_max_align_known_ = true;
ead1e424
ILT
2363 }
2364
a445fddf 2365 return this->max_align_;
75f65a3e
ILT
2366}
2367
ead1e424
ILT
2368// Return the maximum alignment of a list of Output_data.
2369
2370uint64_t
a445fddf 2371Output_segment::maximum_alignment_list(const Output_data_list* pdl)
ead1e424
ILT
2372{
2373 uint64_t ret = 0;
2374 for (Output_data_list::const_iterator p = pdl->begin();
2375 p != pdl->end();
2376 ++p)
2377 {
2378 uint64_t addralign = (*p)->addralign();
2379 if (addralign > ret)
2380 ret = addralign;
2381 }
2382 return ret;
2383}
2384
4f4c5f80
ILT
2385// Return the number of dynamic relocs applied to this segment.
2386
2387unsigned int
2388Output_segment::dynamic_reloc_count() const
2389{
2390 return (this->dynamic_reloc_count_list(&this->output_data_)
2391 + this->dynamic_reloc_count_list(&this->output_bss_));
2392}
2393
2394// Return the number of dynamic relocs applied to an Output_data_list.
2395
2396unsigned int
2397Output_segment::dynamic_reloc_count_list(const Output_data_list* pdl) const
2398{
2399 unsigned int count = 0;
2400 for (Output_data_list::const_iterator p = pdl->begin();
2401 p != pdl->end();
2402 ++p)
2403 count += (*p)->dynamic_reloc_count();
2404 return count;
2405}
2406
a445fddf
ILT
2407// Set the section addresses for an Output_segment. If RESET is true,
2408// reset the addresses first. ADDR is the address and *POFF is the
2409// file offset. Set the section indexes starting with *PSHNDX.
2410// Return the address of the immediately following segment. Update
2411// *POFF and *PSHNDX.
75f65a3e
ILT
2412
2413uint64_t
a445fddf 2414Output_segment::set_section_addresses(bool reset, uint64_t addr, off_t* poff,
ead1e424 2415 unsigned int* pshndx)
75f65a3e 2416{
a3ad94ed 2417 gold_assert(this->type_ == elfcpp::PT_LOAD);
75f65a3e 2418
a445fddf
ILT
2419 if (!reset && this->are_addresses_set_)
2420 {
2421 gold_assert(this->paddr_ == addr);
2422 addr = this->vaddr_;
2423 }
2424 else
2425 {
2426 this->vaddr_ = addr;
2427 this->paddr_ = addr;
2428 this->are_addresses_set_ = true;
2429 }
75f65a3e
ILT
2430
2431 off_t orig_off = *poff;
2432 this->offset_ = orig_off;
2433
a445fddf
ILT
2434 addr = this->set_section_list_addresses(reset, &this->output_data_,
2435 addr, poff, pshndx);
75f65a3e
ILT
2436 this->filesz_ = *poff - orig_off;
2437
2438 off_t off = *poff;
2439
a445fddf
ILT
2440 uint64_t ret = this->set_section_list_addresses(reset, &this->output_bss_,
2441 addr, poff, pshndx);
75f65a3e
ILT
2442 this->memsz_ = *poff - orig_off;
2443
2444 // Ignore the file offset adjustments made by the BSS Output_data
2445 // objects.
2446 *poff = off;
61ba1cf9
ILT
2447
2448 return ret;
75f65a3e
ILT
2449}
2450
b8e6aad9
ILT
2451// Set the addresses and file offsets in a list of Output_data
2452// structures.
75f65a3e
ILT
2453
2454uint64_t
a445fddf 2455Output_segment::set_section_list_addresses(bool reset, Output_data_list* pdl,
ead1e424
ILT
2456 uint64_t addr, off_t* poff,
2457 unsigned int* pshndx)
75f65a3e 2458{
ead1e424 2459 off_t startoff = *poff;
75f65a3e 2460
ead1e424 2461 off_t off = startoff;
75f65a3e
ILT
2462 for (Output_data_list::iterator p = pdl->begin();
2463 p != pdl->end();
2464 ++p)
2465 {
a445fddf
ILT
2466 if (reset)
2467 (*p)->reset_address_and_file_offset();
2468
2469 // When using a linker script the section will most likely
2470 // already have an address.
2471 if (!(*p)->is_address_valid())
3802b2dd
ILT
2472 {
2473 off = align_address(off, (*p)->addralign());
2474 (*p)->set_address_and_file_offset(addr + (off - startoff), off);
2475 }
a445fddf
ILT
2476 else
2477 {
2478 // The script may have inserted a skip forward, but it
2479 // better not have moved backward.
3802b2dd
ILT
2480 gold_assert((*p)->address() >= addr + (off - startoff));
2481 off += (*p)->address() - (addr + (off - startoff));
a445fddf
ILT
2482 (*p)->set_file_offset(off);
2483 (*p)->finalize_data_size();
2484 }
ead1e424
ILT
2485
2486 // Unless this is a PT_TLS segment, we want to ignore the size
2487 // of a SHF_TLS/SHT_NOBITS section. Such a section does not
2488 // affect the size of a PT_LOAD segment.
2489 if (this->type_ == elfcpp::PT_TLS
2490 || !(*p)->is_section_flag_set(elfcpp::SHF_TLS)
2491 || !(*p)->is_section_type(elfcpp::SHT_NOBITS))
2492 off += (*p)->data_size();
75f65a3e 2493
ead1e424
ILT
2494 if ((*p)->is_section())
2495 {
2496 (*p)->set_out_shndx(*pshndx);
2497 ++*pshndx;
2498 }
75f65a3e
ILT
2499 }
2500
2501 *poff = off;
ead1e424 2502 return addr + (off - startoff);
75f65a3e
ILT
2503}
2504
2505// For a non-PT_LOAD segment, set the offset from the sections, if
2506// any.
2507
2508void
2509Output_segment::set_offset()
2510{
a3ad94ed 2511 gold_assert(this->type_ != elfcpp::PT_LOAD);
75f65a3e 2512
a445fddf
ILT
2513 gold_assert(!this->are_addresses_set_);
2514
75f65a3e
ILT
2515 if (this->output_data_.empty() && this->output_bss_.empty())
2516 {
2517 this->vaddr_ = 0;
2518 this->paddr_ = 0;
a445fddf 2519 this->are_addresses_set_ = true;
75f65a3e 2520 this->memsz_ = 0;
a445fddf 2521 this->min_p_align_ = 0;
75f65a3e
ILT
2522 this->offset_ = 0;
2523 this->filesz_ = 0;
2524 return;
2525 }
2526
2527 const Output_data* first;
2528 if (this->output_data_.empty())
2529 first = this->output_bss_.front();
2530 else
2531 first = this->output_data_.front();
2532 this->vaddr_ = first->address();
a445fddf
ILT
2533 this->paddr_ = (first->has_load_address()
2534 ? first->load_address()
2535 : this->vaddr_);
2536 this->are_addresses_set_ = true;
75f65a3e
ILT
2537 this->offset_ = first->offset();
2538
2539 if (this->output_data_.empty())
2540 this->filesz_ = 0;
2541 else
2542 {
2543 const Output_data* last_data = this->output_data_.back();
2544 this->filesz_ = (last_data->address()
2545 + last_data->data_size()
2546 - this->vaddr_);
2547 }
2548
2549 const Output_data* last;
2550 if (this->output_bss_.empty())
2551 last = this->output_data_.back();
2552 else
2553 last = this->output_bss_.back();
2554 this->memsz_ = (last->address()
2555 + last->data_size()
2556 - this->vaddr_);
75f65a3e
ILT
2557}
2558
7bf1f802
ILT
2559// Set the TLS offsets of the sections in the PT_TLS segment.
2560
2561void
2562Output_segment::set_tls_offsets()
2563{
2564 gold_assert(this->type_ == elfcpp::PT_TLS);
2565
2566 for (Output_data_list::iterator p = this->output_data_.begin();
2567 p != this->output_data_.end();
2568 ++p)
2569 (*p)->set_tls_offset(this->vaddr_);
2570
2571 for (Output_data_list::iterator p = this->output_bss_.begin();
2572 p != this->output_bss_.end();
2573 ++p)
2574 (*p)->set_tls_offset(this->vaddr_);
2575}
2576
a445fddf
ILT
2577// Return the address of the first section.
2578
2579uint64_t
2580Output_segment::first_section_load_address() const
2581{
2582 for (Output_data_list::const_iterator p = this->output_data_.begin();
2583 p != this->output_data_.end();
2584 ++p)
2585 if ((*p)->is_section())
2586 return (*p)->has_load_address() ? (*p)->load_address() : (*p)->address();
2587
2588 for (Output_data_list::const_iterator p = this->output_bss_.begin();
2589 p != this->output_bss_.end();
2590 ++p)
2591 if ((*p)->is_section())
2592 return (*p)->has_load_address() ? (*p)->load_address() : (*p)->address();
2593
2594 gold_unreachable();
2595}
2596
75f65a3e
ILT
2597// Return the number of Output_sections in an Output_segment.
2598
2599unsigned int
2600Output_segment::output_section_count() const
2601{
2602 return (this->output_section_count_list(&this->output_data_)
2603 + this->output_section_count_list(&this->output_bss_));
2604}
2605
2606// Return the number of Output_sections in an Output_data_list.
2607
2608unsigned int
2609Output_segment::output_section_count_list(const Output_data_list* pdl) const
2610{
2611 unsigned int count = 0;
2612 for (Output_data_list::const_iterator p = pdl->begin();
2613 p != pdl->end();
2614 ++p)
2615 {
2616 if ((*p)->is_section())
2617 ++count;
2618 }
2619 return count;
a2fb1b05
ILT
2620}
2621
1c4f3631
ILT
2622// Return the section attached to the list segment with the lowest
2623// load address. This is used when handling a PHDRS clause in a
2624// linker script.
2625
2626Output_section*
2627Output_segment::section_with_lowest_load_address() const
2628{
2629 Output_section* found = NULL;
2630 uint64_t found_lma = 0;
2631 this->lowest_load_address_in_list(&this->output_data_, &found, &found_lma);
2632
2633 Output_section* found_data = found;
2634 this->lowest_load_address_in_list(&this->output_bss_, &found, &found_lma);
2635 if (found != found_data && found_data != NULL)
2636 {
2637 gold_error(_("nobits section %s may not precede progbits section %s "
2638 "in same segment"),
2639 found->name(), found_data->name());
2640 return NULL;
2641 }
2642
2643 return found;
2644}
2645
2646// Look through a list for a section with a lower load address.
2647
2648void
2649Output_segment::lowest_load_address_in_list(const Output_data_list* pdl,
2650 Output_section** found,
2651 uint64_t* found_lma) const
2652{
2653 for (Output_data_list::const_iterator p = pdl->begin();
2654 p != pdl->end();
2655 ++p)
2656 {
2657 if (!(*p)->is_section())
2658 continue;
2659 Output_section* os = static_cast<Output_section*>(*p);
2660 uint64_t lma = (os->has_load_address()
2661 ? os->load_address()
2662 : os->address());
2663 if (*found == NULL || lma < *found_lma)
2664 {
2665 *found = os;
2666 *found_lma = lma;
2667 }
2668 }
2669}
2670
61ba1cf9
ILT
2671// Write the segment data into *OPHDR.
2672
2673template<int size, bool big_endian>
2674void
ead1e424 2675Output_segment::write_header(elfcpp::Phdr_write<size, big_endian>* ophdr)
61ba1cf9
ILT
2676{
2677 ophdr->put_p_type(this->type_);
2678 ophdr->put_p_offset(this->offset_);
2679 ophdr->put_p_vaddr(this->vaddr_);
2680 ophdr->put_p_paddr(this->paddr_);
2681 ophdr->put_p_filesz(this->filesz_);
2682 ophdr->put_p_memsz(this->memsz_);
2683 ophdr->put_p_flags(this->flags_);
a445fddf 2684 ophdr->put_p_align(std::max(this->min_p_align_, this->maximum_alignment()));
61ba1cf9
ILT
2685}
2686
2687// Write the section headers into V.
2688
2689template<int size, bool big_endian>
2690unsigned char*
16649710
ILT
2691Output_segment::write_section_headers(const Layout* layout,
2692 const Stringpool* secnamepool,
ead1e424
ILT
2693 unsigned char* v,
2694 unsigned int *pshndx
5482377d
ILT
2695 ACCEPT_SIZE_ENDIAN) const
2696{
ead1e424
ILT
2697 // Every section that is attached to a segment must be attached to a
2698 // PT_LOAD segment, so we only write out section headers for PT_LOAD
2699 // segments.
2700 if (this->type_ != elfcpp::PT_LOAD)
2701 return v;
2702
593f47df
ILT
2703 v = this->write_section_headers_list
2704 SELECT_SIZE_ENDIAN_NAME(size, big_endian) (
16649710 2705 layout, secnamepool, &this->output_data_, v, pshndx
593f47df
ILT
2706 SELECT_SIZE_ENDIAN(size, big_endian));
2707 v = this->write_section_headers_list
2708 SELECT_SIZE_ENDIAN_NAME(size, big_endian) (
16649710 2709 layout, secnamepool, &this->output_bss_, v, pshndx
593f47df 2710 SELECT_SIZE_ENDIAN(size, big_endian));
61ba1cf9
ILT
2711 return v;
2712}
2713
2714template<int size, bool big_endian>
2715unsigned char*
16649710
ILT
2716Output_segment::write_section_headers_list(const Layout* layout,
2717 const Stringpool* secnamepool,
61ba1cf9 2718 const Output_data_list* pdl,
ead1e424
ILT
2719 unsigned char* v,
2720 unsigned int* pshndx
5482377d 2721 ACCEPT_SIZE_ENDIAN) const
61ba1cf9
ILT
2722{
2723 const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
2724 for (Output_data_list::const_iterator p = pdl->begin();
2725 p != pdl->end();
2726 ++p)
2727 {
2728 if ((*p)->is_section())
2729 {
5482377d 2730 const Output_section* ps = static_cast<const Output_section*>(*p);
a3ad94ed 2731 gold_assert(*pshndx == ps->out_shndx());
61ba1cf9 2732 elfcpp::Shdr_write<size, big_endian> oshdr(v);
16649710 2733 ps->write_header(layout, secnamepool, &oshdr);
61ba1cf9 2734 v += shdr_size;
ead1e424 2735 ++*pshndx;
61ba1cf9
ILT
2736 }
2737 }
2738 return v;
2739}
2740
a2fb1b05
ILT
2741// Output_file methods.
2742
14144f39
ILT
2743Output_file::Output_file(const char* name)
2744 : name_(name),
61ba1cf9
ILT
2745 o_(-1),
2746 file_size_(0),
c420411f
ILT
2747 base_(NULL),
2748 map_is_anonymous_(false)
61ba1cf9
ILT
2749{
2750}
2751
2752// Open the output file.
2753
a2fb1b05 2754void
61ba1cf9 2755Output_file::open(off_t file_size)
a2fb1b05 2756{
61ba1cf9
ILT
2757 this->file_size_ = file_size;
2758
4e9d8586
ILT
2759 // Unlink the file first; otherwise the open() may fail if the file
2760 // is busy (e.g. it's an executable that's currently being executed).
2761 //
2762 // However, the linker may be part of a system where a zero-length
2763 // file is created for it to write to, with tight permissions (gcc
2764 // 2.95 did something like this). Unlinking the file would work
2765 // around those permission controls, so we only unlink if the file
2766 // has a non-zero size. We also unlink only regular files to avoid
2767 // trouble with directories/etc.
2768 //
2769 // If we fail, continue; this command is merely a best-effort attempt
2770 // to improve the odds for open().
2771
42a1b686
ILT
2772 // We let the name "-" mean "stdout"
2773 if (strcmp(this->name_, "-") == 0)
2774 this->o_ = STDOUT_FILENO;
2775 else
2776 {
2777 struct stat s;
2778 if (::stat(this->name_, &s) == 0 && s.st_size != 0)
2779 unlink_if_ordinary(this->name_);
2780
2781 int mode = parameters->output_is_object() ? 0666 : 0777;
2782 int o = ::open(this->name_, O_RDWR | O_CREAT | O_TRUNC, mode);
2783 if (o < 0)
2784 gold_fatal(_("%s: open: %s"), this->name_, strerror(errno));
2785 this->o_ = o;
2786 }
61ba1cf9 2787
27bc2bce
ILT
2788 this->map();
2789}
2790
2791// Resize the output file.
2792
2793void
2794Output_file::resize(off_t file_size)
2795{
c420411f
ILT
2796 // If the mmap is mapping an anonymous memory buffer, this is easy:
2797 // just mremap to the new size. If it's mapping to a file, we want
2798 // to unmap to flush to the file, then remap after growing the file.
2799 if (this->map_is_anonymous_)
2800 {
2801 void* base = ::mremap(this->base_, this->file_size_, file_size,
2802 MREMAP_MAYMOVE);
2803 if (base == MAP_FAILED)
2804 gold_fatal(_("%s: mremap: %s"), this->name_, strerror(errno));
2805 this->base_ = static_cast<unsigned char*>(base);
2806 this->file_size_ = file_size;
2807 }
2808 else
2809 {
2810 this->unmap();
2811 this->file_size_ = file_size;
2812 this->map();
2813 }
27bc2bce
ILT
2814}
2815
2816// Map the file into memory.
2817
2818void
2819Output_file::map()
2820{
c420411f 2821 const int o = this->o_;
61ba1cf9 2822
c420411f
ILT
2823 // If the output file is not a regular file, don't try to mmap it;
2824 // instead, we'll mmap a block of memory (an anonymous buffer), and
2825 // then later write the buffer to the file.
2826 void* base;
2827 struct stat statbuf;
42a1b686
ILT
2828 if (o == STDOUT_FILENO || o == STDERR_FILENO
2829 || ::fstat(o, &statbuf) != 0
c420411f
ILT
2830 || !S_ISREG(statbuf.st_mode))
2831 {
2832 this->map_is_anonymous_ = true;
2833 base = ::mmap(NULL, this->file_size_, PROT_READ | PROT_WRITE,
2834 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
2835 }
2836 else
2837 {
2838 // Write out one byte to make the file the right size.
2839 if (::lseek(o, this->file_size_ - 1, SEEK_SET) < 0)
2840 gold_fatal(_("%s: lseek: %s"), this->name_, strerror(errno));
2841 char b = 0;
2842 if (::write(o, &b, 1) != 1)
2843 gold_fatal(_("%s: write: %s"), this->name_, strerror(errno));
2844
2845 // Map the file into memory.
2846 this->map_is_anonymous_ = false;
2847 base = ::mmap(NULL, this->file_size_, PROT_READ | PROT_WRITE,
2848 MAP_SHARED, o, 0);
2849 }
61ba1cf9 2850 if (base == MAP_FAILED)
75f2446e 2851 gold_fatal(_("%s: mmap: %s"), this->name_, strerror(errno));
61ba1cf9
ILT
2852 this->base_ = static_cast<unsigned char*>(base);
2853}
2854
c420411f 2855// Unmap the file from memory.
61ba1cf9
ILT
2856
2857void
c420411f 2858Output_file::unmap()
61ba1cf9
ILT
2859{
2860 if (::munmap(this->base_, this->file_size_) < 0)
a0c4fb0a 2861 gold_error(_("%s: munmap: %s"), this->name_, strerror(errno));
61ba1cf9 2862 this->base_ = NULL;
c420411f
ILT
2863}
2864
2865// Close the output file.
2866
2867void
2868Output_file::close()
2869{
2870 // If the map isn't file-backed, we need to write it now.
2871 if (this->map_is_anonymous_)
2872 {
2873 size_t bytes_to_write = this->file_size_;
2874 while (bytes_to_write > 0)
2875 {
2876 ssize_t bytes_written = ::write(this->o_, this->base_, bytes_to_write);
2877 if (bytes_written == 0)
2878 gold_error(_("%s: write: unexpected 0 return-value"), this->name_);
2879 else if (bytes_written < 0)
2880 gold_error(_("%s: write: %s"), this->name_, strerror(errno));
2881 else
2882 bytes_to_write -= bytes_written;
2883 }
2884 }
2885 this->unmap();
61ba1cf9 2886
42a1b686
ILT
2887 // We don't close stdout or stderr
2888 if (this->o_ != STDOUT_FILENO && this->o_ != STDERR_FILENO)
2889 if (::close(this->o_) < 0)
2890 gold_error(_("%s: close: %s"), this->name_, strerror(errno));
61ba1cf9 2891 this->o_ = -1;
a2fb1b05
ILT
2892}
2893
2894// Instantiate the templates we need. We could use the configure
2895// script to restrict this to only the ones for implemented targets.
2896
193a53d9 2897#ifdef HAVE_TARGET_32_LITTLE
a2fb1b05
ILT
2898template
2899off_t
2900Output_section::add_input_section<32, false>(
730cdc88 2901 Sized_relobj<32, false>* object,
ead1e424 2902 unsigned int shndx,
a2fb1b05 2903 const char* secname,
730cdc88 2904 const elfcpp::Shdr<32, false>& shdr,
a445fddf
ILT
2905 unsigned int reloc_shndx,
2906 bool have_sections_script);
193a53d9 2907#endif
a2fb1b05 2908
193a53d9 2909#ifdef HAVE_TARGET_32_BIG
a2fb1b05
ILT
2910template
2911off_t
2912Output_section::add_input_section<32, true>(
730cdc88 2913 Sized_relobj<32, true>* object,
ead1e424 2914 unsigned int shndx,
a2fb1b05 2915 const char* secname,
730cdc88 2916 const elfcpp::Shdr<32, true>& shdr,
a445fddf
ILT
2917 unsigned int reloc_shndx,
2918 bool have_sections_script);
193a53d9 2919#endif
a2fb1b05 2920
193a53d9 2921#ifdef HAVE_TARGET_64_LITTLE
a2fb1b05
ILT
2922template
2923off_t
2924Output_section::add_input_section<64, false>(
730cdc88 2925 Sized_relobj<64, false>* object,
ead1e424 2926 unsigned int shndx,
a2fb1b05 2927 const char* secname,
730cdc88 2928 const elfcpp::Shdr<64, false>& shdr,
a445fddf
ILT
2929 unsigned int reloc_shndx,
2930 bool have_sections_script);
193a53d9 2931#endif
a2fb1b05 2932
193a53d9 2933#ifdef HAVE_TARGET_64_BIG
a2fb1b05
ILT
2934template
2935off_t
2936Output_section::add_input_section<64, true>(
730cdc88 2937 Sized_relobj<64, true>* object,
ead1e424 2938 unsigned int shndx,
a2fb1b05 2939 const char* secname,
730cdc88 2940 const elfcpp::Shdr<64, true>& shdr,
a445fddf
ILT
2941 unsigned int reloc_shndx,
2942 bool have_sections_script);
193a53d9 2943#endif
a2fb1b05 2944
193a53d9 2945#ifdef HAVE_TARGET_32_LITTLE
c06b7b0b
ILT
2946template
2947class Output_data_reloc<elfcpp::SHT_REL, false, 32, false>;
193a53d9 2948#endif
c06b7b0b 2949
193a53d9 2950#ifdef HAVE_TARGET_32_BIG
c06b7b0b
ILT
2951template
2952class Output_data_reloc<elfcpp::SHT_REL, false, 32, true>;
193a53d9 2953#endif
c06b7b0b 2954
193a53d9 2955#ifdef HAVE_TARGET_64_LITTLE
c06b7b0b
ILT
2956template
2957class Output_data_reloc<elfcpp::SHT_REL, false, 64, false>;
193a53d9 2958#endif
c06b7b0b 2959
193a53d9 2960#ifdef HAVE_TARGET_64_BIG
c06b7b0b
ILT
2961template
2962class Output_data_reloc<elfcpp::SHT_REL, false, 64, true>;
193a53d9 2963#endif
c06b7b0b 2964
193a53d9 2965#ifdef HAVE_TARGET_32_LITTLE
c06b7b0b
ILT
2966template
2967class Output_data_reloc<elfcpp::SHT_REL, true, 32, false>;
193a53d9 2968#endif
c06b7b0b 2969
193a53d9 2970#ifdef HAVE_TARGET_32_BIG
c06b7b0b
ILT
2971template
2972class Output_data_reloc<elfcpp::SHT_REL, true, 32, true>;
193a53d9 2973#endif
c06b7b0b 2974
193a53d9 2975#ifdef HAVE_TARGET_64_LITTLE
c06b7b0b
ILT
2976template
2977class Output_data_reloc<elfcpp::SHT_REL, true, 64, false>;
193a53d9 2978#endif
c06b7b0b 2979
193a53d9 2980#ifdef HAVE_TARGET_64_BIG
c06b7b0b
ILT
2981template
2982class Output_data_reloc<elfcpp::SHT_REL, true, 64, true>;
193a53d9 2983#endif
c06b7b0b 2984
193a53d9 2985#ifdef HAVE_TARGET_32_LITTLE
c06b7b0b
ILT
2986template
2987class Output_data_reloc<elfcpp::SHT_RELA, false, 32, false>;
193a53d9 2988#endif
c06b7b0b 2989
193a53d9 2990#ifdef HAVE_TARGET_32_BIG
c06b7b0b
ILT
2991template
2992class Output_data_reloc<elfcpp::SHT_RELA, false, 32, true>;
193a53d9 2993#endif
c06b7b0b 2994
193a53d9 2995#ifdef HAVE_TARGET_64_LITTLE
c06b7b0b
ILT
2996template
2997class Output_data_reloc<elfcpp::SHT_RELA, false, 64, false>;
193a53d9 2998#endif
c06b7b0b 2999
193a53d9 3000#ifdef HAVE_TARGET_64_BIG
c06b7b0b
ILT
3001template
3002class Output_data_reloc<elfcpp::SHT_RELA, false, 64, true>;
193a53d9 3003#endif
c06b7b0b 3004
193a53d9 3005#ifdef HAVE_TARGET_32_LITTLE
c06b7b0b
ILT
3006template
3007class Output_data_reloc<elfcpp::SHT_RELA, true, 32, false>;
193a53d9 3008#endif
c06b7b0b 3009
193a53d9 3010#ifdef HAVE_TARGET_32_BIG
c06b7b0b
ILT
3011template
3012class Output_data_reloc<elfcpp::SHT_RELA, true, 32, true>;
193a53d9 3013#endif
c06b7b0b 3014
193a53d9 3015#ifdef HAVE_TARGET_64_LITTLE
c06b7b0b
ILT
3016template
3017class Output_data_reloc<elfcpp::SHT_RELA, true, 64, false>;
193a53d9 3018#endif
c06b7b0b 3019
193a53d9 3020#ifdef HAVE_TARGET_64_BIG
c06b7b0b
ILT
3021template
3022class Output_data_reloc<elfcpp::SHT_RELA, true, 64, true>;
193a53d9 3023#endif
c06b7b0b 3024
6a74a719
ILT
3025#ifdef HAVE_TARGET_32_LITTLE
3026template
3027class Output_relocatable_relocs<elfcpp::SHT_REL, 32, false>;
3028#endif
3029
3030#ifdef HAVE_TARGET_32_BIG
3031template
3032class Output_relocatable_relocs<elfcpp::SHT_REL, 32, true>;
3033#endif
3034
3035#ifdef HAVE_TARGET_64_LITTLE
3036template
3037class Output_relocatable_relocs<elfcpp::SHT_REL, 64, false>;
3038#endif
3039
3040#ifdef HAVE_TARGET_64_BIG
3041template
3042class Output_relocatable_relocs<elfcpp::SHT_REL, 64, true>;
3043#endif
3044
3045#ifdef HAVE_TARGET_32_LITTLE
3046template
3047class Output_relocatable_relocs<elfcpp::SHT_RELA, 32, false>;
3048#endif
3049
3050#ifdef HAVE_TARGET_32_BIG
3051template
3052class Output_relocatable_relocs<elfcpp::SHT_RELA, 32, true>;
3053#endif
3054
3055#ifdef HAVE_TARGET_64_LITTLE
3056template
3057class Output_relocatable_relocs<elfcpp::SHT_RELA, 64, false>;
3058#endif
3059
3060#ifdef HAVE_TARGET_64_BIG
3061template
3062class Output_relocatable_relocs<elfcpp::SHT_RELA, 64, true>;
3063#endif
3064
3065#ifdef HAVE_TARGET_32_LITTLE
3066template
3067class Output_data_group<32, false>;
3068#endif
3069
3070#ifdef HAVE_TARGET_32_BIG
3071template
3072class Output_data_group<32, true>;
3073#endif
3074
3075#ifdef HAVE_TARGET_64_LITTLE
3076template
3077class Output_data_group<64, false>;
3078#endif
3079
3080#ifdef HAVE_TARGET_64_BIG
3081template
3082class Output_data_group<64, true>;
3083#endif
3084
193a53d9 3085#ifdef HAVE_TARGET_32_LITTLE
ead1e424 3086template
dbe717ef 3087class Output_data_got<32, false>;
193a53d9 3088#endif
ead1e424 3089
193a53d9 3090#ifdef HAVE_TARGET_32_BIG
ead1e424 3091template
dbe717ef 3092class Output_data_got<32, true>;
193a53d9 3093#endif
ead1e424 3094
193a53d9 3095#ifdef HAVE_TARGET_64_LITTLE
ead1e424 3096template
dbe717ef 3097class Output_data_got<64, false>;
193a53d9 3098#endif
ead1e424 3099
193a53d9 3100#ifdef HAVE_TARGET_64_BIG
ead1e424 3101template
dbe717ef 3102class Output_data_got<64, true>;
193a53d9 3103#endif
ead1e424 3104
a2fb1b05 3105} // End namespace gold.
This page took 0.223757 seconds and 4 git commands to generate.