Commit | Line | Data |
---|---|---|
a2fb1b05 ILT |
1 | // layout.h -- lay out output file sections for gold -*- C++ -*- |
2 | ||
b3adc24a | 3 | // Copyright (C) 2006-2020 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 | ||
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; |
c1027032 | 61 | class Gdb_index; |
61ba1cf9 | 62 | class Target; |
09ec0418 | 63 | struct Timespec; |
a2fb1b05 | 64 | |
a2e47362 CC |
65 | // Return TRUE if SECNAME is the name of a compressed debug section. |
66 | extern bool | |
67 | is_compressed_debug_section(const char* secname); | |
68 | ||
dd68f8fa CC |
69 | // Return the name of the corresponding uncompressed debug section. |
70 | extern std::string | |
71 | corresponding_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 | ||
76 | class 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 | 169 | class 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 | 204 | class 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 | ||
392 | enum 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 | ||
779bdadb ST |
425 | // The hot text sections, prefixed by .text.hot. |
426 | ORDER_TEXT_HOT, | |
427 | ||
22f0da72 ILT |
428 | // The regular text sections. |
429 | ORDER_TEXT, | |
430 | ||
779bdadb ST |
431 | // The startup text sections, prefixed by .text.startup. |
432 | ORDER_TEXT_STARTUP, | |
433 | ||
434 | // The startup text sections, prefixed by .text.startup. | |
435 | ORDER_TEXT_EXIT, | |
436 | ||
437 | // The unlikely text sections, prefixed by .text.unlikely. | |
438 | ORDER_TEXT_UNLIKELY, | |
439 | ||
22f0da72 ILT |
440 | // The .fini section. |
441 | ORDER_FINI, | |
442 | ||
443 | // The read-only sections. | |
444 | ORDER_READONLY, | |
445 | ||
446 | // The exception frame sections. | |
447 | ORDER_EHFRAME, | |
448 | ||
449 | // The TLS sections come first in the data section. | |
450 | ORDER_TLS_DATA, | |
451 | ORDER_TLS_BSS, | |
452 | ||
453 | // Local RELRO (read-only after relocation) sections come before | |
454 | // non-local RELRO sections. This data will be fully resolved by | |
455 | // the prelinker. | |
456 | ORDER_RELRO_LOCAL, | |
457 | ||
458 | // Non-local RELRO sections are grouped together after local RELRO | |
459 | // sections. All RELRO sections must be adjacent so that they can | |
460 | // all be put into a PT_GNU_RELRO segment. | |
461 | ORDER_RELRO, | |
462 | ||
463 | // We permit marking exactly one output section as the last RELRO | |
464 | // section. We do this so that the read-only GOT can be adjacent to | |
465 | // the writable GOT. | |
466 | ORDER_RELRO_LAST, | |
467 | ||
468 | // Similarly, we permit marking exactly one output section as the | |
469 | // first non-RELRO section. | |
470 | ORDER_NON_RELRO_FIRST, | |
471 | ||
472 | // The regular data sections come after the RELRO sections. | |
473 | ORDER_DATA, | |
474 | ||
475 | // Large data sections normally go in large data segments. | |
476 | ORDER_LARGE_DATA, | |
477 | ||
478 | // Group writable notes so that we can have a single PT_NOTE | |
479 | // segment. | |
480 | ORDER_RW_NOTE, | |
481 | ||
482 | // The small data sections must be at the end of the data sections, | |
483 | // so that they can be adjacent to the small BSS sections. | |
484 | ORDER_SMALL_DATA, | |
485 | ||
486 | // The BSS sections start here. | |
487 | ||
488 | // The small BSS sections must be at the start of the BSS sections, | |
489 | // so that they can be adjacent to the small data sections. | |
490 | ORDER_SMALL_BSS, | |
491 | ||
492 | // The regular BSS sections. | |
493 | ORDER_BSS, | |
494 | ||
495 | // The large BSS sections come after the other BSS sections. | |
496 | ORDER_LARGE_BSS, | |
497 | ||
498 | // Maximum value. | |
499 | ORDER_MAX | |
500 | }; | |
501 | ||
a2fb1b05 ILT |
502 | // This class handles the details of laying out input sections. |
503 | ||
504 | class Layout | |
505 | { | |
506 | public: | |
e55bde5e | 507 | Layout(int number_of_input_files, Script_options*); |
54dc6425 | 508 | |
20e6d0d6 DK |
509 | ~Layout() |
510 | { | |
511 | delete this->relaxation_debug_check_; | |
512 | delete this->segment_states_; | |
513 | } | |
514 | ||
cdc29364 CC |
515 | // For incremental links, record the base file to be modified. |
516 | void | |
517 | set_incremental_base(Incremental_binary* base); | |
518 | ||
519 | Incremental_binary* | |
520 | incremental_base() | |
521 | { return this->incremental_base_; } | |
522 | ||
523 | // For incremental links, record the initial fixed layout of a section | |
524 | // from the base file, and return a pointer to the Output_section. | |
525 | template<int size, bool big_endian> | |
526 | Output_section* | |
527 | init_fixed_output_section(const char*, elfcpp::Shdr<size, big_endian>&); | |
528 | ||
ead1e424 ILT |
529 | // Given an input section SHNDX, named NAME, with data in SHDR, from |
530 | // the object file OBJECT, return the output section where this | |
730cdc88 ILT |
531 | // input section should go. RELOC_SHNDX is the index of a |
532 | // relocation section which applies to this section, or 0 if none, | |
533 | // or -1U if more than one. RELOC_TYPE is the type of the | |
534 | // relocation section if there is one. Set *OFFSET to the offset | |
535 | // within the output section. | |
a2fb1b05 ILT |
536 | template<int size, bool big_endian> |
537 | Output_section* | |
6fa2a40b | 538 | layout(Sized_relobj_file<size, big_endian> *object, unsigned int shndx, |
730cdc88 | 539 | const char* name, const elfcpp::Shdr<size, big_endian>& shdr, |
bce5a025 CC |
540 | unsigned int sh_type, unsigned int reloc_shndx, |
541 | unsigned int reloc_type, off_t* offset); | |
730cdc88 | 542 | |
f0558624 ST |
543 | std::map<Section_id, unsigned int>* |
544 | get_section_order_map() | |
545 | { return &this->section_order_map_; } | |
2e702c99 | 546 | |
16164a6b ST |
547 | // Struct to store segment info when mapping some input sections to |
548 | // unique segments using linker plugins. Mapping an input section to | |
549 | // a unique segment is done by first placing such input sections in | |
550 | // unique output sections and then mapping the output section to a | |
551 | // unique segment. NAME is the name of the output section. FLAGS | |
552 | // and ALIGN are the extra flags and alignment of the segment. | |
553 | struct Unique_segment_info | |
554 | { | |
5c3024d2 | 555 | // Identifier for the segment. ELF segments don't have names. This |
16164a6b ST |
556 | // is used as the name of the output section mapped to the segment. |
557 | const char* name; | |
558 | // Additional segment flags. | |
559 | uint64_t flags; | |
560 | // Segment alignment. | |
561 | uint64_t align; | |
562 | }; | |
563 | ||
564 | // Mapping from input section to segment. | |
565 | typedef std::map<Const_section_id, Unique_segment_info*> | |
566 | Section_segment_map; | |
567 | ||
568 | // Maps section SECN to SEGMENT s. | |
569 | void | |
570 | insert_section_segment_map(Const_section_id secn, Unique_segment_info *s); | |
28f2a4ac | 571 | |
edcac0c1 ILT |
572 | // Some input sections require special ordering, for compatibility |
573 | // with GNU ld. Given the name of an input section, return -1 if it | |
574 | // does not require special ordering. Otherwise, return the index | |
575 | // by which it should be ordered compared to other input sections | |
576 | // that require special ordering. | |
577 | static int | |
578 | special_ordering_of_input_section(const char* name); | |
579 | ||
e9552f7e ST |
580 | bool |
581 | is_section_ordering_specified() | |
582 | { return this->section_ordering_specified_; } | |
583 | ||
584 | void | |
585 | set_section_ordering_specified() | |
586 | { this->section_ordering_specified_ = true; } | |
587 | ||
16164a6b ST |
588 | bool |
589 | is_unique_segment_for_sections_specified() const | |
590 | { return this->unique_segment_for_sections_specified_; } | |
591 | ||
592 | void | |
593 | set_unique_segment_for_sections_specified() | |
594 | { this->unique_segment_for_sections_specified_ = true; } | |
595 | ||
cc5277b1 ML |
596 | bool |
597 | is_lto_slim_object () const | |
598 | { return this->lto_slim_object_; } | |
599 | ||
600 | void | |
601 | set_lto_slim_object () | |
602 | { this->lto_slim_object_ = true; } | |
603 | ||
cdc29364 CC |
604 | // For incremental updates, allocate a block of memory from the |
605 | // free list. Find a block starting at or after MINOFF. | |
606 | off_t | |
607 | allocate(off_t len, uint64_t align, off_t minoff) | |
608 | { return this->free_list_.allocate(len, align, minoff); } | |
609 | ||
6e9ba2ca ST |
610 | unsigned int |
611 | find_section_order_index(const std::string&); | |
612 | ||
e9552f7e ST |
613 | // Read the sequence of input sections from the file specified with |
614 | // linker option --section-ordering-file. | |
6e9ba2ca ST |
615 | void |
616 | read_layout_from_file(); | |
617 | ||
6a74a719 ILT |
618 | // Layout an input reloc section when doing a relocatable link. The |
619 | // section is RELOC_SHNDX in OBJECT, with data in SHDR. | |
620 | // DATA_SECTION is the reloc section to which it refers. RR is the | |
621 | // relocatable information. | |
622 | template<int size, bool big_endian> | |
623 | Output_section* | |
6fa2a40b | 624 | layout_reloc(Sized_relobj_file<size, big_endian>* object, |
6a74a719 ILT |
625 | unsigned int reloc_shndx, |
626 | const elfcpp::Shdr<size, big_endian>& shdr, | |
627 | Output_section* data_section, | |
628 | Relocatable_relocs* rr); | |
629 | ||
630 | // Layout a group section when doing a relocatable link. | |
631 | template<int size, bool big_endian> | |
632 | void | |
633 | layout_group(Symbol_table* symtab, | |
6fa2a40b | 634 | Sized_relobj_file<size, big_endian>* object, |
6a74a719 ILT |
635 | unsigned int group_shndx, |
636 | const char* group_section_name, | |
637 | const char* signature, | |
638 | const elfcpp::Shdr<size, big_endian>& shdr, | |
8825ac63 ILT |
639 | elfcpp::Elf_Word flags, |
640 | std::vector<unsigned int>* shndxes); | |
6a74a719 | 641 | |
730cdc88 ILT |
642 | // Like layout, only for exception frame sections. OBJECT is an |
643 | // object file. SYMBOLS is the contents of the symbol table | |
644 | // section, with size SYMBOLS_SIZE. SYMBOL_NAMES is the contents of | |
645 | // the symbol name section, with size SYMBOL_NAMES_SIZE. SHNDX is a | |
646 | // .eh_frame section in OBJECT. SHDR is the section header. | |
647 | // RELOC_SHNDX is the index of a relocation section which applies to | |
648 | // this section, or 0 if none, or -1U if more than one. RELOC_TYPE | |
649 | // is the type of the relocation section if there is one. This | |
650 | // returns the output section, and sets *OFFSET to the offset. | |
651 | template<int size, bool big_endian> | |
652 | Output_section* | |
6fa2a40b | 653 | layout_eh_frame(Sized_relobj_file<size, big_endian>* object, |
730cdc88 ILT |
654 | const unsigned char* symbols, |
655 | off_t symbols_size, | |
656 | const unsigned char* symbol_names, | |
657 | off_t symbol_names_size, | |
658 | unsigned int shndx, | |
659 | const elfcpp::Shdr<size, big_endian>& shdr, | |
660 | unsigned int reloc_shndx, unsigned int reloc_type, | |
661 | off_t* offset); | |
a2fb1b05 | 662 | |
e1663197 CC |
663 | // After processing all input files, we call this to make sure that |
664 | // the optimized .eh_frame sections have been added to the output | |
665 | // section. | |
666 | void | |
667 | finalize_eh_frame_section(); | |
668 | ||
07a60597 ILT |
669 | // Add .eh_frame information for a PLT. The FDE must start with a |
670 | // 4-byte PC-relative reference to the start of the PLT, followed by | |
671 | // a 4-byte size of PLT. | |
672 | void | |
673 | add_eh_frame_for_plt(Output_data* plt, const unsigned char* cie_data, | |
674 | size_t cie_length, const unsigned char* fde_data, | |
675 | size_t fde_length); | |
676 | ||
220f9906 | 677 | // Remove all post-map .eh_frame information for a PLT. |
be897fb7 AM |
678 | void |
679 | remove_eh_frame_for_plt(Output_data* plt, const unsigned char* cie_data, | |
220f9906 | 680 | size_t cie_length); |
be897fb7 | 681 | |
c1027032 CC |
682 | // Scan a .debug_info or .debug_types section, and add summary |
683 | // information to the .gdb_index section. | |
684 | template<int size, bool big_endian> | |
685 | void | |
686 | add_to_gdb_index(bool is_type_unit, | |
687 | Sized_relobj<size, big_endian>* object, | |
688 | const unsigned char* symbols, | |
689 | off_t symbols_size, | |
690 | unsigned int shndx, | |
691 | unsigned int reloc_shndx, | |
692 | unsigned int reloc_type); | |
693 | ||
35cdfc9a ILT |
694 | // Handle a GNU stack note. This is called once per input object |
695 | // file. SEEN_GNU_STACK is true if the object file has a | |
696 | // .note.GNU-stack section. GNU_STACK_FLAGS is the section flags | |
697 | // from that section if there was one. | |
698 | void | |
83e17bd5 CC |
699 | layout_gnu_stack(bool seen_gnu_stack, uint64_t gnu_stack_flags, |
700 | const Object*); | |
35cdfc9a | 701 | |
6c04fd9b CC |
702 | // Layout a .note.gnu.property section. |
703 | void | |
704 | layout_gnu_property(unsigned int note_type, | |
705 | unsigned int pr_type, | |
706 | size_t pr_datasz, | |
707 | const unsigned char* pr_data, | |
708 | const Object* object); | |
709 | ||
a2575bec CC |
710 | // Merge per-object properties with program properties. |
711 | void | |
712 | merge_gnu_properties(const Object* object); | |
713 | ||
714 | // Add a target-specific property for the output .note.gnu.property section. | |
715 | void | |
716 | add_gnu_property(unsigned int note_type, | |
717 | unsigned int pr_type, | |
718 | size_t pr_datasz, | |
719 | const unsigned char* pr_data); | |
720 | ||
ead1e424 | 721 | // Add an Output_section_data to the layout. This is used for |
22f0da72 ILT |
722 | // special sections like the GOT section. ORDER is where the |
723 | // section should wind up in the output segment. IS_RELRO is true | |
724 | // for relro sections. | |
9f1d377b | 725 | Output_section* |
ead1e424 ILT |
726 | add_output_section_data(const char* name, elfcpp::Elf_Word type, |
727 | elfcpp::Elf_Xword flags, | |
22f0da72 ILT |
728 | Output_section_data*, Output_section_order order, |
729 | bool is_relro); | |
1a2dff53 ILT |
730 | |
731 | // Increase the size of the relro segment by this much. | |
732 | void | |
733 | increase_relro(unsigned int s) | |
734 | { this->increase_relro_ += s; } | |
ead1e424 | 735 | |
a3ad94ed ILT |
736 | // Create dynamic sections if necessary. |
737 | void | |
9b07f471 | 738 | create_initial_dynamic_sections(Symbol_table*); |
a3ad94ed | 739 | |
bfd58944 ILT |
740 | // Define __start and __stop symbols for output sections. |
741 | void | |
9b07f471 | 742 | define_section_symbols(Symbol_table*); |
bfd58944 | 743 | |
9c547ec3 ILT |
744 | // Create automatic note sections. |
745 | void | |
746 | create_notes(); | |
747 | ||
919ed24c ILT |
748 | // Create sections for linker scripts. |
749 | void | |
750 | create_script_sections() | |
751 | { this->script_options_->create_script_sections(this); } | |
752 | ||
e5756efb ILT |
753 | // Define symbols from any linker script. |
754 | void | |
9b07f471 ILT |
755 | define_script_symbols(Symbol_table* symtab) |
756 | { this->script_options_->add_symbols_to_table(symtab); } | |
e5756efb | 757 | |
755ab8af ILT |
758 | // Define symbols for group signatures. |
759 | void | |
760 | define_group_signatures(Symbol_table*); | |
761 | ||
61ba1cf9 ILT |
762 | // Return the Stringpool used for symbol names. |
763 | const Stringpool* | |
764 | sympool() const | |
765 | { return &this->sympool_; } | |
766 | ||
16649710 ILT |
767 | // Return the Stringpool used for dynamic symbol names and dynamic |
768 | // tags. | |
769 | const Stringpool* | |
770 | dynpool() const | |
771 | { return &this->dynpool_; } | |
772 | ||
7d172687 ILT |
773 | // Return the .dynamic output section. This is only valid after the |
774 | // layout has been finalized. | |
775 | Output_section* | |
776 | dynamic_section() const | |
777 | { return this->dynamic_section_; } | |
778 | ||
d491d34e ILT |
779 | // Return the symtab_xindex section used to hold large section |
780 | // indexes for the normal symbol table. | |
781 | Output_symtab_xindex* | |
782 | symtab_xindex() const | |
783 | { return this->symtab_xindex_; } | |
784 | ||
785 | // Return the dynsym_xindex section used to hold large section | |
786 | // indexes for the dynamic symbol table. | |
787 | Output_symtab_xindex* | |
788 | dynsym_xindex() const | |
789 | { return this->dynsym_xindex_; } | |
790 | ||
a2fb1b05 ILT |
791 | // Return whether a section is a .gnu.linkonce section, given the |
792 | // section name. | |
793 | static inline bool | |
794 | is_linkonce(const char* name) | |
795 | { return strncmp(name, ".gnu.linkonce", sizeof(".gnu.linkonce") - 1) == 0; } | |
796 | ||
d7bb5745 ILT |
797 | // Whether we have added an input section. |
798 | bool | |
799 | have_added_input_section() const | |
800 | { return this->have_added_input_section_; } | |
801 | ||
e94cf127 CC |
802 | // Return true if a section is a debugging section. |
803 | static inline bool | |
804 | is_debug_info_section(const char* name) | |
805 | { | |
806 | // Debugging sections can only be recognized by name. | |
807 | return (strncmp(name, ".debug", sizeof(".debug") - 1) == 0 | |
2e702c99 RM |
808 | || strncmp(name, ".zdebug", sizeof(".zdebug") - 1) == 0 |
809 | || strncmp(name, ".gnu.linkonce.wi.", | |
810 | sizeof(".gnu.linkonce.wi.") - 1) == 0 | |
811 | || strncmp(name, ".line", sizeof(".line") - 1) == 0 | |
cc203475 VR |
812 | || strncmp(name, ".stab", sizeof(".stab") - 1) == 0 |
813 | || strncmp(name, ".pdr", sizeof(".pdr") - 1) == 0); | |
e94cf127 CC |
814 | } |
815 | ||
5393d741 ILT |
816 | // Return true if RELOBJ is an input file whose base name matches |
817 | // FILE_NAME. The base name must have an extension of ".o", and | |
818 | // must be exactly FILE_NAME.o or FILE_NAME, one character, ".o". | |
819 | static bool | |
820 | match_file_name(const Relobj* relobj, const char* file_name); | |
821 | ||
487b39df ILT |
822 | // Return whether section SHNDX in RELOBJ is a .ctors/.dtors section |
823 | // with more than one word being mapped to a .init_array/.fini_array | |
824 | // section. | |
825 | bool | |
826 | is_ctors_in_init_array(Relobj* relobj, unsigned int shndx) const; | |
827 | ||
8a4c0b0d ILT |
828 | // Check if a comdat group or .gnu.linkonce section with the given |
829 | // NAME is selected for the link. If there is already a section, | |
830 | // *KEPT_SECTION is set to point to the signature and the function | |
1ef4d87f ILT |
831 | // returns false. Otherwise, OBJECT, SHNDX,IS_COMDAT, and |
832 | // IS_GROUP_NAME are recorded for this NAME in the layout object, | |
833 | // *KEPT_SECTION is set to the internal copy and the function return | |
834 | // false. | |
a2fb1b05 | 835 | bool |
2e702c99 | 836 | find_or_add_kept_section(const std::string& name, Relobj* object, |
1ef4d87f ILT |
837 | unsigned int shndx, bool is_comdat, |
838 | bool is_group_name, Kept_section** kept_section); | |
a2fb1b05 | 839 | |
54dc6425 | 840 | // Finalize the layout after all the input sections have been added. |
75f65a3e | 841 | off_t |
8851ecca | 842 | finalize(const Input_objects*, Symbol_table*, Target*, const Task*); |
17a1d0a9 ILT |
843 | |
844 | // Return whether any sections require postprocessing. | |
845 | bool | |
846 | any_postprocessing_sections() const | |
847 | { return this->any_postprocessing_sections_; } | |
54dc6425 | 848 | |
e44fcf3b ILT |
849 | // Return the size of the output file. |
850 | off_t | |
851 | output_file_size() const | |
852 | { return this->output_file_size_; } | |
853 | ||
16649710 ILT |
854 | // Return the TLS segment. This will return NULL if there isn't |
855 | // one. | |
92e059d8 ILT |
856 | Output_segment* |
857 | tls_segment() const | |
858 | { return this->tls_segment_; } | |
859 | ||
16649710 ILT |
860 | // Return the normal symbol table. |
861 | Output_section* | |
862 | symtab_section() const | |
863 | { | |
864 | gold_assert(this->symtab_section_ != NULL); | |
865 | return this->symtab_section_; | |
866 | } | |
867 | ||
bec5b579 CC |
868 | // Return the file offset of the normal symbol table. |
869 | off_t | |
870 | symtab_section_offset() const; | |
871 | ||
886f533a ILT |
872 | // Return the section index of the normal symbol tabl.e |
873 | unsigned int | |
874 | symtab_section_shndx() const; | |
875 | ||
16649710 ILT |
876 | // Return the dynamic symbol table. |
877 | Output_section* | |
878 | dynsym_section() const | |
879 | { | |
880 | gold_assert(this->dynsym_section_ != NULL); | |
881 | return this->dynsym_section_; | |
882 | } | |
883 | ||
884 | // Return the dynamic tags. | |
885 | Output_data_dynamic* | |
886 | dynamic_data() const | |
887 | { return this->dynamic_data_; } | |
888 | ||
730cdc88 ILT |
889 | // Write out the output sections. |
890 | void | |
891 | write_output_sections(Output_file* of) const; | |
892 | ||
61ba1cf9 ILT |
893 | // Write out data not associated with an input file or the symbol |
894 | // table. | |
895 | void | |
9025d29d | 896 | write_data(const Symbol_table*, Output_file*) const; |
61ba1cf9 | 897 | |
730cdc88 ILT |
898 | // Write out output sections which can not be written until all the |
899 | // input sections are complete. | |
900 | void | |
27bc2bce | 901 | write_sections_after_input_sections(Output_file* of); |
730cdc88 | 902 | |
ead1e424 ILT |
903 | // Return an output section named NAME, or NULL if there is none. |
904 | Output_section* | |
905 | find_output_section(const char* name) const; | |
906 | ||
907 | // Return an output segment of type TYPE, with segment flags SET set | |
908 | // and segment flags CLEAR clear. Return NULL if there is none. | |
909 | Output_segment* | |
910 | find_output_segment(elfcpp::PT type, elfcpp::Elf_Word set, | |
911 | elfcpp::Elf_Word clear) const; | |
912 | ||
3802b2dd ILT |
913 | // Return the number of segments we expect to produce. |
914 | size_t | |
915 | expected_segment_count() const; | |
916 | ||
535890bb ILT |
917 | // Set a flag to indicate that an object file uses the static TLS model. |
918 | void | |
919 | set_has_static_tls() | |
920 | { this->has_static_tls_ = true; } | |
921 | ||
922 | // Return true if any object file uses the static TLS model. | |
923 | bool | |
924 | has_static_tls() const | |
925 | { return this->has_static_tls_; } | |
926 | ||
e5756efb ILT |
927 | // Return the options which may be set by a linker script. |
928 | Script_options* | |
929 | script_options() | |
930 | { return this->script_options_; } | |
931 | ||
932 | const Script_options* | |
933 | script_options() const | |
934 | { return this->script_options_; } | |
d391083d | 935 | |
3ce2c28e ILT |
936 | // Return the object managing inputs in incremental build. NULL in |
937 | // non-incremental builds. | |
938 | Incremental_inputs* | |
09ec0418 | 939 | incremental_inputs() const |
3ce2c28e ILT |
940 | { return this->incremental_inputs_; } |
941 | ||
ea715a34 ILT |
942 | // For the target-specific code to add dynamic tags which are common |
943 | // to most targets. | |
944 | void | |
945 | add_target_dynamic_tags(bool use_rel, const Output_data* plt_got, | |
946 | const Output_data* plt_rel, | |
3a44184e | 947 | const Output_data_reloc_generic* dyn_rel, |
612a8d3d | 948 | bool add_debug, bool dynrel_includes_plt); |
ea715a34 | 949 | |
dc1c8a16 CC |
950 | // Add a target-specific dynamic tag with constant value. |
951 | void | |
952 | add_target_specific_dynamic_tag(elfcpp::DT tag, unsigned int val); | |
953 | ||
8ed814a9 ILT |
954 | // Compute and write out the build ID if needed. |
955 | void | |
9c7fe3c5 | 956 | write_build_id(Output_file*, unsigned char*, size_t) const; |
8ed814a9 | 957 | |
516cb3d0 ILT |
958 | // Rewrite output file in binary format. |
959 | void | |
960 | write_binary(Output_file* in) const; | |
961 | ||
7d9e3d98 ILT |
962 | // Print output sections to the map file. |
963 | void | |
964 | print_to_mapfile(Mapfile*) const; | |
965 | ||
ad8f37d1 ILT |
966 | // Dump statistical information to stderr. |
967 | void | |
968 | print_stats() const; | |
969 | ||
a445fddf | 970 | // A list of segments. |
54dc6425 ILT |
971 | |
972 | typedef std::vector<Output_segment*> Segment_list; | |
973 | ||
a445fddf | 974 | // A list of sections. |
54dc6425 | 975 | |
a3ad94ed | 976 | typedef std::vector<Output_section*> Section_list; |
54dc6425 ILT |
977 | |
978 | // The list of information to write out which is not attached to | |
979 | // either a section or a segment. | |
a3ad94ed | 980 | typedef std::vector<Output_data*> Data_list; |
54dc6425 | 981 | |
a445fddf ILT |
982 | // Store the allocated sections into the section list. This is used |
983 | // by the linker script code. | |
984 | void | |
985 | get_allocated_sections(Section_list*) const; | |
986 | ||
ec661b9d AM |
987 | // Store the executable sections into the section list. |
988 | void | |
989 | get_executable_sections(Section_list*) const; | |
990 | ||
919ed24c ILT |
991 | // Make a section for a linker script to hold data. |
992 | Output_section* | |
1e5d2fb1 DK |
993 | make_output_section_for_script(const char* name, |
994 | Script_sections::Section_type section_type); | |
919ed24c | 995 | |
a445fddf ILT |
996 | // Make a segment. This is used by the linker script code. |
997 | Output_segment* | |
998 | make_output_segment(elfcpp::Elf_Word type, elfcpp::Elf_Word flags); | |
999 | ||
1000 | // Return the number of segments. | |
1001 | size_t | |
1002 | segment_count() const | |
1003 | { return this->segment_list_.size(); } | |
1004 | ||
1005 | // Map from section flags to segment flags. | |
1006 | static elfcpp::Elf_Word | |
1007 | section_flags_to_segment(elfcpp::Elf_Xword flags); | |
1008 | ||
154e0e9a ILT |
1009 | // Attach sections to segments. |
1010 | void | |
2e702c99 | 1011 | attach_sections_to_segments(const Target*); |
154e0e9a | 1012 | |
20e6d0d6 DK |
1013 | // For relaxation clean up, we need to know output section data created |
1014 | // from a linker script. | |
1015 | void | |
1016 | new_output_section_data_from_script(Output_section_data* posd) | |
1017 | { | |
1018 | if (this->record_output_section_data_from_script_) | |
1019 | this->script_output_section_data_list_.push_back(posd); | |
1020 | } | |
1021 | ||
c0a62865 DK |
1022 | // Return section list. |
1023 | const Section_list& | |
1024 | section_list() const | |
1025 | { return this->section_list_; } | |
1026 | ||
b9b2ae8b NC |
1027 | // Returns TRUE iff NAME (an input section from RELOBJ) will |
1028 | // be mapped to an output section that should be KEPT. | |
1029 | bool | |
1030 | keep_input_section(const Relobj*, const char*); | |
eb426534 RM |
1031 | |
1032 | // Add a special output object that will be recreated afresh | |
1033 | // if there is another relaxation iteration. | |
1034 | void | |
1035 | add_relax_output(Output_data* data) | |
1036 | { this->relax_output_list_.push_back(data); } | |
1037 | ||
1038 | // Clear out (and free) everything added by add_relax_output. | |
1039 | void | |
1040 | reset_relax_output(); | |
1041 | ||
a2fb1b05 ILT |
1042 | private: |
1043 | Layout(const Layout&); | |
1044 | Layout& operator=(const Layout&); | |
1045 | ||
dff16297 ILT |
1046 | // Mapping from input section names to output section names. |
1047 | struct Section_name_mapping | |
a2fb1b05 ILT |
1048 | { |
1049 | const char* from; | |
1050 | int fromlen; | |
1051 | const char* to; | |
ead1e424 | 1052 | int tolen; |
a2fb1b05 | 1053 | }; |
dff16297 ILT |
1054 | static const Section_name_mapping section_name_mapping[]; |
1055 | static const int section_name_mapping_count; | |
779bdadb ST |
1056 | static const Section_name_mapping text_section_name_mapping[]; |
1057 | static const int text_section_name_mapping_count; | |
1058 | ||
1059 | // Find section name NAME in map and return the mapped name if found | |
1060 | // with the length set in PLEN. | |
1061 | static const char* match_section_name(const Section_name_mapping* map, | |
1062 | const int count, const char* name, | |
1063 | size_t* plen); | |
a2fb1b05 | 1064 | |
755ab8af ILT |
1065 | // During a relocatable link, a list of group sections and |
1066 | // signatures. | |
1067 | struct Group_signature | |
1068 | { | |
1069 | // The group section. | |
1070 | Output_section* section; | |
1071 | // The signature. | |
1072 | const char* signature; | |
1073 | ||
1074 | Group_signature() | |
1075 | : section(NULL), signature(NULL) | |
1076 | { } | |
1077 | ||
1078 | Group_signature(Output_section* sectiona, const char* signaturea) | |
1079 | : section(sectiona), signature(signaturea) | |
1080 | { } | |
1081 | }; | |
1082 | typedef std::vector<Group_signature> Group_signatures; | |
1083 | ||
ef4ab7a8 | 1084 | // Create a note section, filling in the header. |
8ed814a9 | 1085 | Output_section* |
ca09d69a | 1086 | create_note(const char* name, int note_type, const char* section_name, |
ef4ab7a8 | 1087 | size_t descsz, bool allocate, size_t* trailing_padding); |
8ed814a9 | 1088 | |
6c04fd9b CC |
1089 | // Create a note section for gnu program properties. |
1090 | void | |
1091 | create_gnu_properties_note(); | |
1092 | ||
ef4ab7a8 | 1093 | // Create a note section for gold version. |
4f211c8b | 1094 | void |
35cdfc9a ILT |
1095 | create_gold_note(); |
1096 | ||
1130c90e | 1097 | // Record whether the stack must be executable, and a user-supplied size. |
35cdfc9a | 1098 | void |
1130c90e | 1099 | create_stack_segment(); |
4f211c8b | 1100 | |
8ed814a9 ILT |
1101 | // Create a build ID note if needed. |
1102 | void | |
1103 | create_build_id(); | |
1104 | ||
1518dc8f ILT |
1105 | // Link .stab and .stabstr sections. |
1106 | void | |
1107 | link_stabs_sections(); | |
1108 | ||
3ce2c28e ILT |
1109 | // Create .gnu_incremental_inputs and .gnu_incremental_strtab sections needed |
1110 | // for the next run of incremental linking to check what has changed. | |
1111 | void | |
09ec0418 | 1112 | create_incremental_info_sections(Symbol_table*); |
3ce2c28e | 1113 | |
75f65a3e ILT |
1114 | // Find the first read-only PT_LOAD segment, creating one if |
1115 | // necessary. | |
1116 | Output_segment* | |
2e702c99 | 1117 | find_first_load_seg(const Target*); |
75f65a3e | 1118 | |
7bf1f802 ILT |
1119 | // Count the local symbols in the regular symbol table and the dynamic |
1120 | // symbol table, and build the respective string pools. | |
1121 | void | |
17a1d0a9 | 1122 | count_local_symbols(const Task*, const Input_objects*); |
7bf1f802 | 1123 | |
54dc6425 ILT |
1124 | // Create the output sections for the symbol table. |
1125 | void | |
d491d34e | 1126 | create_symtab_sections(const Input_objects*, Symbol_table*, |
c4d5a762 | 1127 | unsigned int, off_t*, unsigned int); |
54dc6425 | 1128 | |
75f65a3e ILT |
1129 | // Create the .shstrtab section. |
1130 | Output_section* | |
1131 | create_shstrtab(); | |
1132 | ||
1133 | // Create the section header table. | |
27bc2bce | 1134 | void |
d491d34e | 1135 | create_shdrs(const Output_section* shstrtab_section, off_t*); |
54dc6425 | 1136 | |
dbe717ef ILT |
1137 | // Create the dynamic symbol table. |
1138 | void | |
9b07f471 ILT |
1139 | create_dynamic_symtab(const Input_objects*, Symbol_table*, |
1140 | Output_section** pdynstr, | |
14b31740 | 1141 | unsigned int* plocal_dynamic_count, |
c4d5a762 | 1142 | unsigned int* pforced_local_dynamic_count, |
14b31740 ILT |
1143 | std::vector<Symbol*>* pdynamic_symbols, |
1144 | Versions* versions); | |
dbe717ef | 1145 | |
7bf1f802 ILT |
1146 | // Assign offsets to each local portion of the dynamic symbol table. |
1147 | void | |
1148 | assign_local_dynsym_offsets(const Input_objects*); | |
1149 | ||
a3ad94ed | 1150 | // Finish the .dynamic section and PT_DYNAMIC segment. |
dbe717ef | 1151 | void |
16649710 | 1152 | finish_dynamic_section(const Input_objects*, const Symbol_table*); |
dbe717ef | 1153 | |
f0ba79e2 ILT |
1154 | // Set the size of the _DYNAMIC symbol. |
1155 | void | |
1156 | set_dynamic_symbol_size(const Symbol_table*); | |
1157 | ||
dbe717ef ILT |
1158 | // Create the .interp section and PT_INTERP segment. |
1159 | void | |
1160 | create_interp(const Target* target); | |
1161 | ||
14b31740 ILT |
1162 | // Create the version sections. |
1163 | void | |
9025d29d | 1164 | create_version_sections(const Versions*, |
46fe1623 | 1165 | const Symbol_table*, |
14b31740 ILT |
1166 | unsigned int local_symcount, |
1167 | const std::vector<Symbol*>& dynamic_symbols, | |
1168 | const Output_section* dynstr); | |
1169 | ||
1170 | template<int size, bool big_endian> | |
1171 | void | |
1172 | sized_create_version_sections(const Versions* versions, | |
46fe1623 | 1173 | const Symbol_table*, |
14b31740 ILT |
1174 | unsigned int local_symcount, |
1175 | const std::vector<Symbol*>& dynamic_symbols, | |
7d1a9ebb | 1176 | const Output_section* dynstr); |
14b31740 | 1177 | |
a2fb1b05 ILT |
1178 | // Return whether to include this section in the link. |
1179 | template<int size, bool big_endian> | |
1180 | bool | |
6fa2a40b | 1181 | include_section(Sized_relobj_file<size, big_endian>* object, const char* name, |
a2fb1b05 ILT |
1182 | const elfcpp::Shdr<size, big_endian>&); |
1183 | ||
ead1e424 ILT |
1184 | // Return the output section name to use given an input section |
1185 | // name. Set *PLEN to the length of the name. *PLEN must be | |
1186 | // initialized to the length of NAME. | |
1187 | static const char* | |
5393d741 | 1188 | output_section_name(const Relobj*, const char* name, size_t* plen); |
ead1e424 | 1189 | |
d491d34e ILT |
1190 | // Return the number of allocated output sections. |
1191 | size_t | |
1192 | allocated_output_section_count() const; | |
1193 | ||
ead1e424 ILT |
1194 | // Return the output section for NAME, TYPE and FLAGS. |
1195 | Output_section* | |
f0641a0b | 1196 | get_output_section(const char* name, Stringpool::Key name_key, |
f5c870d2 | 1197 | elfcpp::Elf_Word type, elfcpp::Elf_Xword flags, |
22f0da72 | 1198 | Output_section_order order, bool is_relro); |
a2fb1b05 | 1199 | |
16164a6b ST |
1200 | // Clear the input section flags that should not be copied to the |
1201 | // output section. | |
1202 | elfcpp::Elf_Xword | |
1203 | get_output_section_flags (elfcpp::Elf_Xword input_section_flags); | |
1204 | ||
a445fddf ILT |
1205 | // Choose the output section for NAME in RELOBJ. |
1206 | Output_section* | |
1207 | choose_output_section(const Relobj* relobj, const char* name, | |
1208 | elfcpp::Elf_Word type, elfcpp::Elf_Xword flags, | |
22f0da72 | 1209 | bool is_input_section, Output_section_order order, |
412ffd83 | 1210 | bool is_relro, bool is_reloc, bool match_input_spec); |
a445fddf | 1211 | |
a2fb1b05 ILT |
1212 | // Create a new Output_section. |
1213 | Output_section* | |
1214 | make_output_section(const char* name, elfcpp::Elf_Word type, | |
22f0da72 ILT |
1215 | elfcpp::Elf_Xword flags, Output_section_order order, |
1216 | bool is_relro); | |
a2fb1b05 | 1217 | |
4e2b1697 ILT |
1218 | // Attach a section to a segment. |
1219 | void | |
2e702c99 | 1220 | attach_section_to_segment(const Target*, Output_section*); |
4e2b1697 | 1221 | |
22f0da72 ILT |
1222 | // Get section order. |
1223 | Output_section_order | |
1224 | default_section_order(Output_section*, bool is_relro_local); | |
1225 | ||
154e0e9a | 1226 | // Attach an allocated section to a segment. |
1650c4ff | 1227 | void |
2e702c99 | 1228 | attach_allocated_section_to_segment(const Target*, Output_section*); |
1650c4ff | 1229 | |
07a60597 ILT |
1230 | // Make the .eh_frame section. |
1231 | Output_section* | |
1232 | make_eh_frame_section(const Relobj*); | |
1233 | ||
dbe717ef ILT |
1234 | // Set the final file offsets of all the segments. |
1235 | off_t | |
1236 | set_segment_offsets(const Target*, Output_segment*, unsigned int* pshndx); | |
1237 | ||
6a74a719 ILT |
1238 | // Set the file offsets of the sections when doing a relocatable |
1239 | // link. | |
1240 | off_t | |
1241 | set_relocatable_section_offsets(Output_data*, unsigned int* pshndx); | |
1242 | ||
86887060 | 1243 | // Set the final file offsets of all the sections not associated |
9a0910c3 ILT |
1244 | // with a segment. We set section offsets in three passes: the |
1245 | // first handles all allocated sections, the second sections that | |
17a1d0a9 ILT |
1246 | // require postprocessing, and the last the late-bound STRTAB |
1247 | // sections (probably only shstrtab, which is the one we care about | |
1248 | // because it holds section names). | |
9a0910c3 ILT |
1249 | enum Section_offset_pass |
1250 | { | |
1251 | BEFORE_INPUT_SECTIONS_PASS, | |
17a1d0a9 ILT |
1252 | POSTPROCESSING_SECTIONS_PASS, |
1253 | STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS | |
9a0910c3 | 1254 | }; |
dbe717ef | 1255 | off_t |
9a0910c3 ILT |
1256 | set_section_offsets(off_t, Section_offset_pass pass); |
1257 | ||
86887060 ILT |
1258 | // Set the final section indexes of all the sections not associated |
1259 | // with a segment. Returns the next unused index. | |
1260 | unsigned int | |
1261 | set_section_indexes(unsigned int pshndx); | |
dbe717ef | 1262 | |
a445fddf ILT |
1263 | // Set the section addresses when using a script. |
1264 | Output_segment* | |
1265 | set_section_addresses_from_script(Symbol_table*); | |
1266 | ||
20e6d0d6 DK |
1267 | // Find appropriate places or orphan sections in a script. |
1268 | void | |
1269 | place_orphan_sections_in_script(); | |
1270 | ||
a2fb1b05 | 1271 | // Return whether SEG1 comes before SEG2 in the output file. |
aecf301f | 1272 | bool |
b3168e9d | 1273 | segment_precedes(const Output_segment* seg1, const Output_segment* seg2); |
a2fb1b05 | 1274 | |
2e702c99 | 1275 | // Use to save and restore segments during relaxation. |
20e6d0d6 DK |
1276 | typedef Unordered_map<const Output_segment*, const Output_segment*> |
1277 | Segment_states; | |
1278 | ||
1279 | // Save states of current output segments. | |
1280 | void | |
1281 | save_segments(Segment_states*); | |
1282 | ||
1283 | // Restore output segment states. | |
1284 | void | |
1285 | restore_segments(const Segment_states*); | |
1286 | ||
1287 | // Clean up after relaxation so that it is possible to lay out the | |
1288 | // sections and segments again. | |
1289 | void | |
1290 | clean_up_after_relaxation(); | |
1291 | ||
1292 | // Doing preparation work for relaxation. This is factored out to make | |
1293 | // Layout::finalized a bit smaller and easier to read. | |
1294 | void | |
1295 | prepare_for_relaxation(); | |
1296 | ||
1297 | // Main body of the relaxation loop, which lays out the section. | |
1298 | off_t | |
1299 | relaxation_loop_body(int, Target*, Symbol_table*, Output_segment**, | |
1300 | Output_segment*, Output_segment_headers*, | |
1301 | Output_file_header*, unsigned int*); | |
1302 | ||
8a4c0b0d | 1303 | // A mapping used for kept comdats/.gnu.linkonce group signatures. |
e94cf127 | 1304 | typedef Unordered_map<std::string, Kept_section> Signatures; |
a2fb1b05 ILT |
1305 | |
1306 | // Mapping from input section name/type/flags to output section. We | |
1307 | // use canonicalized strings here. | |
1308 | ||
f0641a0b | 1309 | typedef std::pair<Stringpool::Key, |
a2fb1b05 ILT |
1310 | std::pair<elfcpp::Elf_Word, elfcpp::Elf_Xword> > Key; |
1311 | ||
1312 | struct Hash_key | |
1313 | { | |
1314 | size_t | |
1315 | operator()(const Key& k) const; | |
1316 | }; | |
1317 | ||
1318 | typedef Unordered_map<Key, Output_section*, Hash_key> Section_name_map; | |
1319 | ||
1320 | // A comparison class for segments. | |
1321 | ||
aecf301f | 1322 | class Compare_segments |
a2fb1b05 | 1323 | { |
aecf301f ILT |
1324 | public: |
1325 | Compare_segments(Layout* layout) | |
1326 | : layout_(layout) | |
1327 | { } | |
1328 | ||
a2fb1b05 ILT |
1329 | bool |
1330 | operator()(const Output_segment* seg1, const Output_segment* seg2) | |
aecf301f ILT |
1331 | { return this->layout_->segment_precedes(seg1, seg2); } |
1332 | ||
1333 | private: | |
1334 | Layout* layout_; | |
a2fb1b05 ILT |
1335 | }; |
1336 | ||
20e6d0d6 DK |
1337 | typedef std::vector<Output_section_data*> Output_section_data_list; |
1338 | ||
1339 | // Debug checker class. | |
1340 | class Relaxation_debug_check | |
1341 | { | |
1342 | public: | |
1343 | Relaxation_debug_check() | |
1344 | : section_infos_() | |
1345 | { } | |
2e702c99 | 1346 | |
20e6d0d6 DK |
1347 | // Check that sections and special data are in reset states. |
1348 | void | |
1349 | check_output_data_for_reset_values(const Layout::Section_list&, | |
eb426534 RM |
1350 | const Layout::Data_list& special_outputs, |
1351 | const Layout::Data_list& relax_outputs); | |
2e702c99 | 1352 | |
20e6d0d6 DK |
1353 | // Record information of a section list. |
1354 | void | |
1355 | read_sections(const Layout::Section_list&); | |
1356 | ||
1357 | // Verify a section list with recorded information. | |
1358 | void | |
1359 | verify_sections(const Layout::Section_list&); | |
2e702c99 | 1360 | |
20e6d0d6 DK |
1361 | private: |
1362 | // Information we care about a section. | |
1363 | struct Section_info | |
1364 | { | |
1365 | // Output section described by this. | |
1366 | Output_section* output_section; | |
1367 | // Load address. | |
1368 | uint64_t address; | |
1369 | // Data size. | |
1370 | off_t data_size; | |
1371 | // File offset. | |
1372 | off_t offset; | |
1373 | }; | |
1374 | ||
1375 | // Section information. | |
1376 | std::vector<Section_info> section_infos_; | |
1377 | }; | |
1378 | ||
a2575bec | 1379 | // Program properties from .note.gnu.property sections. |
6c04fd9b CC |
1380 | struct Gnu_property |
1381 | { | |
1382 | size_t pr_datasz; | |
1383 | unsigned char* pr_data; | |
1384 | }; | |
1385 | typedef std::map<unsigned int, Gnu_property> Gnu_properties; | |
1386 | ||
e55bde5e ILT |
1387 | // The number of input files, for sizing tables. |
1388 | int number_of_input_files_; | |
e5756efb ILT |
1389 | // Information set by scripts or by command line options. |
1390 | Script_options* script_options_; | |
a2fb1b05 ILT |
1391 | // The output section names. |
1392 | Stringpool namepool_; | |
75f65a3e ILT |
1393 | // The output symbol names. |
1394 | Stringpool sympool_; | |
a3ad94ed ILT |
1395 | // The dynamic strings, if needed. |
1396 | Stringpool dynpool_; | |
a2fb1b05 ILT |
1397 | // The list of group sections and linkonce sections which we have seen. |
1398 | Signatures signatures_; | |
1399 | // The mapping from input section name/type/flags to output sections. | |
1400 | Section_name_map section_name_map_; | |
1401 | // The list of output segments. | |
1402 | Segment_list segment_list_; | |
a3ad94ed ILT |
1403 | // The list of output sections. |
1404 | Section_list section_list_; | |
a2fb1b05 ILT |
1405 | // The list of output sections which are not attached to any output |
1406 | // segment. | |
a3ad94ed ILT |
1407 | Section_list unattached_section_list_; |
1408 | // The list of unattached Output_data objects which require special | |
1409 | // handling because they are not Output_sections. | |
61ba1cf9 | 1410 | Data_list special_output_list_; |
eb426534 RM |
1411 | // Like special_output_list_, but cleared and recreated on each |
1412 | // iteration of relaxation. | |
1413 | Data_list relax_output_list_; | |
27bc2bce ILT |
1414 | // The section headers. |
1415 | Output_section_headers* section_headers_; | |
92e059d8 ILT |
1416 | // A pointer to the PT_TLS segment if there is one. |
1417 | Output_segment* tls_segment_; | |
9f1d377b ILT |
1418 | // A pointer to the PT_GNU_RELRO segment if there is one. |
1419 | Output_segment* relro_segment_; | |
10b4f102 ILT |
1420 | // A pointer to the PT_INTERP segment if there is one. |
1421 | Output_segment* interp_segment_; | |
1a2dff53 ILT |
1422 | // A backend may increase the size of the PT_GNU_RELRO segment if |
1423 | // there is one. This is the amount to increase it by. | |
1424 | unsigned int increase_relro_; | |
a3ad94ed ILT |
1425 | // The SHT_SYMTAB output section. |
1426 | Output_section* symtab_section_; | |
d491d34e ILT |
1427 | // The SHT_SYMTAB_SHNDX for the regular symbol table if there is one. |
1428 | Output_symtab_xindex* symtab_xindex_; | |
a3ad94ed ILT |
1429 | // The SHT_DYNSYM output section if there is one. |
1430 | Output_section* dynsym_section_; | |
d491d34e ILT |
1431 | // The SHT_SYMTAB_SHNDX for the dynamic symbol table if there is one. |
1432 | Output_symtab_xindex* dynsym_xindex_; | |
a3ad94ed ILT |
1433 | // The SHT_DYNAMIC output section if there is one. |
1434 | Output_section* dynamic_section_; | |
f0ba79e2 ILT |
1435 | // The _DYNAMIC symbol if there is one. |
1436 | Symbol* dynamic_symbol_; | |
16649710 ILT |
1437 | // The dynamic data which goes into dynamic_section_. |
1438 | Output_data_dynamic* dynamic_data_; | |
730cdc88 | 1439 | // The exception frame output section if there is one. |
3151305a | 1440 | Output_section* eh_frame_section_; |
730cdc88 ILT |
1441 | // The exception frame data for eh_frame_section_. |
1442 | Eh_frame* eh_frame_data_; | |
2c38906f ILT |
1443 | // Whether we have added eh_frame_data_ to the .eh_frame section. |
1444 | bool added_eh_frame_data_; | |
730cdc88 ILT |
1445 | // The exception frame header output section if there is one. |
1446 | Output_section* eh_frame_hdr_section_; | |
c1027032 CC |
1447 | // The data for the .gdb_index section. |
1448 | Gdb_index* gdb_index_data_; | |
8ed814a9 ILT |
1449 | // The space for the build ID checksum if there is one. |
1450 | Output_section_data* build_id_note_; | |
62b01cb5 ILT |
1451 | // The output section containing dwarf abbreviations |
1452 | Output_reduced_debug_abbrev_section* debug_abbrev_; | |
1453 | // The output section containing the dwarf debug info tree | |
1454 | Output_reduced_debug_info_section* debug_info_; | |
755ab8af ILT |
1455 | // A list of group sections and their signatures. |
1456 | Group_signatures group_signatures_; | |
e44fcf3b ILT |
1457 | // The size of the output file. |
1458 | off_t output_file_size_; | |
d7bb5745 ILT |
1459 | // Whether we have added an input section to an output section. |
1460 | bool have_added_input_section_; | |
e55bde5e ILT |
1461 | // Whether we have attached the sections to the segments. |
1462 | bool sections_are_attached_; | |
35cdfc9a ILT |
1463 | // Whether we have seen an object file marked to require an |
1464 | // executable stack. | |
1465 | bool input_requires_executable_stack_; | |
1466 | // Whether we have seen at least one object file with an executable | |
1467 | // stack marker. | |
1468 | bool input_with_gnu_stack_note_; | |
1469 | // Whether we have seen at least one object file without an | |
1470 | // executable stack marker. | |
1471 | bool input_without_gnu_stack_note_; | |
535890bb ILT |
1472 | // Whether we have seen an object file that uses the static TLS model. |
1473 | bool has_static_tls_; | |
17a1d0a9 ILT |
1474 | // Whether any sections require postprocessing. |
1475 | bool any_postprocessing_sections_; | |
e55bde5e ILT |
1476 | // Whether we have resized the signatures_ hash table. |
1477 | bool resized_signatures_; | |
1518dc8f ILT |
1478 | // Whether we have created a .stab*str output section. |
1479 | bool have_stabstr_section_; | |
e9552f7e ST |
1480 | // True if the input sections in the output sections should be sorted |
1481 | // as specified in a section ordering file. | |
1482 | bool section_ordering_specified_; | |
16164a6b ST |
1483 | // True if some input sections need to be mapped to a unique segment, |
1484 | // after being mapped to a unique Output_section. | |
1485 | bool unique_segment_for_sections_specified_; | |
3ce2c28e ILT |
1486 | // In incremental build, holds information check the inputs and build the |
1487 | // .gnu_incremental_inputs section. | |
1488 | Incremental_inputs* incremental_inputs_; | |
20e6d0d6 DK |
1489 | // Whether we record output section data created in script |
1490 | bool record_output_section_data_from_script_; | |
cc5277b1 ML |
1491 | // Set if this is a slim LTO object not loaded with a compiler plugin |
1492 | bool lto_slim_object_; | |
9b547ce6 | 1493 | // List of output data that needs to be removed at relaxation clean up. |
20e6d0d6 DK |
1494 | Output_section_data_list script_output_section_data_list_; |
1495 | // Structure to save segment states before entering the relaxation loop. | |
1496 | Segment_states* segment_states_; | |
1497 | // A relaxation debug checker. We only create one when in debugging mode. | |
1498 | Relaxation_debug_check* relaxation_debug_check_; | |
f0558624 ST |
1499 | // Plugins specify section_ordering using this map. This is set in |
1500 | // update_section_order in plugin.cc | |
1501 | std::map<Section_id, unsigned int> section_order_map_; | |
16164a6b ST |
1502 | // This maps an input section to a unique segment. This is done by first |
1503 | // placing such input sections in unique output sections and then mapping | |
1504 | // the output section to a unique segment. Unique_segment_info stores | |
1505 | // any additional flags and alignment of the new segment. | |
1506 | Section_segment_map section_segment_map_; | |
6e9ba2ca ST |
1507 | // Hash a pattern to its position in the section ordering file. |
1508 | Unordered_map<std::string, unsigned int> input_section_position_; | |
1509 | // Vector of glob only patterns in the section_ordering file. | |
1510 | std::vector<std::string> input_section_glob_; | |
cdc29364 CC |
1511 | // For incremental links, the base file to be modified. |
1512 | Incremental_binary* incremental_base_; | |
1513 | // For incremental links, a list of free space within the file. | |
1514 | Free_list free_list_; | |
6c04fd9b CC |
1515 | // Program properties. |
1516 | Gnu_properties gnu_properties_; | |
61ba1cf9 ILT |
1517 | }; |
1518 | ||
730cdc88 ILT |
1519 | // This task handles writing out data in output sections which is not |
1520 | // part of an input section, or which requires special handling. When | |
1521 | // this is done, it unblocks both output_sections_blocker and | |
1522 | // final_blocker. | |
1523 | ||
1524 | class Write_sections_task : public Task | |
1525 | { | |
1526 | public: | |
1527 | Write_sections_task(const Layout* layout, Output_file* of, | |
1528 | Task_token* output_sections_blocker, | |
635aa30e | 1529 | Task_token* input_sections_blocker, |
730cdc88 ILT |
1530 | Task_token* final_blocker) |
1531 | : layout_(layout), of_(of), | |
1532 | output_sections_blocker_(output_sections_blocker), | |
635aa30e | 1533 | input_sections_blocker_(input_sections_blocker), |
730cdc88 ILT |
1534 | final_blocker_(final_blocker) |
1535 | { } | |
1536 | ||
1537 | // The standard Task methods. | |
1538 | ||
17a1d0a9 ILT |
1539 | Task_token* |
1540 | is_runnable(); | |
730cdc88 | 1541 | |
17a1d0a9 ILT |
1542 | void |
1543 | locks(Task_locker*); | |
730cdc88 ILT |
1544 | |
1545 | void | |
1546 | run(Workqueue*); | |
1547 | ||
c7912668 ILT |
1548 | std::string |
1549 | get_name() const | |
1550 | { return "Write_sections_task"; } | |
1551 | ||
730cdc88 ILT |
1552 | private: |
1553 | class Write_sections_locker; | |
1554 | ||
1555 | const Layout* layout_; | |
1556 | Output_file* of_; | |
1557 | Task_token* output_sections_blocker_; | |
635aa30e | 1558 | Task_token* input_sections_blocker_; |
730cdc88 ILT |
1559 | Task_token* final_blocker_; |
1560 | }; | |
1561 | ||
61ba1cf9 ILT |
1562 | // This task handles writing out data which is not part of a section |
1563 | // or segment. | |
1564 | ||
1565 | class Write_data_task : public Task | |
1566 | { | |
1567 | public: | |
a3ad94ed | 1568 | Write_data_task(const Layout* layout, const Symbol_table* symtab, |
9025d29d ILT |
1569 | Output_file* of, Task_token* final_blocker) |
1570 | : layout_(layout), symtab_(symtab), of_(of), final_blocker_(final_blocker) | |
61ba1cf9 ILT |
1571 | { } |
1572 | ||
1573 | // The standard Task methods. | |
1574 | ||
17a1d0a9 ILT |
1575 | Task_token* |
1576 | is_runnable(); | |
61ba1cf9 | 1577 | |
17a1d0a9 ILT |
1578 | void |
1579 | locks(Task_locker*); | |
61ba1cf9 ILT |
1580 | |
1581 | void | |
1582 | run(Workqueue*); | |
1583 | ||
c7912668 ILT |
1584 | std::string |
1585 | get_name() const | |
1586 | { return "Write_data_task"; } | |
1587 | ||
61ba1cf9 ILT |
1588 | private: |
1589 | const Layout* layout_; | |
a3ad94ed | 1590 | const Symbol_table* symtab_; |
61ba1cf9 ILT |
1591 | Output_file* of_; |
1592 | Task_token* final_blocker_; | |
1593 | }; | |
1594 | ||
1595 | // This task handles writing out the global symbols. | |
1596 | ||
1597 | class Write_symbols_task : public Task | |
1598 | { | |
1599 | public: | |
d491d34e | 1600 | Write_symbols_task(const Layout* layout, const Symbol_table* symtab, |
43819297 | 1601 | const Input_objects* /*input_objects*/, |
16649710 ILT |
1602 | const Stringpool* sympool, const Stringpool* dynpool, |
1603 | Output_file* of, Task_token* final_blocker) | |
43819297 | 1604 | : layout_(layout), symtab_(symtab), |
d491d34e ILT |
1605 | sympool_(sympool), dynpool_(dynpool), of_(of), |
1606 | final_blocker_(final_blocker) | |
61ba1cf9 ILT |
1607 | { } |
1608 | ||
1609 | // The standard Task methods. | |
1610 | ||
17a1d0a9 ILT |
1611 | Task_token* |
1612 | is_runnable(); | |
61ba1cf9 | 1613 | |
17a1d0a9 ILT |
1614 | void |
1615 | locks(Task_locker*); | |
61ba1cf9 ILT |
1616 | |
1617 | void | |
1618 | run(Workqueue*); | |
1619 | ||
c7912668 ILT |
1620 | std::string |
1621 | get_name() const | |
1622 | { return "Write_symbols_task"; } | |
1623 | ||
61ba1cf9 | 1624 | private: |
d491d34e | 1625 | const Layout* layout_; |
61ba1cf9 | 1626 | const Symbol_table* symtab_; |
61ba1cf9 | 1627 | const Stringpool* sympool_; |
16649710 | 1628 | const Stringpool* dynpool_; |
61ba1cf9 ILT |
1629 | Output_file* of_; |
1630 | Task_token* final_blocker_; | |
1631 | }; | |
1632 | ||
730cdc88 ILT |
1633 | // This task handles writing out data in output sections which can't |
1634 | // be written out until all the input sections have been handled. | |
1635 | // This is for sections whose contents is based on the contents of | |
1636 | // other output sections. | |
1637 | ||
1638 | class Write_after_input_sections_task : public Task | |
1639 | { | |
1640 | public: | |
27bc2bce | 1641 | Write_after_input_sections_task(Layout* layout, Output_file* of, |
730cdc88 ILT |
1642 | Task_token* input_sections_blocker, |
1643 | Task_token* final_blocker) | |
1644 | : layout_(layout), of_(of), | |
1645 | input_sections_blocker_(input_sections_blocker), | |
1646 | final_blocker_(final_blocker) | |
1647 | { } | |
1648 | ||
1649 | // The standard Task methods. | |
1650 | ||
17a1d0a9 ILT |
1651 | Task_token* |
1652 | is_runnable(); | |
730cdc88 | 1653 | |
17a1d0a9 ILT |
1654 | void |
1655 | locks(Task_locker*); | |
730cdc88 ILT |
1656 | |
1657 | void | |
1658 | run(Workqueue*); | |
1659 | ||
c7912668 ILT |
1660 | std::string |
1661 | get_name() const | |
1662 | { return "Write_after_input_sections_task"; } | |
1663 | ||
730cdc88 | 1664 | private: |
27bc2bce | 1665 | Layout* layout_; |
730cdc88 ILT |
1666 | Output_file* of_; |
1667 | Task_token* input_sections_blocker_; | |
1668 | Task_token* final_blocker_; | |
1669 | }; | |
1670 | ||
9c7fe3c5 CC |
1671 | // This task function handles computation of the build id. |
1672 | // When using --build-id=tree, it schedules the tasks that | |
1673 | // compute the hashes for each chunk of the file. This task | |
1674 | // cannot run until we have finalized the size of the output | |
1675 | // file, after the completion of Write_after_input_sections_task. | |
1676 | ||
1677 | class Build_id_task_runner : public Task_function_runner | |
1678 | { | |
1679 | public: | |
1680 | Build_id_task_runner(const General_options* options, const Layout* layout, | |
1681 | Output_file* of) | |
1682 | : options_(options), layout_(layout), of_(of) | |
1683 | { } | |
1684 | ||
1685 | // Run the operation. | |
1686 | void | |
1687 | run(Workqueue*, const Task*); | |
1688 | ||
1689 | private: | |
1690 | const General_options* options_; | |
1691 | const Layout* layout_; | |
1692 | Output_file* of_; | |
1693 | }; | |
1694 | ||
92e059d8 | 1695 | // This task function handles closing the file. |
61ba1cf9 | 1696 | |
92e059d8 | 1697 | class Close_task_runner : public Task_function_runner |
61ba1cf9 ILT |
1698 | { |
1699 | public: | |
516cb3d0 | 1700 | Close_task_runner(const General_options* options, const Layout* layout, |
9c7fe3c5 CC |
1701 | Output_file* of, unsigned char* array_of_hashes, |
1702 | size_t size_of_hashes) | |
1703 | : options_(options), layout_(layout), of_(of), | |
1704 | array_of_hashes_(array_of_hashes), size_of_hashes_(size_of_hashes) | |
61ba1cf9 ILT |
1705 | { } |
1706 | ||
92e059d8 | 1707 | // Run the operation. |
61ba1cf9 | 1708 | void |
17a1d0a9 | 1709 | run(Workqueue*, const Task*); |
61ba1cf9 ILT |
1710 | |
1711 | private: | |
516cb3d0 ILT |
1712 | const General_options* options_; |
1713 | const Layout* layout_; | |
61ba1cf9 | 1714 | Output_file* of_; |
9c7fe3c5 CC |
1715 | unsigned char* const array_of_hashes_; |
1716 | const size_t size_of_hashes_; | |
a2fb1b05 ILT |
1717 | }; |
1718 | ||
ead1e424 ILT |
1719 | // A small helper function to align an address. |
1720 | ||
1721 | inline uint64_t | |
1722 | align_address(uint64_t address, uint64_t addralign) | |
1723 | { | |
1724 | if (addralign != 0) | |
1725 | address = (address + addralign - 1) &~ (addralign - 1); | |
1726 | return address; | |
1727 | } | |
1728 | ||
a2fb1b05 ILT |
1729 | } // End namespace gold. |
1730 | ||
1731 | #endif // !defined(GOLD_LAYOUT_H) |