Automatic date update in version.in
[deliverable/binutils-gdb.git] / gold / layout.h
CommitLineData
a2fb1b05
ILT
1// layout.h -- lay out output file sections for gold -*- C++ -*-
2
6f2750fe 3// Copyright (C) 2006-2016 Free Software Foundation, Inc.
6cb15b7f
ILT
4// Written by Ian Lance Taylor <iant@google.com>.
5
6// This file is part of gold.
7
8// This program is free software; you can redistribute it and/or modify
9// it under the terms of the GNU General Public License as published by
10// the Free Software Foundation; either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21// MA 02110-1301, USA.
22
a2fb1b05
ILT
23#ifndef GOLD_LAYOUT_H
24#define GOLD_LAYOUT_H
25
e94cf127 26#include <cstring>
a2fb1b05 27#include <list>
1ef4d87f 28#include <map>
a2fb1b05
ILT
29#include <string>
30#include <utility>
31#include <vector>
32
e5756efb 33#include "script.h"
a2fb1b05
ILT
34#include "workqueue.h"
35#include "object.h"
14b31740 36#include "dynobj.h"
a2fb1b05
ILT
37#include "stringpool.h"
38
39namespace gold
40{
41
ead1e424 42class General_options;
3ce2c28e 43class Incremental_inputs;
cdc29364 44class Incremental_binary;
54dc6425 45class Input_objects;
7d9e3d98 46class Mapfile;
75f65a3e 47class Symbol_table;
ead1e424 48class Output_section_data;
a2fb1b05 49class Output_section;
75f65a3e 50class Output_section_headers;
20e6d0d6
DK
51class Output_segment_headers;
52class Output_file_header;
a2fb1b05 53class Output_segment;
54dc6425 54class Output_data;
3a44184e 55class Output_data_reloc_generic;
a3ad94ed 56class Output_data_dynamic;
d491d34e 57class Output_symtab_xindex;
62b01cb5
ILT
58class Output_reduced_debug_abbrev_section;
59class Output_reduced_debug_info_section;
730cdc88 60class Eh_frame;
c1027032 61class Gdb_index;
61ba1cf9 62class Target;
09ec0418 63struct Timespec;
a2fb1b05 64
a2e47362
CC
65// Return TRUE if SECNAME is the name of a compressed debug section.
66extern bool
67is_compressed_debug_section(const char* secname);
68
dd68f8fa
CC
69// Return the name of the corresponding uncompressed debug section.
70extern std::string
71corresponding_uncompressed_section_name(std::string secname);
72
cdc29364
CC
73// Maintain a list of free space within a section, segment, or file.
74// Used for incremental update links.
75
76class Free_list
77{
78 public:
8ea8cd50
CC
79 struct Free_list_node
80 {
81 Free_list_node(off_t start, off_t end)
82 : start_(start), end_(end)
83 { }
84 off_t start_;
85 off_t end_;
86 };
87 typedef std::list<Free_list_node>::const_iterator Const_iterator;
88
cdc29364 89 Free_list()
8ea8cd50
CC
90 : list_(), last_remove_(list_.begin()), extend_(false), length_(0),
91 min_hole_(0)
cdc29364
CC
92 { }
93
8ea8cd50
CC
94 // Initialize the free list for a section of length LEN.
95 // If EXTEND is true, free space may be allocated past the end.
cdc29364
CC
96 void
97 init(off_t len, bool extend);
98
8ea8cd50
CC
99 // Set the minimum hole size that is allowed when allocating
100 // from the free list.
101 void
102 set_min_hole_size(off_t min_hole)
103 { this->min_hole_ = min_hole; }
104
105 // Remove a chunk from the free list.
cdc29364
CC
106 void
107 remove(off_t start, off_t end);
108
8ea8cd50
CC
109 // Allocate a chunk of space from the free list of length LEN,
110 // with alignment ALIGN, and minimum offset MINOFF.
cdc29364
CC
111 off_t
112 allocate(off_t len, uint64_t align, off_t minoff);
113
8ea8cd50
CC
114 // Return an iterator for the beginning of the free list.
115 Const_iterator
116 begin() const
117 { return this->list_.begin(); }
118
119 // Return an iterator for the end of the free list.
120 Const_iterator
121 end() const
122 { return this->list_.end(); }
123
124 // Dump the free list (for debugging).
cdc29364
CC
125 void
126 dump();
127
8ea8cd50 128 // Print usage statistics.
cdc29364
CC
129 static void
130 print_stats();
131
132 private:
cdc29364
CC
133 typedef std::list<Free_list_node>::iterator Iterator;
134
135 // The free list.
136 std::list<Free_list_node> list_;
137
138 // The last node visited during a remove operation.
139 Iterator last_remove_;
140
141 // Whether we can extend past the original length.
142 bool extend_;
143
144 // The total length of the section, segment, or file.
145 off_t length_;
146
8ea8cd50
CC
147 // The minimum hole size allowed. When allocating from the free list,
148 // we must not leave a hole smaller than this.
149 off_t min_hole_;
150
cdc29364
CC
151 // Statistics:
152 // The total number of free lists used.
153 static unsigned int num_lists;
154 // The total number of free list nodes used.
155 static unsigned int num_nodes;
156 // The total number of calls to Free_list::remove.
157 static unsigned int num_removes;
158 // The total number of nodes visited during calls to Free_list::remove.
159 static unsigned int num_remove_visits;
160 // The total number of calls to Free_list::allocate.
161 static unsigned int num_allocates;
162 // The total number of nodes visited during calls to Free_list::allocate.
163 static unsigned int num_allocate_visits;
164};
165
92e059d8
ILT
166// This task function handles mapping the input sections to output
167// sections and laying them out in memory.
a2fb1b05 168
92e059d8 169class Layout_task_runner : public Task_function_runner
a2fb1b05
ILT
170{
171 public:
172 // OPTIONS is the command line options, INPUT_OBJECTS is the list of
92e059d8
ILT
173 // input objects, SYMTAB is the symbol table, LAYOUT is the layout
174 // object.
175 Layout_task_runner(const General_options& options,
176 const Input_objects* input_objects,
177 Symbol_table* symtab,
2e702c99 178 Target* target,
7d9e3d98
ILT
179 Layout* layout,
180 Mapfile* mapfile)
75f65a3e 181 : options_(options), input_objects_(input_objects), symtab_(symtab),
7d9e3d98 182 target_(target), layout_(layout), mapfile_(mapfile)
a2fb1b05
ILT
183 { }
184
92e059d8 185 // Run the operation.
a2fb1b05 186 void
17a1d0a9 187 run(Workqueue*, const Task*);
a2fb1b05
ILT
188
189 private:
92e059d8
ILT
190 Layout_task_runner(const Layout_task_runner&);
191 Layout_task_runner& operator=(const Layout_task_runner&);
a2fb1b05
ILT
192
193 const General_options& options_;
54dc6425 194 const Input_objects* input_objects_;
75f65a3e 195 Symbol_table* symtab_;
8851ecca 196 Target* target_;
12e14209 197 Layout* layout_;
7d9e3d98 198 Mapfile* mapfile_;
a2fb1b05
ILT
199};
200
1ef4d87f
ILT
201// This class holds information about the comdat group or
202// .gnu.linkonce section that will be kept for a given signature.
8a4c0b0d 203
1ef4d87f 204class Kept_section
8a4c0b0d 205{
1ef4d87f
ILT
206 private:
207 // For a comdat group, we build a mapping from the name of each
208 // section in the group to the section index and the size in object.
209 // When we discard a group in some other object file, we use this
210 // map to figure out which kept section the discarded section is
211 // associated with. We then use that mapping when processing relocs
212 // against discarded sections.
213 struct Comdat_section_info
214 {
215 // The section index.
216 unsigned int shndx;
217 // The section size.
218 uint64_t size;
219
220 Comdat_section_info(unsigned int a_shndx, uint64_t a_size)
221 : shndx(a_shndx), size(a_size)
222 { }
223 };
224
225 // Most comdat groups have only one or two sections, so we use a
226 // std::map rather than an Unordered_map to optimize for that case
227 // without paying too heavily for groups with more sections.
228 typedef std::map<std::string, Comdat_section_info> Comdat_group;
229
230 public:
8a4c0b0d 231 Kept_section()
1ef4d87f
ILT
232 : object_(NULL), shndx_(0), is_comdat_(false), is_group_name_(false)
233 { this->u_.linkonce_size = 0; }
234
235 // We need to support copies for the signature map in the Layout
236 // object, but we should never copy an object after it has been
237 // marked as a comdat section.
238 Kept_section(const Kept_section& k)
239 : object_(k.object_), shndx_(k.shndx_), is_comdat_(false),
240 is_group_name_(k.is_group_name_)
241 {
242 gold_assert(!k.is_comdat_);
243 this->u_.linkonce_size = 0;
244 }
245
246 ~Kept_section()
247 {
248 if (this->is_comdat_)
249 delete this->u_.group_sections;
250 }
251
252 // The object where this section lives.
253 Relobj*
254 object() const
255 { return this->object_; }
8a4c0b0d 256
1ef4d87f
ILT
257 // Set the object.
258 void
2ea97941 259 set_object(Relobj* object)
1ef4d87f
ILT
260 {
261 gold_assert(this->object_ == NULL);
2ea97941 262 this->object_ = object;
1ef4d87f
ILT
263 }
264
265 // The section index.
266 unsigned int
267 shndx() const
268 { return this->shndx_; }
269
270 // Set the section index.
271 void
2ea97941 272 set_shndx(unsigned int shndx)
1ef4d87f
ILT
273 {
274 gold_assert(this->shndx_ == 0);
2ea97941 275 this->shndx_ = shndx;
1ef4d87f
ILT
276 }
277
278 // Whether this is a comdat group.
279 bool
280 is_comdat() const
281 { return this->is_comdat_; }
282
283 // Set that this is a comdat group.
284 void
285 set_is_comdat()
286 {
287 gold_assert(!this->is_comdat_);
288 this->is_comdat_ = true;
289 this->u_.group_sections = new Comdat_group();
290 }
8a4c0b0d 291
1ef4d87f
ILT
292 // Whether this is associated with the name of a group or section
293 // rather than the symbol name derived from a linkonce section.
294 bool
295 is_group_name() const
296 { return this->is_group_name_; }
297
298 // Note that this represents a comdat group rather than a single
299 // linkonce section.
300 void
301 set_is_group_name()
302 { this->is_group_name_ = true; }
303
304 // Add a section to the group list.
305 void
2ea97941 306 add_comdat_section(const std::string& name, unsigned int shndx,
1ef4d87f
ILT
307 uint64_t size)
308 {
309 gold_assert(this->is_comdat_);
2ea97941 310 Comdat_section_info sinfo(shndx, size);
1ef4d87f
ILT
311 this->u_.group_sections->insert(std::make_pair(name, sinfo));
312 }
313
314 // Look for a section name in the group list, and return whether it
315 // was found. If found, returns the section index and size.
316 bool
ca09d69a
NC
317 find_comdat_section(const std::string& name, unsigned int* pshndx,
318 uint64_t* psize) const
1ef4d87f
ILT
319 {
320 gold_assert(this->is_comdat_);
321 Comdat_group::const_iterator p = this->u_.group_sections->find(name);
322 if (p == this->u_.group_sections->end())
323 return false;
324 *pshndx = p->second.shndx;
325 *psize = p->second.size;
326 return true;
327 }
328
329 // If there is only one section in the group list, return true, and
330 // return the section index and size.
331 bool
ca09d69a 332 find_single_comdat_section(unsigned int* pshndx, uint64_t* psize) const
1ef4d87f
ILT
333 {
334 gold_assert(this->is_comdat_);
335 if (this->u_.group_sections->size() != 1)
336 return false;
337 Comdat_group::const_iterator p = this->u_.group_sections->begin();
338 *pshndx = p->second.shndx;
339 *psize = p->second.size;
340 return true;
341 }
342
343 // Return the size of a linkonce section.
344 uint64_t
345 linkonce_size() const
346 {
347 gold_assert(!this->is_comdat_);
348 return this->u_.linkonce_size;
349 }
350
351 // Set the size of a linkonce section.
352 void
353 set_linkonce_size(uint64_t size)
354 {
355 gold_assert(!this->is_comdat_);
356 this->u_.linkonce_size = size;
357 }
358
359 private:
360 // No assignment.
361 Kept_section& operator=(const Kept_section&);
362
363 // The object containing the comdat group or .gnu.linkonce section.
364 Relobj* object_;
365 // Index of the group section for comdats and the section itself for
8a4c0b0d 366 // .gnu.linkonce.
1ef4d87f
ILT
367 unsigned int shndx_;
368 // True if this is for a comdat group rather than a .gnu.linkonce
369 // section.
370 bool is_comdat_;
8a4c0b0d
ILT
371 // The Kept_sections are values of a mapping, that maps names to
372 // them. This field is true if this struct is associated with the
373 // name of a comdat or .gnu.linkonce, false if it is associated with
374 // the name of a symbol obtained from the .gnu.linkonce.* name
375 // through some heuristics.
1ef4d87f
ILT
376 bool is_group_name_;
377 union
378 {
379 // If the is_comdat_ field is true, this holds a map from names of
380 // the sections in the group to section indexes in object_ and to
381 // section sizes.
382 Comdat_group* group_sections;
383 // If the is_comdat_ field is false, this holds the size of the
384 // single section.
385 uint64_t linkonce_size;
386 } u_;
8a4c0b0d
ILT
387};
388
22f0da72
ILT
389// The ordering for output sections. This controls how output
390// sections are ordered within a PT_LOAD output segment.
391
392enum Output_section_order
393{
394 // Unspecified. Used for non-load segments. Also used for the file
395 // and segment headers.
396 ORDER_INVALID,
397
398 // The PT_INTERP section should come first, so that the dynamic
399 // linker can pick it up quickly.
400 ORDER_INTERP,
401
402 // Loadable read-only note sections come next so that the PT_NOTE
403 // segment is on the first page of the executable.
404 ORDER_RO_NOTE,
405
406 // Put read-only sections used by the dynamic linker early in the
407 // executable to minimize paging.
408 ORDER_DYNAMIC_LINKER,
409
410 // Put reloc sections used by the dynamic linker after other
411 // sections used by the dynamic linker; otherwise, objcopy and strip
412 // get confused.
413 ORDER_DYNAMIC_RELOCS,
414
415 // Put the PLT reloc section after the other dynamic relocs;
9a2743de 416 // otherwise, prelink gets confused.
22f0da72
ILT
417 ORDER_DYNAMIC_PLT_RELOCS,
418
419 // The .init section.
420 ORDER_INIT,
421
422 // The PLT.
423 ORDER_PLT,
424
425 // The regular text sections.
426 ORDER_TEXT,
427
428 // The .fini section.
429 ORDER_FINI,
430
431 // The read-only sections.
432 ORDER_READONLY,
433
434 // The exception frame sections.
435 ORDER_EHFRAME,
436
437 // The TLS sections come first in the data section.
438 ORDER_TLS_DATA,
439 ORDER_TLS_BSS,
440
441 // Local RELRO (read-only after relocation) sections come before
442 // non-local RELRO sections. This data will be fully resolved by
443 // the prelinker.
444 ORDER_RELRO_LOCAL,
445
446 // Non-local RELRO sections are grouped together after local RELRO
447 // sections. All RELRO sections must be adjacent so that they can
448 // all be put into a PT_GNU_RELRO segment.
449 ORDER_RELRO,
450
451 // We permit marking exactly one output section as the last RELRO
452 // section. We do this so that the read-only GOT can be adjacent to
453 // the writable GOT.
454 ORDER_RELRO_LAST,
455
456 // Similarly, we permit marking exactly one output section as the
457 // first non-RELRO section.
458 ORDER_NON_RELRO_FIRST,
459
460 // The regular data sections come after the RELRO sections.
461 ORDER_DATA,
462
463 // Large data sections normally go in large data segments.
464 ORDER_LARGE_DATA,
465
466 // Group writable notes so that we can have a single PT_NOTE
467 // segment.
468 ORDER_RW_NOTE,
469
470 // The small data sections must be at the end of the data sections,
471 // so that they can be adjacent to the small BSS sections.
472 ORDER_SMALL_DATA,
473
474 // The BSS sections start here.
475
476 // The small BSS sections must be at the start of the BSS sections,
477 // so that they can be adjacent to the small data sections.
478 ORDER_SMALL_BSS,
479
480 // The regular BSS sections.
481 ORDER_BSS,
482
483 // The large BSS sections come after the other BSS sections.
484 ORDER_LARGE_BSS,
485
486 // Maximum value.
487 ORDER_MAX
488};
489
a2fb1b05
ILT
490// This class handles the details of laying out input sections.
491
492class Layout
493{
494 public:
e55bde5e 495 Layout(int number_of_input_files, Script_options*);
54dc6425 496
20e6d0d6
DK
497 ~Layout()
498 {
499 delete this->relaxation_debug_check_;
500 delete this->segment_states_;
501 }
502
cdc29364
CC
503 // For incremental links, record the base file to be modified.
504 void
505 set_incremental_base(Incremental_binary* base);
506
507 Incremental_binary*
508 incremental_base()
509 { return this->incremental_base_; }
510
511 // For incremental links, record the initial fixed layout of a section
512 // from the base file, and return a pointer to the Output_section.
513 template<int size, bool big_endian>
514 Output_section*
515 init_fixed_output_section(const char*, elfcpp::Shdr<size, big_endian>&);
516
ead1e424
ILT
517 // Given an input section SHNDX, named NAME, with data in SHDR, from
518 // the object file OBJECT, return the output section where this
730cdc88
ILT
519 // input section should go. RELOC_SHNDX is the index of a
520 // relocation section which applies to this section, or 0 if none,
521 // or -1U if more than one. RELOC_TYPE is the type of the
522 // relocation section if there is one. Set *OFFSET to the offset
523 // within the output section.
a2fb1b05
ILT
524 template<int size, bool big_endian>
525 Output_section*
6fa2a40b 526 layout(Sized_relobj_file<size, big_endian> *object, unsigned int shndx,
730cdc88
ILT
527 const char* name, const elfcpp::Shdr<size, big_endian>& shdr,
528 unsigned int reloc_shndx, unsigned int reloc_type, off_t* offset);
529
f0558624
ST
530 std::map<Section_id, unsigned int>*
531 get_section_order_map()
532 { return &this->section_order_map_; }
2e702c99 533
16164a6b
ST
534 // Struct to store segment info when mapping some input sections to
535 // unique segments using linker plugins. Mapping an input section to
536 // a unique segment is done by first placing such input sections in
537 // unique output sections and then mapping the output section to a
538 // unique segment. NAME is the name of the output section. FLAGS
539 // and ALIGN are the extra flags and alignment of the segment.
540 struct Unique_segment_info
541 {
542 // Identifier for the segment. ELF segments dont have names. This
543 // is used as the name of the output section mapped to the segment.
544 const char* name;
545 // Additional segment flags.
546 uint64_t flags;
547 // Segment alignment.
548 uint64_t align;
549 };
550
551 // Mapping from input section to segment.
552 typedef std::map<Const_section_id, Unique_segment_info*>
553 Section_segment_map;
554
555 // Maps section SECN to SEGMENT s.
556 void
557 insert_section_segment_map(Const_section_id secn, Unique_segment_info *s);
28f2a4ac 558
edcac0c1
ILT
559 // Some input sections require special ordering, for compatibility
560 // with GNU ld. Given the name of an input section, return -1 if it
561 // does not require special ordering. Otherwise, return the index
562 // by which it should be ordered compared to other input sections
563 // that require special ordering.
564 static int
565 special_ordering_of_input_section(const char* name);
566
e9552f7e
ST
567 bool
568 is_section_ordering_specified()
569 { return this->section_ordering_specified_; }
570
571 void
572 set_section_ordering_specified()
573 { this->section_ordering_specified_ = true; }
574
16164a6b
ST
575 bool
576 is_unique_segment_for_sections_specified() const
577 { return this->unique_segment_for_sections_specified_; }
578
579 void
580 set_unique_segment_for_sections_specified()
581 { this->unique_segment_for_sections_specified_ = true; }
582
cdc29364
CC
583 // For incremental updates, allocate a block of memory from the
584 // free list. Find a block starting at or after MINOFF.
585 off_t
586 allocate(off_t len, uint64_t align, off_t minoff)
587 { return this->free_list_.allocate(len, align, minoff); }
588
6e9ba2ca
ST
589 unsigned int
590 find_section_order_index(const std::string&);
591
e9552f7e
ST
592 // Read the sequence of input sections from the file specified with
593 // linker option --section-ordering-file.
6e9ba2ca
ST
594 void
595 read_layout_from_file();
596
6a74a719
ILT
597 // Layout an input reloc section when doing a relocatable link. The
598 // section is RELOC_SHNDX in OBJECT, with data in SHDR.
599 // DATA_SECTION is the reloc section to which it refers. RR is the
600 // relocatable information.
601 template<int size, bool big_endian>
602 Output_section*
6fa2a40b 603 layout_reloc(Sized_relobj_file<size, big_endian>* object,
6a74a719
ILT
604 unsigned int reloc_shndx,
605 const elfcpp::Shdr<size, big_endian>& shdr,
606 Output_section* data_section,
607 Relocatable_relocs* rr);
608
609 // Layout a group section when doing a relocatable link.
610 template<int size, bool big_endian>
611 void
612 layout_group(Symbol_table* symtab,
6fa2a40b 613 Sized_relobj_file<size, big_endian>* object,
6a74a719
ILT
614 unsigned int group_shndx,
615 const char* group_section_name,
616 const char* signature,
617 const elfcpp::Shdr<size, big_endian>& shdr,
8825ac63
ILT
618 elfcpp::Elf_Word flags,
619 std::vector<unsigned int>* shndxes);
6a74a719 620
730cdc88
ILT
621 // Like layout, only for exception frame sections. OBJECT is an
622 // object file. SYMBOLS is the contents of the symbol table
623 // section, with size SYMBOLS_SIZE. SYMBOL_NAMES is the contents of
624 // the symbol name section, with size SYMBOL_NAMES_SIZE. SHNDX is a
625 // .eh_frame section in OBJECT. SHDR is the section header.
626 // RELOC_SHNDX is the index of a relocation section which applies to
627 // this section, or 0 if none, or -1U if more than one. RELOC_TYPE
628 // is the type of the relocation section if there is one. This
629 // returns the output section, and sets *OFFSET to the offset.
630 template<int size, bool big_endian>
631 Output_section*
6fa2a40b 632 layout_eh_frame(Sized_relobj_file<size, big_endian>* object,
730cdc88
ILT
633 const unsigned char* symbols,
634 off_t symbols_size,
635 const unsigned char* symbol_names,
636 off_t symbol_names_size,
637 unsigned int shndx,
638 const elfcpp::Shdr<size, big_endian>& shdr,
639 unsigned int reloc_shndx, unsigned int reloc_type,
640 off_t* offset);
a2fb1b05 641
e1663197
CC
642 // After processing all input files, we call this to make sure that
643 // the optimized .eh_frame sections have been added to the output
644 // section.
645 void
646 finalize_eh_frame_section();
647
07a60597
ILT
648 // Add .eh_frame information for a PLT. The FDE must start with a
649 // 4-byte PC-relative reference to the start of the PLT, followed by
650 // a 4-byte size of PLT.
651 void
652 add_eh_frame_for_plt(Output_data* plt, const unsigned char* cie_data,
653 size_t cie_length, const unsigned char* fde_data,
654 size_t fde_length);
655
c1027032
CC
656 // Scan a .debug_info or .debug_types section, and add summary
657 // information to the .gdb_index section.
658 template<int size, bool big_endian>
659 void
660 add_to_gdb_index(bool is_type_unit,
661 Sized_relobj<size, big_endian>* object,
662 const unsigned char* symbols,
663 off_t symbols_size,
664 unsigned int shndx,
665 unsigned int reloc_shndx,
666 unsigned int reloc_type);
667
35cdfc9a
ILT
668 // Handle a GNU stack note. This is called once per input object
669 // file. SEEN_GNU_STACK is true if the object file has a
670 // .note.GNU-stack section. GNU_STACK_FLAGS is the section flags
671 // from that section if there was one.
672 void
83e17bd5
CC
673 layout_gnu_stack(bool seen_gnu_stack, uint64_t gnu_stack_flags,
674 const Object*);
35cdfc9a 675
ead1e424 676 // Add an Output_section_data to the layout. This is used for
22f0da72
ILT
677 // special sections like the GOT section. ORDER is where the
678 // section should wind up in the output segment. IS_RELRO is true
679 // for relro sections.
9f1d377b 680 Output_section*
ead1e424
ILT
681 add_output_section_data(const char* name, elfcpp::Elf_Word type,
682 elfcpp::Elf_Xword flags,
22f0da72
ILT
683 Output_section_data*, Output_section_order order,
684 bool is_relro);
1a2dff53
ILT
685
686 // Increase the size of the relro segment by this much.
687 void
688 increase_relro(unsigned int s)
689 { this->increase_relro_ += s; }
ead1e424 690
a3ad94ed
ILT
691 // Create dynamic sections if necessary.
692 void
9b07f471 693 create_initial_dynamic_sections(Symbol_table*);
a3ad94ed 694
bfd58944
ILT
695 // Define __start and __stop symbols for output sections.
696 void
9b07f471 697 define_section_symbols(Symbol_table*);
bfd58944 698
9c547ec3
ILT
699 // Create automatic note sections.
700 void
701 create_notes();
702
919ed24c
ILT
703 // Create sections for linker scripts.
704 void
705 create_script_sections()
706 { this->script_options_->create_script_sections(this); }
707
e5756efb
ILT
708 // Define symbols from any linker script.
709 void
9b07f471
ILT
710 define_script_symbols(Symbol_table* symtab)
711 { this->script_options_->add_symbols_to_table(symtab); }
e5756efb 712
755ab8af
ILT
713 // Define symbols for group signatures.
714 void
715 define_group_signatures(Symbol_table*);
716
61ba1cf9
ILT
717 // Return the Stringpool used for symbol names.
718 const Stringpool*
719 sympool() const
720 { return &this->sympool_; }
721
16649710
ILT
722 // Return the Stringpool used for dynamic symbol names and dynamic
723 // tags.
724 const Stringpool*
725 dynpool() const
726 { return &this->dynpool_; }
727
7d172687
ILT
728 // Return the .dynamic output section. This is only valid after the
729 // layout has been finalized.
730 Output_section*
731 dynamic_section() const
732 { return this->dynamic_section_; }
733
d491d34e
ILT
734 // Return the symtab_xindex section used to hold large section
735 // indexes for the normal symbol table.
736 Output_symtab_xindex*
737 symtab_xindex() const
738 { return this->symtab_xindex_; }
739
740 // Return the dynsym_xindex section used to hold large section
741 // indexes for the dynamic symbol table.
742 Output_symtab_xindex*
743 dynsym_xindex() const
744 { return this->dynsym_xindex_; }
745
a2fb1b05
ILT
746 // Return whether a section is a .gnu.linkonce section, given the
747 // section name.
748 static inline bool
749 is_linkonce(const char* name)
750 { return strncmp(name, ".gnu.linkonce", sizeof(".gnu.linkonce") - 1) == 0; }
751
d7bb5745
ILT
752 // Whether we have added an input section.
753 bool
754 have_added_input_section() const
755 { return this->have_added_input_section_; }
756
e94cf127
CC
757 // Return true if a section is a debugging section.
758 static inline bool
759 is_debug_info_section(const char* name)
760 {
761 // Debugging sections can only be recognized by name.
762 return (strncmp(name, ".debug", sizeof(".debug") - 1) == 0
2e702c99
RM
763 || strncmp(name, ".zdebug", sizeof(".zdebug") - 1) == 0
764 || strncmp(name, ".gnu.linkonce.wi.",
765 sizeof(".gnu.linkonce.wi.") - 1) == 0
766 || strncmp(name, ".line", sizeof(".line") - 1) == 0
cc203475
VR
767 || strncmp(name, ".stab", sizeof(".stab") - 1) == 0
768 || strncmp(name, ".pdr", sizeof(".pdr") - 1) == 0);
e94cf127
CC
769 }
770
5393d741
ILT
771 // Return true if RELOBJ is an input file whose base name matches
772 // FILE_NAME. The base name must have an extension of ".o", and
773 // must be exactly FILE_NAME.o or FILE_NAME, one character, ".o".
774 static bool
775 match_file_name(const Relobj* relobj, const char* file_name);
776
487b39df
ILT
777 // Return whether section SHNDX in RELOBJ is a .ctors/.dtors section
778 // with more than one word being mapped to a .init_array/.fini_array
779 // section.
780 bool
781 is_ctors_in_init_array(Relobj* relobj, unsigned int shndx) const;
782
8a4c0b0d
ILT
783 // Check if a comdat group or .gnu.linkonce section with the given
784 // NAME is selected for the link. If there is already a section,
785 // *KEPT_SECTION is set to point to the signature and the function
1ef4d87f
ILT
786 // returns false. Otherwise, OBJECT, SHNDX,IS_COMDAT, and
787 // IS_GROUP_NAME are recorded for this NAME in the layout object,
788 // *KEPT_SECTION is set to the internal copy and the function return
789 // false.
a2fb1b05 790 bool
2e702c99 791 find_or_add_kept_section(const std::string& name, Relobj* object,
1ef4d87f
ILT
792 unsigned int shndx, bool is_comdat,
793 bool is_group_name, Kept_section** kept_section);
a2fb1b05 794
54dc6425 795 // Finalize the layout after all the input sections have been added.
75f65a3e 796 off_t
8851ecca 797 finalize(const Input_objects*, Symbol_table*, Target*, const Task*);
17a1d0a9
ILT
798
799 // Return whether any sections require postprocessing.
800 bool
801 any_postprocessing_sections() const
802 { return this->any_postprocessing_sections_; }
54dc6425 803
e44fcf3b
ILT
804 // Return the size of the output file.
805 off_t
806 output_file_size() const
807 { return this->output_file_size_; }
808
16649710
ILT
809 // Return the TLS segment. This will return NULL if there isn't
810 // one.
92e059d8
ILT
811 Output_segment*
812 tls_segment() const
813 { return this->tls_segment_; }
814
16649710
ILT
815 // Return the normal symbol table.
816 Output_section*
817 symtab_section() const
818 {
819 gold_assert(this->symtab_section_ != NULL);
820 return this->symtab_section_;
821 }
822
bec5b579
CC
823 // Return the file offset of the normal symbol table.
824 off_t
825 symtab_section_offset() const;
826
886f533a
ILT
827 // Return the section index of the normal symbol tabl.e
828 unsigned int
829 symtab_section_shndx() const;
830
16649710
ILT
831 // Return the dynamic symbol table.
832 Output_section*
833 dynsym_section() const
834 {
835 gold_assert(this->dynsym_section_ != NULL);
836 return this->dynsym_section_;
837 }
838
839 // Return the dynamic tags.
840 Output_data_dynamic*
841 dynamic_data() const
842 { return this->dynamic_data_; }
843
730cdc88
ILT
844 // Write out the output sections.
845 void
846 write_output_sections(Output_file* of) const;
847
61ba1cf9
ILT
848 // Write out data not associated with an input file or the symbol
849 // table.
850 void
9025d29d 851 write_data(const Symbol_table*, Output_file*) const;
61ba1cf9 852
730cdc88
ILT
853 // Write out output sections which can not be written until all the
854 // input sections are complete.
855 void
27bc2bce 856 write_sections_after_input_sections(Output_file* of);
730cdc88 857
ead1e424
ILT
858 // Return an output section named NAME, or NULL if there is none.
859 Output_section*
860 find_output_section(const char* name) const;
861
862 // Return an output segment of type TYPE, with segment flags SET set
863 // and segment flags CLEAR clear. Return NULL if there is none.
864 Output_segment*
865 find_output_segment(elfcpp::PT type, elfcpp::Elf_Word set,
866 elfcpp::Elf_Word clear) const;
867
3802b2dd
ILT
868 // Return the number of segments we expect to produce.
869 size_t
870 expected_segment_count() const;
871
535890bb
ILT
872 // Set a flag to indicate that an object file uses the static TLS model.
873 void
874 set_has_static_tls()
875 { this->has_static_tls_ = true; }
876
877 // Return true if any object file uses the static TLS model.
878 bool
879 has_static_tls() const
880 { return this->has_static_tls_; }
881
e5756efb
ILT
882 // Return the options which may be set by a linker script.
883 Script_options*
884 script_options()
885 { return this->script_options_; }
886
887 const Script_options*
888 script_options() const
889 { return this->script_options_; }
d391083d 890
3ce2c28e
ILT
891 // Return the object managing inputs in incremental build. NULL in
892 // non-incremental builds.
893 Incremental_inputs*
09ec0418 894 incremental_inputs() const
3ce2c28e
ILT
895 { return this->incremental_inputs_; }
896
ea715a34
ILT
897 // For the target-specific code to add dynamic tags which are common
898 // to most targets.
899 void
900 add_target_dynamic_tags(bool use_rel, const Output_data* plt_got,
901 const Output_data* plt_rel,
3a44184e 902 const Output_data_reloc_generic* dyn_rel,
612a8d3d 903 bool add_debug, bool dynrel_includes_plt);
ea715a34 904
8ed814a9
ILT
905 // Compute and write out the build ID if needed.
906 void
9c7fe3c5 907 write_build_id(Output_file*, unsigned char*, size_t) const;
8ed814a9 908
516cb3d0
ILT
909 // Rewrite output file in binary format.
910 void
911 write_binary(Output_file* in) const;
912
7d9e3d98
ILT
913 // Print output sections to the map file.
914 void
915 print_to_mapfile(Mapfile*) const;
916
ad8f37d1
ILT
917 // Dump statistical information to stderr.
918 void
919 print_stats() const;
920
a445fddf 921 // A list of segments.
54dc6425
ILT
922
923 typedef std::vector<Output_segment*> Segment_list;
924
a445fddf 925 // A list of sections.
54dc6425 926
a3ad94ed 927 typedef std::vector<Output_section*> Section_list;
54dc6425
ILT
928
929 // The list of information to write out which is not attached to
930 // either a section or a segment.
a3ad94ed 931 typedef std::vector<Output_data*> Data_list;
54dc6425 932
a445fddf
ILT
933 // Store the allocated sections into the section list. This is used
934 // by the linker script code.
935 void
936 get_allocated_sections(Section_list*) const;
937
ec661b9d
AM
938 // Store the executable sections into the section list.
939 void
940 get_executable_sections(Section_list*) const;
941
919ed24c
ILT
942 // Make a section for a linker script to hold data.
943 Output_section*
1e5d2fb1
DK
944 make_output_section_for_script(const char* name,
945 Script_sections::Section_type section_type);
919ed24c 946
a445fddf
ILT
947 // Make a segment. This is used by the linker script code.
948 Output_segment*
949 make_output_segment(elfcpp::Elf_Word type, elfcpp::Elf_Word flags);
950
951 // Return the number of segments.
952 size_t
953 segment_count() const
954 { return this->segment_list_.size(); }
955
956 // Map from section flags to segment flags.
957 static elfcpp::Elf_Word
958 section_flags_to_segment(elfcpp::Elf_Xword flags);
959
154e0e9a
ILT
960 // Attach sections to segments.
961 void
2e702c99 962 attach_sections_to_segments(const Target*);
154e0e9a 963
20e6d0d6
DK
964 // For relaxation clean up, we need to know output section data created
965 // from a linker script.
966 void
967 new_output_section_data_from_script(Output_section_data* posd)
968 {
969 if (this->record_output_section_data_from_script_)
970 this->script_output_section_data_list_.push_back(posd);
971 }
972
c0a62865
DK
973 // Return section list.
974 const Section_list&
975 section_list() const
976 { return this->section_list_; }
977
b9b2ae8b
NC
978 // Returns TRUE iff NAME (an input section from RELOBJ) will
979 // be mapped to an output section that should be KEPT.
980 bool
981 keep_input_section(const Relobj*, const char*);
eb426534
RM
982
983 // Add a special output object that will be recreated afresh
984 // if there is another relaxation iteration.
985 void
986 add_relax_output(Output_data* data)
987 { this->relax_output_list_.push_back(data); }
988
989 // Clear out (and free) everything added by add_relax_output.
990 void
991 reset_relax_output();
992
a2fb1b05
ILT
993 private:
994 Layout(const Layout&);
995 Layout& operator=(const Layout&);
996
dff16297
ILT
997 // Mapping from input section names to output section names.
998 struct Section_name_mapping
a2fb1b05
ILT
999 {
1000 const char* from;
1001 int fromlen;
1002 const char* to;
ead1e424 1003 int tolen;
a2fb1b05 1004 };
dff16297
ILT
1005 static const Section_name_mapping section_name_mapping[];
1006 static const int section_name_mapping_count;
a2fb1b05 1007
755ab8af
ILT
1008 // During a relocatable link, a list of group sections and
1009 // signatures.
1010 struct Group_signature
1011 {
1012 // The group section.
1013 Output_section* section;
1014 // The signature.
1015 const char* signature;
1016
1017 Group_signature()
1018 : section(NULL), signature(NULL)
1019 { }
1020
1021 Group_signature(Output_section* sectiona, const char* signaturea)
1022 : section(sectiona), signature(signaturea)
1023 { }
1024 };
1025 typedef std::vector<Group_signature> Group_signatures;
1026
ef4ab7a8 1027 // Create a note section, filling in the header.
8ed814a9 1028 Output_section*
ca09d69a 1029 create_note(const char* name, int note_type, const char* section_name,
ef4ab7a8 1030 size_t descsz, bool allocate, size_t* trailing_padding);
8ed814a9 1031
ef4ab7a8 1032 // Create a note section for gold version.
4f211c8b 1033 void
35cdfc9a
ILT
1034 create_gold_note();
1035
1036 // Record whether the stack must be executable.
1037 void
9c547ec3 1038 create_executable_stack_info();
4f211c8b 1039
8ed814a9
ILT
1040 // Create a build ID note if needed.
1041 void
1042 create_build_id();
1043
1518dc8f
ILT
1044 // Link .stab and .stabstr sections.
1045 void
1046 link_stabs_sections();
1047
3ce2c28e
ILT
1048 // Create .gnu_incremental_inputs and .gnu_incremental_strtab sections needed
1049 // for the next run of incremental linking to check what has changed.
1050 void
09ec0418 1051 create_incremental_info_sections(Symbol_table*);
3ce2c28e 1052
75f65a3e
ILT
1053 // Find the first read-only PT_LOAD segment, creating one if
1054 // necessary.
1055 Output_segment*
2e702c99 1056 find_first_load_seg(const Target*);
75f65a3e 1057
7bf1f802
ILT
1058 // Count the local symbols in the regular symbol table and the dynamic
1059 // symbol table, and build the respective string pools.
1060 void
17a1d0a9 1061 count_local_symbols(const Task*, const Input_objects*);
7bf1f802 1062
54dc6425
ILT
1063 // Create the output sections for the symbol table.
1064 void
d491d34e
ILT
1065 create_symtab_sections(const Input_objects*, Symbol_table*,
1066 unsigned int, off_t*);
54dc6425 1067
75f65a3e
ILT
1068 // Create the .shstrtab section.
1069 Output_section*
1070 create_shstrtab();
1071
1072 // Create the section header table.
27bc2bce 1073 void
d491d34e 1074 create_shdrs(const Output_section* shstrtab_section, off_t*);
54dc6425 1075
dbe717ef
ILT
1076 // Create the dynamic symbol table.
1077 void
9b07f471
ILT
1078 create_dynamic_symtab(const Input_objects*, Symbol_table*,
1079 Output_section** pdynstr,
14b31740
ILT
1080 unsigned int* plocal_dynamic_count,
1081 std::vector<Symbol*>* pdynamic_symbols,
1082 Versions* versions);
dbe717ef 1083
7bf1f802
ILT
1084 // Assign offsets to each local portion of the dynamic symbol table.
1085 void
1086 assign_local_dynsym_offsets(const Input_objects*);
1087
a3ad94ed 1088 // Finish the .dynamic section and PT_DYNAMIC segment.
dbe717ef 1089 void
16649710 1090 finish_dynamic_section(const Input_objects*, const Symbol_table*);
dbe717ef 1091
f0ba79e2
ILT
1092 // Set the size of the _DYNAMIC symbol.
1093 void
1094 set_dynamic_symbol_size(const Symbol_table*);
1095
dbe717ef
ILT
1096 // Create the .interp section and PT_INTERP segment.
1097 void
1098 create_interp(const Target* target);
1099
14b31740
ILT
1100 // Create the version sections.
1101 void
9025d29d 1102 create_version_sections(const Versions*,
46fe1623 1103 const Symbol_table*,
14b31740
ILT
1104 unsigned int local_symcount,
1105 const std::vector<Symbol*>& dynamic_symbols,
1106 const Output_section* dynstr);
1107
1108 template<int size, bool big_endian>
1109 void
1110 sized_create_version_sections(const Versions* versions,
46fe1623 1111 const Symbol_table*,
14b31740
ILT
1112 unsigned int local_symcount,
1113 const std::vector<Symbol*>& dynamic_symbols,
7d1a9ebb 1114 const Output_section* dynstr);
14b31740 1115
a2fb1b05
ILT
1116 // Return whether to include this section in the link.
1117 template<int size, bool big_endian>
1118 bool
6fa2a40b 1119 include_section(Sized_relobj_file<size, big_endian>* object, const char* name,
a2fb1b05
ILT
1120 const elfcpp::Shdr<size, big_endian>&);
1121
ead1e424
ILT
1122 // Return the output section name to use given an input section
1123 // name. Set *PLEN to the length of the name. *PLEN must be
1124 // initialized to the length of NAME.
1125 static const char*
5393d741 1126 output_section_name(const Relobj*, const char* name, size_t* plen);
ead1e424 1127
d491d34e
ILT
1128 // Return the number of allocated output sections.
1129 size_t
1130 allocated_output_section_count() const;
1131
ead1e424
ILT
1132 // Return the output section for NAME, TYPE and FLAGS.
1133 Output_section*
f0641a0b 1134 get_output_section(const char* name, Stringpool::Key name_key,
f5c870d2 1135 elfcpp::Elf_Word type, elfcpp::Elf_Xword flags,
22f0da72 1136 Output_section_order order, bool is_relro);
a2fb1b05 1137
16164a6b
ST
1138 // Clear the input section flags that should not be copied to the
1139 // output section.
1140 elfcpp::Elf_Xword
1141 get_output_section_flags (elfcpp::Elf_Xword input_section_flags);
1142
a445fddf
ILT
1143 // Choose the output section for NAME in RELOBJ.
1144 Output_section*
1145 choose_output_section(const Relobj* relobj, const char* name,
1146 elfcpp::Elf_Word type, elfcpp::Elf_Xword flags,
22f0da72
ILT
1147 bool is_input_section, Output_section_order order,
1148 bool is_relro);
a445fddf 1149
a2fb1b05
ILT
1150 // Create a new Output_section.
1151 Output_section*
1152 make_output_section(const char* name, elfcpp::Elf_Word type,
22f0da72
ILT
1153 elfcpp::Elf_Xword flags, Output_section_order order,
1154 bool is_relro);
a2fb1b05 1155
4e2b1697
ILT
1156 // Attach a section to a segment.
1157 void
2e702c99 1158 attach_section_to_segment(const Target*, Output_section*);
4e2b1697 1159
22f0da72
ILT
1160 // Get section order.
1161 Output_section_order
1162 default_section_order(Output_section*, bool is_relro_local);
1163
154e0e9a 1164 // Attach an allocated section to a segment.
1650c4ff 1165 void
2e702c99 1166 attach_allocated_section_to_segment(const Target*, Output_section*);
1650c4ff 1167
07a60597
ILT
1168 // Make the .eh_frame section.
1169 Output_section*
1170 make_eh_frame_section(const Relobj*);
1171
dbe717ef
ILT
1172 // Set the final file offsets of all the segments.
1173 off_t
1174 set_segment_offsets(const Target*, Output_segment*, unsigned int* pshndx);
1175
6a74a719
ILT
1176 // Set the file offsets of the sections when doing a relocatable
1177 // link.
1178 off_t
1179 set_relocatable_section_offsets(Output_data*, unsigned int* pshndx);
1180
86887060 1181 // Set the final file offsets of all the sections not associated
9a0910c3
ILT
1182 // with a segment. We set section offsets in three passes: the
1183 // first handles all allocated sections, the second sections that
17a1d0a9
ILT
1184 // require postprocessing, and the last the late-bound STRTAB
1185 // sections (probably only shstrtab, which is the one we care about
1186 // because it holds section names).
9a0910c3
ILT
1187 enum Section_offset_pass
1188 {
1189 BEFORE_INPUT_SECTIONS_PASS,
17a1d0a9
ILT
1190 POSTPROCESSING_SECTIONS_PASS,
1191 STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS
9a0910c3 1192 };
dbe717ef 1193 off_t
9a0910c3
ILT
1194 set_section_offsets(off_t, Section_offset_pass pass);
1195
86887060
ILT
1196 // Set the final section indexes of all the sections not associated
1197 // with a segment. Returns the next unused index.
1198 unsigned int
1199 set_section_indexes(unsigned int pshndx);
dbe717ef 1200
a445fddf
ILT
1201 // Set the section addresses when using a script.
1202 Output_segment*
1203 set_section_addresses_from_script(Symbol_table*);
1204
20e6d0d6
DK
1205 // Find appropriate places or orphan sections in a script.
1206 void
1207 place_orphan_sections_in_script();
1208
a2fb1b05 1209 // Return whether SEG1 comes before SEG2 in the output file.
aecf301f 1210 bool
b3168e9d 1211 segment_precedes(const Output_segment* seg1, const Output_segment* seg2);
a2fb1b05 1212
2e702c99 1213 // Use to save and restore segments during relaxation.
20e6d0d6
DK
1214 typedef Unordered_map<const Output_segment*, const Output_segment*>
1215 Segment_states;
1216
1217 // Save states of current output segments.
1218 void
1219 save_segments(Segment_states*);
1220
1221 // Restore output segment states.
1222 void
1223 restore_segments(const Segment_states*);
1224
1225 // Clean up after relaxation so that it is possible to lay out the
1226 // sections and segments again.
1227 void
1228 clean_up_after_relaxation();
1229
1230 // Doing preparation work for relaxation. This is factored out to make
1231 // Layout::finalized a bit smaller and easier to read.
1232 void
1233 prepare_for_relaxation();
1234
1235 // Main body of the relaxation loop, which lays out the section.
1236 off_t
1237 relaxation_loop_body(int, Target*, Symbol_table*, Output_segment**,
1238 Output_segment*, Output_segment_headers*,
1239 Output_file_header*, unsigned int*);
1240
8a4c0b0d 1241 // A mapping used for kept comdats/.gnu.linkonce group signatures.
e94cf127 1242 typedef Unordered_map<std::string, Kept_section> Signatures;
a2fb1b05
ILT
1243
1244 // Mapping from input section name/type/flags to output section. We
1245 // use canonicalized strings here.
1246
f0641a0b 1247 typedef std::pair<Stringpool::Key,
a2fb1b05
ILT
1248 std::pair<elfcpp::Elf_Word, elfcpp::Elf_Xword> > Key;
1249
1250 struct Hash_key
1251 {
1252 size_t
1253 operator()(const Key& k) const;
1254 };
1255
1256 typedef Unordered_map<Key, Output_section*, Hash_key> Section_name_map;
1257
1258 // A comparison class for segments.
1259
aecf301f 1260 class Compare_segments
a2fb1b05 1261 {
aecf301f
ILT
1262 public:
1263 Compare_segments(Layout* layout)
1264 : layout_(layout)
1265 { }
1266
a2fb1b05
ILT
1267 bool
1268 operator()(const Output_segment* seg1, const Output_segment* seg2)
aecf301f
ILT
1269 { return this->layout_->segment_precedes(seg1, seg2); }
1270
1271 private:
1272 Layout* layout_;
a2fb1b05
ILT
1273 };
1274
20e6d0d6
DK
1275 typedef std::vector<Output_section_data*> Output_section_data_list;
1276
1277 // Debug checker class.
1278 class Relaxation_debug_check
1279 {
1280 public:
1281 Relaxation_debug_check()
1282 : section_infos_()
1283 { }
2e702c99 1284
20e6d0d6
DK
1285 // Check that sections and special data are in reset states.
1286 void
1287 check_output_data_for_reset_values(const Layout::Section_list&,
eb426534
RM
1288 const Layout::Data_list& special_outputs,
1289 const Layout::Data_list& relax_outputs);
2e702c99 1290
20e6d0d6
DK
1291 // Record information of a section list.
1292 void
1293 read_sections(const Layout::Section_list&);
1294
1295 // Verify a section list with recorded information.
1296 void
1297 verify_sections(const Layout::Section_list&);
2e702c99 1298
20e6d0d6
DK
1299 private:
1300 // Information we care about a section.
1301 struct Section_info
1302 {
1303 // Output section described by this.
1304 Output_section* output_section;
1305 // Load address.
1306 uint64_t address;
1307 // Data size.
1308 off_t data_size;
1309 // File offset.
1310 off_t offset;
1311 };
1312
1313 // Section information.
1314 std::vector<Section_info> section_infos_;
1315 };
1316
e55bde5e
ILT
1317 // The number of input files, for sizing tables.
1318 int number_of_input_files_;
e5756efb
ILT
1319 // Information set by scripts or by command line options.
1320 Script_options* script_options_;
a2fb1b05
ILT
1321 // The output section names.
1322 Stringpool namepool_;
75f65a3e
ILT
1323 // The output symbol names.
1324 Stringpool sympool_;
a3ad94ed
ILT
1325 // The dynamic strings, if needed.
1326 Stringpool dynpool_;
a2fb1b05
ILT
1327 // The list of group sections and linkonce sections which we have seen.
1328 Signatures signatures_;
1329 // The mapping from input section name/type/flags to output sections.
1330 Section_name_map section_name_map_;
1331 // The list of output segments.
1332 Segment_list segment_list_;
a3ad94ed
ILT
1333 // The list of output sections.
1334 Section_list section_list_;
a2fb1b05
ILT
1335 // The list of output sections which are not attached to any output
1336 // segment.
a3ad94ed
ILT
1337 Section_list unattached_section_list_;
1338 // The list of unattached Output_data objects which require special
1339 // handling because they are not Output_sections.
61ba1cf9 1340 Data_list special_output_list_;
eb426534
RM
1341 // Like special_output_list_, but cleared and recreated on each
1342 // iteration of relaxation.
1343 Data_list relax_output_list_;
27bc2bce
ILT
1344 // The section headers.
1345 Output_section_headers* section_headers_;
92e059d8
ILT
1346 // A pointer to the PT_TLS segment if there is one.
1347 Output_segment* tls_segment_;
9f1d377b
ILT
1348 // A pointer to the PT_GNU_RELRO segment if there is one.
1349 Output_segment* relro_segment_;
10b4f102
ILT
1350 // A pointer to the PT_INTERP segment if there is one.
1351 Output_segment* interp_segment_;
1a2dff53
ILT
1352 // A backend may increase the size of the PT_GNU_RELRO segment if
1353 // there is one. This is the amount to increase it by.
1354 unsigned int increase_relro_;
a3ad94ed
ILT
1355 // The SHT_SYMTAB output section.
1356 Output_section* symtab_section_;
d491d34e
ILT
1357 // The SHT_SYMTAB_SHNDX for the regular symbol table if there is one.
1358 Output_symtab_xindex* symtab_xindex_;
a3ad94ed
ILT
1359 // The SHT_DYNSYM output section if there is one.
1360 Output_section* dynsym_section_;
d491d34e
ILT
1361 // The SHT_SYMTAB_SHNDX for the dynamic symbol table if there is one.
1362 Output_symtab_xindex* dynsym_xindex_;
a3ad94ed
ILT
1363 // The SHT_DYNAMIC output section if there is one.
1364 Output_section* dynamic_section_;
f0ba79e2
ILT
1365 // The _DYNAMIC symbol if there is one.
1366 Symbol* dynamic_symbol_;
16649710
ILT
1367 // The dynamic data which goes into dynamic_section_.
1368 Output_data_dynamic* dynamic_data_;
730cdc88 1369 // The exception frame output section if there is one.
3151305a 1370 Output_section* eh_frame_section_;
730cdc88
ILT
1371 // The exception frame data for eh_frame_section_.
1372 Eh_frame* eh_frame_data_;
2c38906f
ILT
1373 // Whether we have added eh_frame_data_ to the .eh_frame section.
1374 bool added_eh_frame_data_;
730cdc88
ILT
1375 // The exception frame header output section if there is one.
1376 Output_section* eh_frame_hdr_section_;
c1027032
CC
1377 // The data for the .gdb_index section.
1378 Gdb_index* gdb_index_data_;
8ed814a9
ILT
1379 // The space for the build ID checksum if there is one.
1380 Output_section_data* build_id_note_;
62b01cb5
ILT
1381 // The output section containing dwarf abbreviations
1382 Output_reduced_debug_abbrev_section* debug_abbrev_;
1383 // The output section containing the dwarf debug info tree
1384 Output_reduced_debug_info_section* debug_info_;
755ab8af
ILT
1385 // A list of group sections and their signatures.
1386 Group_signatures group_signatures_;
e44fcf3b
ILT
1387 // The size of the output file.
1388 off_t output_file_size_;
d7bb5745
ILT
1389 // Whether we have added an input section to an output section.
1390 bool have_added_input_section_;
e55bde5e
ILT
1391 // Whether we have attached the sections to the segments.
1392 bool sections_are_attached_;
35cdfc9a
ILT
1393 // Whether we have seen an object file marked to require an
1394 // executable stack.
1395 bool input_requires_executable_stack_;
1396 // Whether we have seen at least one object file with an executable
1397 // stack marker.
1398 bool input_with_gnu_stack_note_;
1399 // Whether we have seen at least one object file without an
1400 // executable stack marker.
1401 bool input_without_gnu_stack_note_;
535890bb
ILT
1402 // Whether we have seen an object file that uses the static TLS model.
1403 bool has_static_tls_;
17a1d0a9
ILT
1404 // Whether any sections require postprocessing.
1405 bool any_postprocessing_sections_;
e55bde5e
ILT
1406 // Whether we have resized the signatures_ hash table.
1407 bool resized_signatures_;
1518dc8f
ILT
1408 // Whether we have created a .stab*str output section.
1409 bool have_stabstr_section_;
e9552f7e
ST
1410 // True if the input sections in the output sections should be sorted
1411 // as specified in a section ordering file.
1412 bool section_ordering_specified_;
16164a6b
ST
1413 // True if some input sections need to be mapped to a unique segment,
1414 // after being mapped to a unique Output_section.
1415 bool unique_segment_for_sections_specified_;
3ce2c28e
ILT
1416 // In incremental build, holds information check the inputs and build the
1417 // .gnu_incremental_inputs section.
1418 Incremental_inputs* incremental_inputs_;
20e6d0d6
DK
1419 // Whether we record output section data created in script
1420 bool record_output_section_data_from_script_;
9b547ce6 1421 // List of output data that needs to be removed at relaxation clean up.
20e6d0d6
DK
1422 Output_section_data_list script_output_section_data_list_;
1423 // Structure to save segment states before entering the relaxation loop.
1424 Segment_states* segment_states_;
1425 // A relaxation debug checker. We only create one when in debugging mode.
1426 Relaxation_debug_check* relaxation_debug_check_;
f0558624
ST
1427 // Plugins specify section_ordering using this map. This is set in
1428 // update_section_order in plugin.cc
1429 std::map<Section_id, unsigned int> section_order_map_;
16164a6b
ST
1430 // This maps an input section to a unique segment. This is done by first
1431 // placing such input sections in unique output sections and then mapping
1432 // the output section to a unique segment. Unique_segment_info stores
1433 // any additional flags and alignment of the new segment.
1434 Section_segment_map section_segment_map_;
6e9ba2ca
ST
1435 // Hash a pattern to its position in the section ordering file.
1436 Unordered_map<std::string, unsigned int> input_section_position_;
1437 // Vector of glob only patterns in the section_ordering file.
1438 std::vector<std::string> input_section_glob_;
cdc29364
CC
1439 // For incremental links, the base file to be modified.
1440 Incremental_binary* incremental_base_;
1441 // For incremental links, a list of free space within the file.
1442 Free_list free_list_;
61ba1cf9
ILT
1443};
1444
730cdc88
ILT
1445// This task handles writing out data in output sections which is not
1446// part of an input section, or which requires special handling. When
1447// this is done, it unblocks both output_sections_blocker and
1448// final_blocker.
1449
1450class Write_sections_task : public Task
1451{
1452 public:
1453 Write_sections_task(const Layout* layout, Output_file* of,
1454 Task_token* output_sections_blocker,
635aa30e 1455 Task_token* input_sections_blocker,
730cdc88
ILT
1456 Task_token* final_blocker)
1457 : layout_(layout), of_(of),
1458 output_sections_blocker_(output_sections_blocker),
635aa30e 1459 input_sections_blocker_(input_sections_blocker),
730cdc88
ILT
1460 final_blocker_(final_blocker)
1461 { }
1462
1463 // The standard Task methods.
1464
17a1d0a9
ILT
1465 Task_token*
1466 is_runnable();
730cdc88 1467
17a1d0a9
ILT
1468 void
1469 locks(Task_locker*);
730cdc88
ILT
1470
1471 void
1472 run(Workqueue*);
1473
c7912668
ILT
1474 std::string
1475 get_name() const
1476 { return "Write_sections_task"; }
1477
730cdc88
ILT
1478 private:
1479 class Write_sections_locker;
1480
1481 const Layout* layout_;
1482 Output_file* of_;
1483 Task_token* output_sections_blocker_;
635aa30e 1484 Task_token* input_sections_blocker_;
730cdc88
ILT
1485 Task_token* final_blocker_;
1486};
1487
61ba1cf9
ILT
1488// This task handles writing out data which is not part of a section
1489// or segment.
1490
1491class Write_data_task : public Task
1492{
1493 public:
a3ad94ed 1494 Write_data_task(const Layout* layout, const Symbol_table* symtab,
9025d29d
ILT
1495 Output_file* of, Task_token* final_blocker)
1496 : layout_(layout), symtab_(symtab), of_(of), final_blocker_(final_blocker)
61ba1cf9
ILT
1497 { }
1498
1499 // The standard Task methods.
1500
17a1d0a9
ILT
1501 Task_token*
1502 is_runnable();
61ba1cf9 1503
17a1d0a9
ILT
1504 void
1505 locks(Task_locker*);
61ba1cf9
ILT
1506
1507 void
1508 run(Workqueue*);
1509
c7912668
ILT
1510 std::string
1511 get_name() const
1512 { return "Write_data_task"; }
1513
61ba1cf9
ILT
1514 private:
1515 const Layout* layout_;
a3ad94ed 1516 const Symbol_table* symtab_;
61ba1cf9
ILT
1517 Output_file* of_;
1518 Task_token* final_blocker_;
1519};
1520
1521// This task handles writing out the global symbols.
1522
1523class Write_symbols_task : public Task
1524{
1525 public:
d491d34e 1526 Write_symbols_task(const Layout* layout, const Symbol_table* symtab,
43819297 1527 const Input_objects* /*input_objects*/,
16649710
ILT
1528 const Stringpool* sympool, const Stringpool* dynpool,
1529 Output_file* of, Task_token* final_blocker)
43819297 1530 : layout_(layout), symtab_(symtab),
d491d34e
ILT
1531 sympool_(sympool), dynpool_(dynpool), of_(of),
1532 final_blocker_(final_blocker)
61ba1cf9
ILT
1533 { }
1534
1535 // The standard Task methods.
1536
17a1d0a9
ILT
1537 Task_token*
1538 is_runnable();
61ba1cf9 1539
17a1d0a9
ILT
1540 void
1541 locks(Task_locker*);
61ba1cf9
ILT
1542
1543 void
1544 run(Workqueue*);
1545
c7912668
ILT
1546 std::string
1547 get_name() const
1548 { return "Write_symbols_task"; }
1549
61ba1cf9 1550 private:
d491d34e 1551 const Layout* layout_;
61ba1cf9 1552 const Symbol_table* symtab_;
61ba1cf9 1553 const Stringpool* sympool_;
16649710 1554 const Stringpool* dynpool_;
61ba1cf9
ILT
1555 Output_file* of_;
1556 Task_token* final_blocker_;
1557};
1558
730cdc88
ILT
1559// This task handles writing out data in output sections which can't
1560// be written out until all the input sections have been handled.
1561// This is for sections whose contents is based on the contents of
1562// other output sections.
1563
1564class Write_after_input_sections_task : public Task
1565{
1566 public:
27bc2bce 1567 Write_after_input_sections_task(Layout* layout, Output_file* of,
730cdc88
ILT
1568 Task_token* input_sections_blocker,
1569 Task_token* final_blocker)
1570 : layout_(layout), of_(of),
1571 input_sections_blocker_(input_sections_blocker),
1572 final_blocker_(final_blocker)
1573 { }
1574
1575 // The standard Task methods.
1576
17a1d0a9
ILT
1577 Task_token*
1578 is_runnable();
730cdc88 1579
17a1d0a9
ILT
1580 void
1581 locks(Task_locker*);
730cdc88
ILT
1582
1583 void
1584 run(Workqueue*);
1585
c7912668
ILT
1586 std::string
1587 get_name() const
1588 { return "Write_after_input_sections_task"; }
1589
730cdc88 1590 private:
27bc2bce 1591 Layout* layout_;
730cdc88
ILT
1592 Output_file* of_;
1593 Task_token* input_sections_blocker_;
1594 Task_token* final_blocker_;
1595};
1596
9c7fe3c5
CC
1597// This task function handles computation of the build id.
1598// When using --build-id=tree, it schedules the tasks that
1599// compute the hashes for each chunk of the file. This task
1600// cannot run until we have finalized the size of the output
1601// file, after the completion of Write_after_input_sections_task.
1602
1603class Build_id_task_runner : public Task_function_runner
1604{
1605 public:
1606 Build_id_task_runner(const General_options* options, const Layout* layout,
1607 Output_file* of)
1608 : options_(options), layout_(layout), of_(of)
1609 { }
1610
1611 // Run the operation.
1612 void
1613 run(Workqueue*, const Task*);
1614
1615 private:
1616 const General_options* options_;
1617 const Layout* layout_;
1618 Output_file* of_;
1619};
1620
92e059d8 1621// This task function handles closing the file.
61ba1cf9 1622
92e059d8 1623class Close_task_runner : public Task_function_runner
61ba1cf9
ILT
1624{
1625 public:
516cb3d0 1626 Close_task_runner(const General_options* options, const Layout* layout,
9c7fe3c5
CC
1627 Output_file* of, unsigned char* array_of_hashes,
1628 size_t size_of_hashes)
1629 : options_(options), layout_(layout), of_(of),
1630 array_of_hashes_(array_of_hashes), size_of_hashes_(size_of_hashes)
61ba1cf9
ILT
1631 { }
1632
92e059d8 1633 // Run the operation.
61ba1cf9 1634 void
17a1d0a9 1635 run(Workqueue*, const Task*);
61ba1cf9
ILT
1636
1637 private:
516cb3d0
ILT
1638 const General_options* options_;
1639 const Layout* layout_;
61ba1cf9 1640 Output_file* of_;
9c7fe3c5
CC
1641 unsigned char* const array_of_hashes_;
1642 const size_t size_of_hashes_;
a2fb1b05
ILT
1643};
1644
ead1e424
ILT
1645// A small helper function to align an address.
1646
1647inline uint64_t
1648align_address(uint64_t address, uint64_t addralign)
1649{
1650 if (addralign != 0)
1651 address = (address + addralign - 1) &~ (addralign - 1);
1652 return address;
1653}
1654
a2fb1b05
ILT
1655} // End namespace gold.
1656
1657#endif // !defined(GOLD_LAYOUT_H)
This page took 0.49986 seconds and 4 git commands to generate.