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