]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gold/output.h
* dwarf2read.c (struct dwarf2_cu): Tweak comment.
[thirdparty/binutils-gdb.git] / gold / output.h
CommitLineData
a2fb1b05
ILT
1// output.h -- manage the output file for gold -*- C++ -*-
2
88597d34 3// Copyright 2006, 2007, 2008, 2009, 2010, 2011 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_OUTPUT_H
24#define GOLD_OUTPUT_H
25
26#include <list>
ead1e424 27#include <vector>
a2fb1b05
ILT
28
29#include "elfcpp.h"
7d9e3d98 30#include "mapfile.h"
54dc6425 31#include "layout.h"
c06b7b0b 32#include "reloc-types.h"
a2fb1b05
ILT
33
34namespace gold
35{
36
61ba1cf9 37class General_options;
a2fb1b05 38class Object;
a3ad94ed 39class Symbol;
a2fb1b05 40class Output_file;
c0a62865 41class Output_merge_base;
c06b7b0b 42class Output_section;
6a74a719 43class Relocatable_relocs;
a3ad94ed 44class Target;
54dc6425
ILT
45template<int size, bool big_endian>
46class Sized_target;
c06b7b0b
ILT
47template<int size, bool big_endian>
48class Sized_relobj;
6fa2a40b
CC
49template<int size, bool big_endian>
50class Sized_relobj_file;
54dc6425
ILT
51
52// An abtract class for data which has to go into the output file.
a2fb1b05
ILT
53
54class Output_data
55{
56 public:
27bc2bce
ILT
57 explicit Output_data()
58 : address_(0), data_size_(0), offset_(-1),
59 is_address_valid_(false), is_data_size_valid_(false),
20e6d0d6 60 is_offset_valid_(false), is_data_size_fixed_(false),
22f0da72 61 has_dynamic_reloc_(false)
a2fb1b05
ILT
62 { }
63
64 virtual
65 ~Output_data();
66
27bc2bce
ILT
67 // Return the address. For allocated sections, this is only valid
68 // after Layout::finalize is finished.
75f65a3e
ILT
69 uint64_t
70 address() const
27bc2bce
ILT
71 {
72 gold_assert(this->is_address_valid_);
73 return this->address_;
74 }
75f65a3e 75
27bc2bce
ILT
76 // Return the size of the data. For allocated sections, this must
77 // be valid after Layout::finalize calls set_address, but need not
78 // be valid before then.
a2fb1b05 79 off_t
75f65a3e 80 data_size() const
27bc2bce
ILT
81 {
82 gold_assert(this->is_data_size_valid_);
83 return this->data_size_;
84 }
75f65a3e 85
cdc29364
CC
86 // Get the current data size.
87 off_t
88 current_data_size() const
89 { return this->current_data_size_for_child(); }
90
20e6d0d6
DK
91 // Return true if data size is fixed.
92 bool
93 is_data_size_fixed() const
94 { return this->is_data_size_fixed_; }
34171bc5 95
ead1e424 96 // Return the file offset. This is only valid after
27bc2bce
ILT
97 // Layout::finalize is finished. For some non-allocated sections,
98 // it may not be valid until near the end of the link.
75f65a3e
ILT
99 off_t
100 offset() const
27bc2bce
ILT
101 {
102 gold_assert(this->is_offset_valid_);
103 return this->offset_;
104 }
75f65a3e 105
ec661b9d
AM
106 // Reset the address, file offset and data size. This essentially
107 // disables the sanity testing about duplicate and unknown settings.
a445fddf
ILT
108 void
109 reset_address_and_file_offset()
110 {
111 this->is_address_valid_ = false;
112 this->is_offset_valid_ = false;
20e6d0d6
DK
113 if (!this->is_data_size_fixed_)
114 this->is_data_size_valid_ = false;
a445fddf
ILT
115 this->do_reset_address_and_file_offset();
116 }
117
ec661b9d
AM
118 // As above, but just for data size.
119 void
120 reset_data_size()
121 {
122 if (!this->is_data_size_fixed_)
123 this->is_data_size_valid_ = false;
124 }
125
20e6d0d6
DK
126 // Return true if address and file offset already have reset values. In
127 // other words, calling reset_address_and_file_offset will not change them.
128 bool
129 address_and_file_offset_have_reset_values() const
130 { return this->do_address_and_file_offset_have_reset_values(); }
131
75f65a3e
ILT
132 // Return the required alignment.
133 uint64_t
134 addralign() const
135 { return this->do_addralign(); }
136
a445fddf
ILT
137 // Return whether this has a load address.
138 bool
139 has_load_address() const
140 { return this->do_has_load_address(); }
141
142 // Return the load address.
143 uint64_t
144 load_address() const
145 { return this->do_load_address(); }
146
75f65a3e
ILT
147 // Return whether this is an Output_section.
148 bool
149 is_section() const
150 { return this->do_is_section(); }
151
152 // Return whether this is an Output_section of the specified type.
153 bool
154 is_section_type(elfcpp::Elf_Word stt) const
155 { return this->do_is_section_type(stt); }
156
157 // Return whether this is an Output_section with the specified flag
158 // set.
159 bool
160 is_section_flag_set(elfcpp::Elf_Xword shf) const
161 { return this->do_is_section_flag_set(shf); }
162
77e65537
ILT
163 // Return the output section that this goes in, if there is one.
164 Output_section*
165 output_section()
166 { return this->do_output_section(); }
167
ea715a34
ILT
168 const Output_section*
169 output_section() const
170 { return this->do_output_section(); }
171
ead1e424
ILT
172 // Return the output section index, if there is an output section.
173 unsigned int
174 out_shndx() const
175 { return this->do_out_shndx(); }
176
177 // Set the output section index, if this is an output section.
178 void
179 set_out_shndx(unsigned int shndx)
180 { this->do_set_out_shndx(shndx); }
181
27bc2bce
ILT
182 // Set the address and file offset of this data, and finalize the
183 // size of the data. This is called during Layout::finalize for
184 // allocated sections.
75f65a3e 185 void
27bc2bce
ILT
186 set_address_and_file_offset(uint64_t addr, off_t off)
187 {
188 this->set_address(addr);
189 this->set_file_offset(off);
190 this->finalize_data_size();
191 }
192
193 // Set the address.
194 void
195 set_address(uint64_t addr)
196 {
197 gold_assert(!this->is_address_valid_);
198 this->address_ = addr;
199 this->is_address_valid_ = true;
200 }
201
202 // Set the file offset.
203 void
204 set_file_offset(off_t off)
205 {
206 gold_assert(!this->is_offset_valid_);
207 this->offset_ = off;
208 this->is_offset_valid_ = true;
209 }
210
cdc29364
CC
211 // Update the data size without finalizing it.
212 void
213 pre_finalize_data_size()
214 {
215 if (!this->is_data_size_valid_)
216 {
217 // Tell the child class to update the data size.
218 this->update_data_size();
219 }
220 }
221
27bc2bce
ILT
222 // Finalize the data size.
223 void
224 finalize_data_size()
225 {
226 if (!this->is_data_size_valid_)
227 {
228 // Tell the child class to set the data size.
229 this->set_final_data_size();
230 gold_assert(this->is_data_size_valid_);
231 }
232 }
75f65a3e 233
7bf1f802
ILT
234 // Set the TLS offset. Called only for SHT_TLS sections.
235 void
236 set_tls_offset(uint64_t tls_base)
237 { this->do_set_tls_offset(tls_base); }
238
239 // Return the TLS offset, relative to the base of the TLS segment.
240 // Valid only for SHT_TLS sections.
241 uint64_t
242 tls_offset() const
243 { return this->do_tls_offset(); }
244
ead1e424
ILT
245 // Write the data to the output file. This is called after
246 // Layout::finalize is complete.
75f65a3e
ILT
247 void
248 write(Output_file* file)
249 { this->do_write(file); }
a2fb1b05 250
27bc2bce
ILT
251 // This is called by Layout::finalize to note that the sizes of
252 // allocated sections must now be fixed.
a3ad94ed
ILT
253 static void
254 layout_complete()
27bc2bce 255 { Output_data::allocated_sizes_are_fixed = true; }
a3ad94ed 256
730cdc88
ILT
257 // Used to check that layout has been done.
258 static bool
259 is_layout_complete()
27bc2bce 260 { return Output_data::allocated_sizes_are_fixed; }
730cdc88 261
22f0da72 262 // Note that a dynamic reloc has been applied to this data.
4f4c5f80
ILT
263 void
264 add_dynamic_reloc()
22f0da72 265 { this->has_dynamic_reloc_ = true; }
4f4c5f80 266
22f0da72
ILT
267 // Return whether a dynamic reloc has been applied.
268 bool
269 has_dynamic_reloc() const
270 { return this->has_dynamic_reloc_; }
4f4c5f80 271
a9a60db6
ILT
272 // Whether the address is valid.
273 bool
274 is_address_valid() const
275 { return this->is_address_valid_; }
276
277 // Whether the file offset is valid.
278 bool
279 is_offset_valid() const
280 { return this->is_offset_valid_; }
281
282 // Whether the data size is valid.
283 bool
284 is_data_size_valid() const
285 { return this->is_data_size_valid_; }
286
7d9e3d98
ILT
287 // Print information to the map file.
288 void
289 print_to_mapfile(Mapfile* mapfile) const
290 { return this->do_print_to_mapfile(mapfile); }
291
75f65a3e
ILT
292 protected:
293 // Functions that child classes may or in some cases must implement.
294
295 // Write the data to the output file.
a2fb1b05 296 virtual void
75f65a3e
ILT
297 do_write(Output_file*) = 0;
298
299 // Return the required alignment.
300 virtual uint64_t
301 do_addralign() const = 0;
302
a445fddf
ILT
303 // Return whether this has a load address.
304 virtual bool
305 do_has_load_address() const
306 { return false; }
307
308 // Return the load address.
309 virtual uint64_t
310 do_load_address() const
311 { gold_unreachable(); }
312
75f65a3e
ILT
313 // Return whether this is an Output_section.
314 virtual bool
315 do_is_section() const
316 { return false; }
a2fb1b05 317
54dc6425 318 // Return whether this is an Output_section of the specified type.
75f65a3e 319 // This only needs to be implement by Output_section.
54dc6425 320 virtual bool
75f65a3e 321 do_is_section_type(elfcpp::Elf_Word) const
54dc6425
ILT
322 { return false; }
323
75f65a3e
ILT
324 // Return whether this is an Output_section with the specific flag
325 // set. This only needs to be implemented by Output_section.
54dc6425 326 virtual bool
75f65a3e 327 do_is_section_flag_set(elfcpp::Elf_Xword) const
54dc6425
ILT
328 { return false; }
329
77e65537
ILT
330 // Return the output section, if there is one.
331 virtual Output_section*
332 do_output_section()
333 { return NULL; }
334
ea715a34
ILT
335 virtual const Output_section*
336 do_output_section() const
337 { return NULL; }
338
ead1e424
ILT
339 // Return the output section index, if there is an output section.
340 virtual unsigned int
341 do_out_shndx() const
a3ad94ed 342 { gold_unreachable(); }
ead1e424
ILT
343
344 // Set the output section index, if this is an output section.
345 virtual void
346 do_set_out_shndx(unsigned int)
a3ad94ed 347 { gold_unreachable(); }
ead1e424 348
cdc29364
CC
349 // This is a hook for derived classes to set the preliminary data size.
350 // This is called by pre_finalize_data_size, normally called during
351 // Layout::finalize, before the section address is set, and is used
352 // during an incremental update, when we need to know the size of a
353 // section before allocating space in the output file. For classes
354 // where the current data size is up to date, this default version of
355 // the method can be inherited.
356 virtual void
357 update_data_size()
358 { }
359
27bc2bce
ILT
360 // This is a hook for derived classes to set the data size. This is
361 // called by finalize_data_size, normally called during
362 // Layout::finalize, when the section address is set.
75f65a3e 363 virtual void
27bc2bce
ILT
364 set_final_data_size()
365 { gold_unreachable(); }
75f65a3e 366
a445fddf
ILT
367 // A hook for resetting the address and file offset.
368 virtual void
369 do_reset_address_and_file_offset()
370 { }
371
20e6d0d6
DK
372 // Return true if address and file offset already have reset values. In
373 // other words, calling reset_address_and_file_offset will not change them.
374 // A child class overriding do_reset_address_and_file_offset may need to
375 // also override this.
376 virtual bool
377 do_address_and_file_offset_have_reset_values() const
378 { return !this->is_address_valid_ && !this->is_offset_valid_; }
379
7bf1f802
ILT
380 // Set the TLS offset. Called only for SHT_TLS sections.
381 virtual void
382 do_set_tls_offset(uint64_t)
383 { gold_unreachable(); }
384
385 // Return the TLS offset, relative to the base of the TLS segment.
386 // Valid only for SHT_TLS sections.
387 virtual uint64_t
388 do_tls_offset() const
389 { gold_unreachable(); }
390
7d9e3d98
ILT
391 // Print to the map file. This only needs to be implemented by
392 // classes which may appear in a PT_LOAD segment.
393 virtual void
394 do_print_to_mapfile(Mapfile*) const
395 { gold_unreachable(); }
396
75f65a3e
ILT
397 // Functions that child classes may call.
398
9c547ec3
ILT
399 // Reset the address. The Output_section class needs this when an
400 // SHF_ALLOC input section is added to an output section which was
401 // formerly not SHF_ALLOC.
402 void
403 mark_address_invalid()
404 { this->is_address_valid_ = false; }
405
a2fb1b05
ILT
406 // Set the size of the data.
407 void
2ea97941 408 set_data_size(off_t data_size)
a3ad94ed 409 {
20e6d0d6
DK
410 gold_assert(!this->is_data_size_valid_
411 && !this->is_data_size_fixed_);
2ea97941 412 this->data_size_ = data_size;
27bc2bce
ILT
413 this->is_data_size_valid_ = true;
414 }
415
20e6d0d6 416 // Fix the data size. Once it is fixed, it cannot be changed
34171bc5 417 // and the data size remains always valid.
20e6d0d6
DK
418 void
419 fix_data_size()
420 {
421 gold_assert(this->is_data_size_valid_);
422 this->is_data_size_fixed_ = true;
423 }
424
27bc2bce
ILT
425 // Get the current data size--this is for the convenience of
426 // sections which build up their size over time.
427 off_t
428 current_data_size_for_child() const
429 { return this->data_size_; }
430
431 // Set the current data size--this is for the convenience of
432 // sections which build up their size over time.
433 void
2ea97941 434 set_current_data_size_for_child(off_t data_size)
27bc2bce
ILT
435 {
436 gold_assert(!this->is_data_size_valid_);
2ea97941 437 this->data_size_ = data_size;
a3ad94ed 438 }
75f65a3e 439
730cdc88
ILT
440 // Return default alignment for the target size.
441 static uint64_t
442 default_alignment();
443
444 // Return default alignment for a specified size--32 or 64.
75f65a3e 445 static uint64_t
730cdc88 446 default_alignment_for_size(int size);
a2fb1b05
ILT
447
448 private:
449 Output_data(const Output_data&);
450 Output_data& operator=(const Output_data&);
451
a3ad94ed 452 // This is used for verification, to make sure that we don't try to
27bc2bce
ILT
453 // change any sizes of allocated sections after we set the section
454 // addresses.
455 static bool allocated_sizes_are_fixed;
a3ad94ed 456
27bc2bce 457 // Memory address in output file.
75f65a3e 458 uint64_t address_;
27bc2bce 459 // Size of data in output file.
75f65a3e 460 off_t data_size_;
27bc2bce 461 // File offset of contents in output file.
75f65a3e 462 off_t offset_;
27bc2bce 463 // Whether address_ is valid.
22f0da72 464 bool is_address_valid_ : 1;
27bc2bce 465 // Whether data_size_ is valid.
22f0da72 466 bool is_data_size_valid_ : 1;
27bc2bce 467 // Whether offset_ is valid.
22f0da72 468 bool is_offset_valid_ : 1;
20e6d0d6 469 // Whether data size is fixed.
22f0da72
ILT
470 bool is_data_size_fixed_ : 1;
471 // Whether any dynamic relocs have been applied to this section.
472 bool has_dynamic_reloc_ : 1;
a2fb1b05
ILT
473};
474
54dc6425
ILT
475// Output the section headers.
476
477class Output_section_headers : public Output_data
478{
479 public:
9025d29d 480 Output_section_headers(const Layout*,
16649710
ILT
481 const Layout::Segment_list*,
482 const Layout::Section_list*,
6a74a719 483 const Layout::Section_list*,
d491d34e
ILT
484 const Stringpool*,
485 const Output_section*);
54dc6425 486
27bc2bce 487 protected:
54dc6425
ILT
488 // Write the data to the file.
489 void
75f65a3e
ILT
490 do_write(Output_file*);
491
492 // Return the required alignment.
493 uint64_t
494 do_addralign() const
730cdc88 495 { return Output_data::default_alignment(); }
54dc6425 496
7d9e3d98
ILT
497 // Write to a map file.
498 void
499 do_print_to_mapfile(Mapfile* mapfile) const
500 { mapfile->print_output_data(this, _("** section headers")); }
501
cdc29364
CC
502 // Update the data size.
503 void
504 update_data_size()
505 { this->set_data_size(this->do_size()); }
506
20e6d0d6
DK
507 // Set final data size.
508 void
509 set_final_data_size()
510 { this->set_data_size(this->do_size()); }
511
54dc6425 512 private:
61ba1cf9
ILT
513 // Write the data to the file with the right size and endianness.
514 template<int size, bool big_endian>
515 void
516 do_sized_write(Output_file*);
517
20e6d0d6
DK
518 // Compute data size.
519 off_t
520 do_size() const;
521
16649710
ILT
522 const Layout* layout_;
523 const Layout::Segment_list* segment_list_;
6a74a719 524 const Layout::Section_list* section_list_;
16649710 525 const Layout::Section_list* unattached_section_list_;
61ba1cf9 526 const Stringpool* secnamepool_;
d491d34e 527 const Output_section* shstrtab_section_;
54dc6425
ILT
528};
529
530// Output the segment headers.
531
532class Output_segment_headers : public Output_data
533{
534 public:
9025d29d 535 Output_segment_headers(const Layout::Segment_list& segment_list);
54dc6425 536
27bc2bce 537 protected:
54dc6425
ILT
538 // Write the data to the file.
539 void
75f65a3e
ILT
540 do_write(Output_file*);
541
542 // Return the required alignment.
543 uint64_t
544 do_addralign() const
730cdc88 545 { return Output_data::default_alignment(); }
54dc6425 546
7d9e3d98
ILT
547 // Write to a map file.
548 void
549 do_print_to_mapfile(Mapfile* mapfile) const
550 { mapfile->print_output_data(this, _("** segment headers")); }
551
20e6d0d6
DK
552 // Set final data size.
553 void
554 set_final_data_size()
555 { this->set_data_size(this->do_size()); }
556
54dc6425 557 private:
61ba1cf9
ILT
558 // Write the data to the file with the right size and endianness.
559 template<int size, bool big_endian>
560 void
561 do_sized_write(Output_file*);
562
20e6d0d6
DK
563 // Compute the current size.
564 off_t
565 do_size() const;
566
54dc6425
ILT
567 const Layout::Segment_list& segment_list_;
568};
569
570// Output the ELF file header.
571
572class Output_file_header : public Output_data
573{
574 public:
9025d29d 575 Output_file_header(const Target*,
54dc6425 576 const Symbol_table*,
a10ae760 577 const Output_segment_headers*);
75f65a3e
ILT
578
579 // Add information about the section headers. We lay out the ELF
580 // file header before we create the section headers.
581 void set_section_info(const Output_section_headers*,
582 const Output_section* shstrtab);
54dc6425 583
27bc2bce 584 protected:
54dc6425
ILT
585 // Write the data to the file.
586 void
75f65a3e
ILT
587 do_write(Output_file*);
588
589 // Return the required alignment.
590 uint64_t
591 do_addralign() const
730cdc88 592 { return Output_data::default_alignment(); }
75f65a3e 593
7d9e3d98
ILT
594 // Write to a map file.
595 void
596 do_print_to_mapfile(Mapfile* mapfile) const
597 { mapfile->print_output_data(this, _("** file header")); }
598
20e6d0d6
DK
599 // Set final data size.
600 void
601 set_final_data_size(void)
602 { this->set_data_size(this->do_size()); }
603
54dc6425 604 private:
61ba1cf9
ILT
605 // Write the data to the file with the right size and endianness.
606 template<int size, bool big_endian>
607 void
608 do_sized_write(Output_file*);
609
d391083d
ILT
610 // Return the value to use for the entry address.
611 template<int size>
612 typename elfcpp::Elf_types<size>::Elf_Addr
613 entry();
614
20e6d0d6
DK
615 // Compute the current data size.
616 off_t
617 do_size() const;
618
54dc6425
ILT
619 const Target* target_;
620 const Symbol_table* symtab_;
61ba1cf9 621 const Output_segment_headers* segment_header_;
54dc6425
ILT
622 const Output_section_headers* section_header_;
623 const Output_section* shstrtab_;
624};
625
ead1e424
ILT
626// Output sections are mainly comprised of input sections. However,
627// there are cases where we have data to write out which is not in an
628// input section. Output_section_data is used in such cases. This is
629// an abstract base class.
630
631class Output_section_data : public Output_data
632{
633 public:
2ea97941
ILT
634 Output_section_data(off_t data_size, uint64_t addralign,
635 bool is_data_size_fixed)
636 : Output_data(), output_section_(NULL), addralign_(addralign)
20e6d0d6 637 {
2ea97941
ILT
638 this->set_data_size(data_size);
639 if (is_data_size_fixed)
20e6d0d6
DK
640 this->fix_data_size();
641 }
ead1e424 642
2ea97941
ILT
643 Output_section_data(uint64_t addralign)
644 : Output_data(), output_section_(NULL), addralign_(addralign)
ead1e424
ILT
645 { }
646
16649710 647 // Return the output section.
7223e9ca
ILT
648 Output_section*
649 output_section()
650 { return this->output_section_; }
651
16649710
ILT
652 const Output_section*
653 output_section() const
654 { return this->output_section_; }
655
ead1e424
ILT
656 // Record the output section.
657 void
16649710 658 set_output_section(Output_section* os);
ead1e424 659
b8e6aad9
ILT
660 // Add an input section, for SHF_MERGE sections. This returns true
661 // if the section was handled.
662 bool
663 add_input_section(Relobj* object, unsigned int shndx)
664 { return this->do_add_input_section(object, shndx); }
665
666 // Given an input OBJECT, an input section index SHNDX within that
667 // object, and an OFFSET relative to the start of that input
730cdc88
ILT
668 // section, return whether or not the corresponding offset within
669 // the output section is known. If this function returns true, it
670 // sets *POUTPUT to the output offset. The value -1 indicates that
671 // this input offset is being discarded.
8f00aeb8 672 bool
8383303e 673 output_offset(const Relobj* object, unsigned int shndx,
2ea97941 674 section_offset_type offset,
ca09d69a 675 section_offset_type* poutput) const
2ea97941 676 { return this->do_output_offset(object, shndx, offset, poutput); }
b8e6aad9 677
a9a60db6
ILT
678 // Return whether this is the merge section for the input section
679 // SHNDX in OBJECT. This should return true when output_offset
680 // would return true for some values of OFFSET.
681 bool
682 is_merge_section_for(const Relobj* object, unsigned int shndx) const
683 { return this->do_is_merge_section_for(object, shndx); }
684
96803768
ILT
685 // Write the contents to a buffer. This is used for sections which
686 // require postprocessing, such as compression.
687 void
688 write_to_buffer(unsigned char* buffer)
689 { this->do_write_to_buffer(buffer); }
690
38c5e8b4
ILT
691 // Print merge stats to stderr. This should only be called for
692 // SHF_MERGE sections.
693 void
694 print_merge_stats(const char* section_name)
695 { this->do_print_merge_stats(section_name); }
696
ead1e424
ILT
697 protected:
698 // The child class must implement do_write.
699
16649710
ILT
700 // The child class may implement specific adjustments to the output
701 // section.
702 virtual void
703 do_adjust_output_section(Output_section*)
704 { }
705
b8e6aad9
ILT
706 // May be implemented by child class. Return true if the section
707 // was handled.
708 virtual bool
709 do_add_input_section(Relobj*, unsigned int)
710 { gold_unreachable(); }
711
730cdc88 712 // The child class may implement output_offset.
b8e6aad9 713 virtual bool
8383303e
ILT
714 do_output_offset(const Relobj*, unsigned int, section_offset_type,
715 section_offset_type*) const
b8e6aad9
ILT
716 { return false; }
717
a9a60db6
ILT
718 // The child class may implement is_merge_section_for.
719 virtual bool
720 do_is_merge_section_for(const Relobj*, unsigned int) const
721 { return false; }
722
96803768
ILT
723 // The child class may implement write_to_buffer. Most child
724 // classes can not appear in a compressed section, and they do not
725 // implement this.
726 virtual void
727 do_write_to_buffer(unsigned char*)
728 { gold_unreachable(); }
729
38c5e8b4
ILT
730 // Print merge statistics.
731 virtual void
732 do_print_merge_stats(const char*)
733 { gold_unreachable(); }
734
ead1e424
ILT
735 // Return the required alignment.
736 uint64_t
737 do_addralign() const
738 { return this->addralign_; }
739
77e65537
ILT
740 // Return the output section.
741 Output_section*
742 do_output_section()
743 { return this->output_section_; }
744
ea715a34
ILT
745 const Output_section*
746 do_output_section() const
747 { return this->output_section_; }
748
ead1e424
ILT
749 // Return the section index of the output section.
750 unsigned int
751 do_out_shndx() const;
752
5a6f7e2d
ILT
753 // Set the alignment.
754 void
759b1a24 755 set_addralign(uint64_t addralign);
5a6f7e2d 756
ead1e424
ILT
757 private:
758 // The output section for this section.
77e65537 759 Output_section* output_section_;
ead1e424
ILT
760 // The required alignment.
761 uint64_t addralign_;
762};
763
27bc2bce
ILT
764// Some Output_section_data classes build up their data step by step,
765// rather than all at once. This class provides an interface for
766// them.
767
768class Output_section_data_build : public Output_section_data
769{
770 public:
2ea97941
ILT
771 Output_section_data_build(uint64_t addralign)
772 : Output_section_data(addralign)
27bc2bce
ILT
773 { }
774
4829d394
CC
775 Output_section_data_build(off_t data_size, uint64_t addralign)
776 : Output_section_data(data_size, addralign, false)
777 { }
778
27bc2bce
ILT
779 // Set the current data size.
780 void
2ea97941
ILT
781 set_current_data_size(off_t data_size)
782 { this->set_current_data_size_for_child(data_size); }
27bc2bce
ILT
783
784 protected:
785 // Set the final data size.
786 virtual void
787 set_final_data_size()
788 { this->set_data_size(this->current_data_size_for_child()); }
789};
790
dbe717ef
ILT
791// A simple case of Output_data in which we have constant data to
792// output.
ead1e424 793
dbe717ef 794class Output_data_const : public Output_section_data
ead1e424
ILT
795{
796 public:
2ea97941
ILT
797 Output_data_const(const std::string& data, uint64_t addralign)
798 : Output_section_data(data.size(), addralign, true), data_(data)
dbe717ef
ILT
799 { }
800
2ea97941
ILT
801 Output_data_const(const char* p, off_t len, uint64_t addralign)
802 : Output_section_data(len, addralign, true), data_(p, len)
dbe717ef
ILT
803 { }
804
2ea97941
ILT
805 Output_data_const(const unsigned char* p, off_t len, uint64_t addralign)
806 : Output_section_data(len, addralign, true),
dbe717ef
ILT
807 data_(reinterpret_cast<const char*>(p), len)
808 { }
809
27bc2bce 810 protected:
a3ad94ed 811 // Write the data to the output file.
dbe717ef 812 void
a3ad94ed 813 do_write(Output_file*);
dbe717ef 814
96803768
ILT
815 // Write the data to a buffer.
816 void
817 do_write_to_buffer(unsigned char* buffer)
818 { memcpy(buffer, this->data_.data(), this->data_.size()); }
819
7d9e3d98
ILT
820 // Write to a map file.
821 void
822 do_print_to_mapfile(Mapfile* mapfile) const
823 { mapfile->print_output_data(this, _("** fill")); }
824
dbe717ef
ILT
825 private:
826 std::string data_;
827};
828
a3ad94ed
ILT
829// Another version of Output_data with constant data, in which the
830// buffer is allocated by the caller.
dbe717ef 831
a3ad94ed 832class Output_data_const_buffer : public Output_section_data
dbe717ef
ILT
833{
834 public:
a3ad94ed 835 Output_data_const_buffer(const unsigned char* p, off_t len,
2ea97941
ILT
836 uint64_t addralign, const char* map_name)
837 : Output_section_data(len, addralign, true),
7d9e3d98 838 p_(p), map_name_(map_name)
a3ad94ed
ILT
839 { }
840
27bc2bce 841 protected:
a3ad94ed
ILT
842 // Write the data the output file.
843 void
844 do_write(Output_file*);
845
96803768
ILT
846 // Write the data to a buffer.
847 void
848 do_write_to_buffer(unsigned char* buffer)
849 { memcpy(buffer, this->p_, this->data_size()); }
850
7d9e3d98
ILT
851 // Write to a map file.
852 void
853 do_print_to_mapfile(Mapfile* mapfile) const
854 { mapfile->print_output_data(this, _(this->map_name_)); }
855
a3ad94ed 856 private:
7d9e3d98 857 // The data to output.
a3ad94ed 858 const unsigned char* p_;
7d9e3d98
ILT
859 // Name to use in a map file. Maps are a rarely used feature, but
860 // the space usage is minor as aren't very many of these objects.
861 const char* map_name_;
a3ad94ed
ILT
862};
863
27bc2bce
ILT
864// A place holder for a fixed amount of data written out via some
865// other mechanism.
a3ad94ed 866
27bc2bce 867class Output_data_fixed_space : public Output_section_data
a3ad94ed
ILT
868{
869 public:
2ea97941 870 Output_data_fixed_space(off_t data_size, uint64_t addralign,
7d9e3d98 871 const char* map_name)
2ea97941 872 : Output_section_data(data_size, addralign, true),
7d9e3d98 873 map_name_(map_name)
a3ad94ed
ILT
874 { }
875
27bc2bce
ILT
876 protected:
877 // Write out the data--the actual data must be written out
878 // elsewhere.
879 void
880 do_write(Output_file*)
ead1e424 881 { }
7d9e3d98
ILT
882
883 // Write to a map file.
884 void
885 do_print_to_mapfile(Mapfile* mapfile) const
886 { mapfile->print_output_data(this, _(this->map_name_)); }
887
888 private:
889 // Name to use in a map file. Maps are a rarely used feature, but
890 // the space usage is minor as aren't very many of these objects.
891 const char* map_name_;
27bc2bce 892};
ead1e424 893
27bc2bce
ILT
894// A place holder for variable sized data written out via some other
895// mechanism.
896
897class Output_data_space : public Output_section_data_build
898{
899 public:
2ea97941
ILT
900 explicit Output_data_space(uint64_t addralign, const char* map_name)
901 : Output_section_data_build(addralign),
7d9e3d98 902 map_name_(map_name)
27bc2bce 903 { }
ead1e424 904
4829d394
CC
905 explicit Output_data_space(off_t data_size, uint64_t addralign,
906 const char* map_name)
907 : Output_section_data_build(data_size, addralign),
908 map_name_(map_name)
909 { }
910
5a6f7e2d
ILT
911 // Set the alignment.
912 void
913 set_space_alignment(uint64_t align)
914 { this->set_addralign(align); }
915
27bc2bce
ILT
916 protected:
917 // Write out the data--the actual data must be written out
918 // elsewhere.
ead1e424
ILT
919 void
920 do_write(Output_file*)
921 { }
7d9e3d98
ILT
922
923 // Write to a map file.
924 void
925 do_print_to_mapfile(Mapfile* mapfile) const
926 { mapfile->print_output_data(this, _(this->map_name_)); }
927
928 private:
929 // Name to use in a map file. Maps are a rarely used feature, but
930 // the space usage is minor as aren't very many of these objects.
931 const char* map_name_;
932};
933
934// Fill fixed space with zeroes. This is just like
935// Output_data_fixed_space, except that the map name is known.
936
937class Output_data_zero_fill : public Output_section_data
938{
939 public:
2ea97941
ILT
940 Output_data_zero_fill(off_t data_size, uint64_t addralign)
941 : Output_section_data(data_size, addralign, true)
7d9e3d98
ILT
942 { }
943
944 protected:
945 // There is no data to write out.
946 void
947 do_write(Output_file*)
948 { }
949
950 // Write to a map file.
951 void
952 do_print_to_mapfile(Mapfile* mapfile) const
953 { mapfile->print_output_data(this, "** zero fill"); }
ead1e424
ILT
954};
955
a3ad94ed
ILT
956// A string table which goes into an output section.
957
958class Output_data_strtab : public Output_section_data
959{
960 public:
961 Output_data_strtab(Stringpool* strtab)
962 : Output_section_data(1), strtab_(strtab)
963 { }
964
27bc2bce 965 protected:
cdc29364
CC
966 // This is called to update the section size prior to assigning
967 // the address and file offset.
968 void
969 update_data_size()
970 { this->set_final_data_size(); }
971
a3ad94ed
ILT
972 // This is called to set the address and file offset. Here we make
973 // sure that the Stringpool is finalized.
974 void
27bc2bce 975 set_final_data_size();
a3ad94ed
ILT
976
977 // Write out the data.
978 void
979 do_write(Output_file*);
980
96803768
ILT
981 // Write the data to a buffer.
982 void
983 do_write_to_buffer(unsigned char* buffer)
984 { this->strtab_->write_to_buffer(buffer, this->data_size()); }
985
7d9e3d98
ILT
986 // Write to a map file.
987 void
988 do_print_to_mapfile(Mapfile* mapfile) const
989 { mapfile->print_output_data(this, _("** string table")); }
990
a3ad94ed
ILT
991 private:
992 Stringpool* strtab_;
993};
994
c06b7b0b
ILT
995// This POD class is used to represent a single reloc in the output
996// file. This could be a private class within Output_data_reloc, but
997// the templatization is complex enough that I broke it out into a
998// separate class. The class is templatized on either elfcpp::SHT_REL
999// or elfcpp::SHT_RELA, and also on whether this is a dynamic
1000// relocation or an ordinary relocation.
1001
dceae3c1
ILT
1002// A relocation can be against a global symbol, a local symbol, a
1003// local section symbol, an output section, or the undefined symbol at
1004// index 0. We represent the latter by using a NULL global symbol.
c06b7b0b
ILT
1005
1006template<int sh_type, bool dynamic, int size, bool big_endian>
1007class Output_reloc;
1008
1009template<bool dynamic, int size, bool big_endian>
1010class Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>
1011{
1012 public:
1013 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
624f8810 1014 typedef typename elfcpp::Elf_types<size>::Elf_Addr Addend;
c06b7b0b 1015
eff45813
CC
1016 static const Address invalid_address = static_cast<Address>(0) - 1;
1017
c06b7b0b
ILT
1018 // An uninitialized entry. We need this because we want to put
1019 // instances of this class into an STL container.
1020 Output_reloc()
1021 : local_sym_index_(INVALID_CODE)
1022 { }
1023
dceae3c1
ILT
1024 // We have a bunch of different constructors. They come in pairs
1025 // depending on how the address of the relocation is specified. It
1026 // can either be an offset in an Output_data or an offset in an
1027 // input section.
1028
c06b7b0b 1029 // A reloc against a global symbol.
5a6f7e2d 1030
a3ad94ed 1031 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od,
13cf9988
DM
1032 Address address, bool is_relative, bool is_symbolless,
1033 bool use_plt_offset);
5a6f7e2d 1034
ef9beddf 1035 Output_reloc(Symbol* gsym, unsigned int type,
34171bc5 1036 Sized_relobj<size, big_endian>* relobj,
0da6fa6c 1037 unsigned int shndx, Address address, bool is_relative,
13cf9988 1038 bool is_symbolless, bool use_plt_offset);
c06b7b0b 1039
dceae3c1 1040 // A reloc against a local symbol or local section symbol.
5a6f7e2d
ILT
1041
1042 Output_reloc(Sized_relobj<size, big_endian>* relobj,
7bf1f802 1043 unsigned int local_sym_index, unsigned int type,
dceae3c1 1044 Output_data* od, Address address, bool is_relative,
34171bc5
AM
1045 bool is_symbolless, bool is_section_symbol,
1046 bool use_plt_offset);
5a6f7e2d
ILT
1047
1048 Output_reloc(Sized_relobj<size, big_endian>* relobj,
7bf1f802 1049 unsigned int local_sym_index, unsigned int type,
dceae3c1 1050 unsigned int shndx, Address address, bool is_relative,
34171bc5
AM
1051 bool is_symbolless, bool is_section_symbol,
1052 bool use_plt_offset);
c06b7b0b
ILT
1053
1054 // A reloc against the STT_SECTION symbol of an output section.
5a6f7e2d 1055
a3ad94ed 1056 Output_reloc(Output_section* os, unsigned int type, Output_data* od,
703d02da 1057 Address address, bool is_relative);
5a6f7e2d 1058
ef9beddf 1059 Output_reloc(Output_section* os, unsigned int type,
703d02da
AM
1060 Sized_relobj<size, big_endian>* relobj, unsigned int shndx,
1061 Address address, bool is_relative);
c06b7b0b 1062
ec661b9d 1063 // An absolute or relative relocation with no symbol.
e291e7b9 1064
ec661b9d
AM
1065 Output_reloc(unsigned int type, Output_data* od, Address address,
1066 bool is_relative);
e291e7b9
ILT
1067
1068 Output_reloc(unsigned int type, Sized_relobj<size, big_endian>* relobj,
ec661b9d 1069 unsigned int shndx, Address address, bool is_relative);
e291e7b9
ILT
1070
1071 // A target specific relocation. The target will be called to get
1072 // the symbol index, passing ARG. The type and offset will be set
1073 // as for other relocation types.
1074
1075 Output_reloc(unsigned int type, void* arg, Output_data* od,
1076 Address address);
1077
1078 Output_reloc(unsigned int type, void* arg,
1079 Sized_relobj<size, big_endian>* relobj,
1080 unsigned int shndx, Address address);
1081
1082 // Return the reloc type.
1083 unsigned int
1084 type() const
1085 { return this->type_; }
1086
1087 // Return whether this is a RELATIVE relocation.
e8c846c3
ILT
1088 bool
1089 is_relative() const
1090 { return this->is_relative_; }
1091
0da6fa6c
DM
1092 // Return whether this is a relocation which should not use
1093 // a symbol, but which obtains its addend from a symbol.
1094 bool
1095 is_symbolless() const
1096 { return this->is_symbolless_; }
1097
dceae3c1
ILT
1098 // Return whether this is against a local section symbol.
1099 bool
1100 is_local_section_symbol() const
1101 {
1102 return (this->local_sym_index_ != GSYM_CODE
34171bc5
AM
1103 && this->local_sym_index_ != SECTION_CODE
1104 && this->local_sym_index_ != INVALID_CODE
e291e7b9 1105 && this->local_sym_index_ != TARGET_CODE
34171bc5 1106 && this->is_section_symbol_);
dceae3c1
ILT
1107 }
1108
e291e7b9
ILT
1109 // Return whether this is a target specific relocation.
1110 bool
1111 is_target_specific() const
1112 { return this->local_sym_index_ == TARGET_CODE; }
1113
1114 // Return the argument to pass to the target for a target specific
1115 // relocation.
1116 void*
1117 target_arg() const
1118 {
1119 gold_assert(this->local_sym_index_ == TARGET_CODE);
1120 return this->u1_.arg;
1121 }
1122
dceae3c1 1123 // For a local section symbol, return the offset of the input
624f8810
ILT
1124 // section within the output section. ADDEND is the addend being
1125 // applied to the input section.
ef9beddf 1126 Address
624f8810 1127 local_section_offset(Addend addend) const;
dceae3c1 1128
d1f003c6
ILT
1129 // Get the value of the symbol referred to by a Rel relocation when
1130 // we are adding the given ADDEND.
e8c846c3 1131 Address
624f8810 1132 symbol_value(Addend addend) const;
e8c846c3 1133
6fa2a40b
CC
1134 // If this relocation is against an input section, return the
1135 // relocatable object containing the input section.
1136 Sized_relobj<size, big_endian>*
1137 get_relobj() const
1138 {
1139 if (this->shndx_ == INVALID_CODE)
1140 return NULL;
1141 return this->u2_.relobj;
1142 }
1143
c06b7b0b
ILT
1144 // Write the reloc entry to an output view.
1145 void
1146 write(unsigned char* pov) const;
1147
1148 // Write the offset and info fields to Write_rel.
1149 template<typename Write_rel>
1150 void write_rel(Write_rel*) const;
1151
d98bc257
ILT
1152 // This is used when sorting dynamic relocs. Return -1 to sort this
1153 // reloc before R2, 0 to sort the same as R2, 1 to sort after R2.
1154 int
1155 compare(const Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>& r2)
1156 const;
1157
1158 // Return whether this reloc should be sorted before the argument
1159 // when sorting dynamic relocs.
1160 bool
1161 sort_before(const Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>&
1162 r2) const
1163 { return this->compare(r2) < 0; }
1164
c06b7b0b 1165 private:
dceae3c1
ILT
1166 // Record that we need a dynamic symbol index.
1167 void
1168 set_needs_dynsym_index();
1169
1170 // Return the symbol index.
c06b7b0b
ILT
1171 unsigned int
1172 get_symbol_index() const;
1173
d98bc257 1174 // Return the output address.
a984ee1d 1175 Address
d98bc257
ILT
1176 get_address() const;
1177
c06b7b0b
ILT
1178 // Codes for local_sym_index_.
1179 enum
1180 {
1181 // Global symbol.
1182 GSYM_CODE = -1U,
1183 // Output section.
1184 SECTION_CODE = -2U,
e291e7b9
ILT
1185 // Target specific.
1186 TARGET_CODE = -3U,
c06b7b0b 1187 // Invalid uninitialized entry.
e291e7b9 1188 INVALID_CODE = -4U
c06b7b0b
ILT
1189 };
1190
1191 union
1192 {
dceae3c1
ILT
1193 // For a local symbol or local section symbol
1194 // (this->local_sym_index_ >= 0), the object. We will never
1195 // generate a relocation against a local symbol in a dynamic
1196 // object; that doesn't make sense. And our callers will always
1197 // be templatized, so we use Sized_relobj here.
5a6f7e2d 1198 Sized_relobj<size, big_endian>* relobj;
dceae3c1
ILT
1199 // For a global symbol (this->local_sym_index_ == GSYM_CODE, the
1200 // symbol. If this is NULL, it indicates a relocation against the
1201 // undefined 0 symbol.
c06b7b0b 1202 Symbol* gsym;
dceae3c1
ILT
1203 // For a relocation against an output section
1204 // (this->local_sym_index_ == SECTION_CODE), the output section.
c06b7b0b 1205 Output_section* os;
e291e7b9
ILT
1206 // For a target specific relocation, an argument to pass to the
1207 // target.
1208 void* arg;
5a6f7e2d
ILT
1209 } u1_;
1210 union
1211 {
dceae3c1
ILT
1212 // If this->shndx_ is not INVALID CODE, the object which holds the
1213 // input section being used to specify the reloc address.
ef9beddf 1214 Sized_relobj<size, big_endian>* relobj;
dceae3c1 1215 // If this->shndx_ is INVALID_CODE, the output data being used to
5a6f7e2d
ILT
1216 // specify the reloc address. This may be NULL if the reloc
1217 // address is absolute.
1218 Output_data* od;
1219 } u2_;
1220 // The address offset within the input section or the Output_data.
1221 Address address_;
dceae3c1 1222 // This is GSYM_CODE for a global symbol, or SECTION_CODE for a
e291e7b9
ILT
1223 // relocation against an output section, or TARGET_CODE for a target
1224 // specific relocation, or INVALID_CODE for an uninitialized value.
1225 // Otherwise, for a local symbol (this->is_section_symbol_ is
1226 // false), the local symbol index. For a local section symbol
1227 // (this->is_section_symbol_ is true), the section index in the
1228 // input file.
c06b7b0b 1229 unsigned int local_sym_index_;
a3ad94ed 1230 // The reloc type--a processor specific code.
397b129b 1231 unsigned int type_ : 28;
e8c846c3
ILT
1232 // True if the relocation is a RELATIVE relocation.
1233 bool is_relative_ : 1;
0da6fa6c
DM
1234 // True if the relocation is one which should not use
1235 // a symbol, but which obtains its addend from a symbol.
1236 bool is_symbolless_ : 1;
dceae3c1
ILT
1237 // True if the relocation is against a section symbol.
1238 bool is_section_symbol_ : 1;
13cf9988 1239 // True if the addend should be the PLT offset.
397b129b
CC
1240 // (Used only for RELA, but stored here for space.)
1241 bool use_plt_offset_ : 1;
5a6f7e2d
ILT
1242 // If the reloc address is an input section in an object, the
1243 // section index. This is INVALID_CODE if the reloc address is
1244 // specified in some other way.
1245 unsigned int shndx_;
c06b7b0b
ILT
1246};
1247
1248// The SHT_RELA version of Output_reloc<>. This is just derived from
1249// the SHT_REL version of Output_reloc, but it adds an addend.
1250
1251template<bool dynamic, int size, bool big_endian>
1252class Output_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>
1253{
1254 public:
1255 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
1256 typedef typename elfcpp::Elf_types<size>::Elf_Addr Addend;
1257
1258 // An uninitialized entry.
1259 Output_reloc()
1260 : rel_()
1261 { }
1262
1263 // A reloc against a global symbol.
5a6f7e2d 1264
a3ad94ed 1265 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od,
0da6fa6c 1266 Address address, Addend addend, bool is_relative,
13cf9988
DM
1267 bool is_symbolless, bool use_plt_offset)
1268 : rel_(gsym, type, od, address, is_relative, is_symbolless,
1269 use_plt_offset),
0da6fa6c 1270 addend_(addend)
c06b7b0b
ILT
1271 { }
1272
ef9beddf 1273 Output_reloc(Symbol* gsym, unsigned int type,
34171bc5 1274 Sized_relobj<size, big_endian>* relobj,
2ea97941 1275 unsigned int shndx, Address address, Addend addend,
13cf9988 1276 bool is_relative, bool is_symbolless, bool use_plt_offset)
0da6fa6c 1277 : rel_(gsym, type, relobj, shndx, address, is_relative,
13cf9988 1278 is_symbolless, use_plt_offset), addend_(addend)
5a6f7e2d
ILT
1279 { }
1280
c06b7b0b 1281 // A reloc against a local symbol.
5a6f7e2d
ILT
1282
1283 Output_reloc(Sized_relobj<size, big_endian>* relobj,
e8c846c3 1284 unsigned int local_sym_index, unsigned int type,
2ea97941 1285 Output_data* od, Address address,
0da6fa6c 1286 Addend addend, bool is_relative,
397b129b
CC
1287 bool is_symbolless, bool is_section_symbol,
1288 bool use_plt_offset)
2ea97941 1289 : rel_(relobj, local_sym_index, type, od, address, is_relative,
34171bc5 1290 is_symbolless, is_section_symbol, use_plt_offset),
e8c846c3 1291 addend_(addend)
5a6f7e2d
ILT
1292 { }
1293
1294 Output_reloc(Sized_relobj<size, big_endian>* relobj,
e8c846c3 1295 unsigned int local_sym_index, unsigned int type,
2ea97941 1296 unsigned int shndx, Address address,
0da6fa6c 1297 Addend addend, bool is_relative,
397b129b
CC
1298 bool is_symbolless, bool is_section_symbol,
1299 bool use_plt_offset)
2ea97941 1300 : rel_(relobj, local_sym_index, type, shndx, address, is_relative,
34171bc5 1301 is_symbolless, is_section_symbol, use_plt_offset),
5a6f7e2d 1302 addend_(addend)
c06b7b0b
ILT
1303 { }
1304
1305 // A reloc against the STT_SECTION symbol of an output section.
5a6f7e2d 1306
a3ad94ed 1307 Output_reloc(Output_section* os, unsigned int type, Output_data* od,
703d02da
AM
1308 Address address, Addend addend, bool is_relative)
1309 : rel_(os, type, od, address, is_relative), addend_(addend)
c06b7b0b
ILT
1310 { }
1311
ef9beddf 1312 Output_reloc(Output_section* os, unsigned int type,
34171bc5 1313 Sized_relobj<size, big_endian>* relobj,
703d02da
AM
1314 unsigned int shndx, Address address, Addend addend,
1315 bool is_relative)
1316 : rel_(os, type, relobj, shndx, address, is_relative), addend_(addend)
5a6f7e2d
ILT
1317 { }
1318
ec661b9d 1319 // An absolute or relative relocation with no symbol.
e291e7b9
ILT
1320
1321 Output_reloc(unsigned int type, Output_data* od, Address address,
ec661b9d
AM
1322 Addend addend, bool is_relative)
1323 : rel_(type, od, address, is_relative), addend_(addend)
e291e7b9
ILT
1324 { }
1325
1326 Output_reloc(unsigned int type, Sized_relobj<size, big_endian>* relobj,
ec661b9d
AM
1327 unsigned int shndx, Address address, Addend addend,
1328 bool is_relative)
1329 : rel_(type, relobj, shndx, address, is_relative), addend_(addend)
e291e7b9
ILT
1330 { }
1331
1332 // A target specific relocation. The target will be called to get
1333 // the symbol index and the addend, passing ARG. The type and
1334 // offset will be set as for other relocation types.
1335
1336 Output_reloc(unsigned int type, void* arg, Output_data* od,
1337 Address address, Addend addend)
1338 : rel_(type, arg, od, address), addend_(addend)
1339 { }
1340
1341 Output_reloc(unsigned int type, void* arg,
1342 Sized_relobj<size, big_endian>* relobj,
1343 unsigned int shndx, Address address, Addend addend)
1344 : rel_(type, arg, relobj, shndx, address), addend_(addend)
1345 { }
1346
1347 // Return whether this is a RELATIVE relocation.
3a44184e
ILT
1348 bool
1349 is_relative() const
1350 { return this->rel_.is_relative(); }
1351
0da6fa6c
DM
1352 // Return whether this is a relocation which should not use
1353 // a symbol, but which obtains its addend from a symbol.
1354 bool
1355 is_symbolless() const
1356 { return this->rel_.is_symbolless(); }
1357
6fa2a40b
CC
1358 // If this relocation is against an input section, return the
1359 // relocatable object containing the input section.
1360 Sized_relobj<size, big_endian>*
1361 get_relobj() const
1362 { return this->rel_.get_relobj(); }
1363
c06b7b0b
ILT
1364 // Write the reloc entry to an output view.
1365 void
1366 write(unsigned char* pov) const;
1367
d98bc257
ILT
1368 // Return whether this reloc should be sorted before the argument
1369 // when sorting dynamic relocs.
1370 bool
1371 sort_before(const Output_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>&
1372 r2) const
1373 {
1374 int i = this->rel_.compare(r2.rel_);
1375 if (i < 0)
d98bc257 1376 return true;
cc28ec61
ILT
1377 else if (i > 0)
1378 return false;
d98bc257
ILT
1379 else
1380 return this->addend_ < r2.addend_;
1381 }
1382
c06b7b0b
ILT
1383 private:
1384 // The basic reloc.
1385 Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian> rel_;
1386 // The addend.
1387 Addend addend_;
1388};
1389
3a44184e
ILT
1390// Output_data_reloc_generic is a non-template base class for
1391// Output_data_reloc_base. This gives the generic code a way to hold
1392// a pointer to a reloc section.
1393
1394class Output_data_reloc_generic : public Output_section_data_build
1395{
1396 public:
1397 Output_data_reloc_generic(int size, bool sort_relocs)
1398 : Output_section_data_build(Output_data::default_alignment_for_size(size)),
1399 relative_reloc_count_(0), sort_relocs_(sort_relocs)
1400 { }
1401
1402 // Return the number of relative relocs in this section.
1403 size_t
1404 relative_reloc_count() const
1405 { return this->relative_reloc_count_; }
1406
1407 // Whether we should sort the relocs.
1408 bool
1409 sort_relocs() const
1410 { return this->sort_relocs_; }
1411
83896202
ILT
1412 // Add a reloc of type TYPE against the global symbol GSYM. The
1413 // relocation applies to the data at offset ADDRESS within OD.
1414 virtual void
1415 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od,
1416 uint64_t address, uint64_t addend) = 0;
1417
1418 // Add a reloc of type TYPE against the global symbol GSYM. The
1419 // relocation applies to data at offset ADDRESS within section SHNDX
1420 // of object file RELOBJ. OD is the associated output section.
1421 virtual void
1422 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od,
1423 Relobj* relobj, unsigned int shndx, uint64_t address,
1424 uint64_t addend) = 0;
1425
1426 // Add a reloc of type TYPE against the local symbol LOCAL_SYM_INDEX
1427 // in RELOBJ. The relocation applies to the data at offset ADDRESS
1428 // within OD.
1429 virtual void
1430 add_local_generic(Relobj* relobj, unsigned int local_sym_index,
1431 unsigned int type, Output_data* od, uint64_t address,
1432 uint64_t addend) = 0;
1433
1434 // Add a reloc of type TYPE against the local symbol LOCAL_SYM_INDEX
1435 // in RELOBJ. The relocation applies to the data at offset ADDRESS
1436 // within section SHNDX of RELOBJ. OD is the associated output
1437 // section.
1438 virtual void
1439 add_local_generic(Relobj* relobj, unsigned int local_sym_index,
1440 unsigned int type, Output_data* od, unsigned int shndx,
1441 uint64_t address, uint64_t addend) = 0;
1442
1443 // Add a reloc of type TYPE against the STT_SECTION symbol of the
1444 // output section OS. The relocation applies to the data at offset
1445 // ADDRESS within OD.
1446 virtual void
1447 add_output_section_generic(Output_section *os, unsigned int type,
1448 Output_data* od, uint64_t address,
1449 uint64_t addend) = 0;
1450
1451 // Add a reloc of type TYPE against the STT_SECTION symbol of the
1452 // output section OS. The relocation applies to the data at offset
1453 // ADDRESS within section SHNDX of RELOBJ. OD is the associated
1454 // output section.
1455 virtual void
1456 add_output_section_generic(Output_section* os, unsigned int type,
1457 Output_data* od, Relobj* relobj,
1458 unsigned int shndx, uint64_t address,
1459 uint64_t addend) = 0;
1460
3a44184e
ILT
1461 protected:
1462 // Note that we've added another relative reloc.
1463 void
1464 bump_relative_reloc_count()
1465 { ++this->relative_reloc_count_; }
1466
1467 private:
1468 // The number of relative relocs added to this section. This is to
1469 // support DT_RELCOUNT.
1470 size_t relative_reloc_count_;
1471 // Whether to sort the relocations when writing them out, to make
1472 // the dynamic linker more efficient.
1473 bool sort_relocs_;
1474};
1475
c06b7b0b
ILT
1476// Output_data_reloc is used to manage a section containing relocs.
1477// SH_TYPE is either elfcpp::SHT_REL or elfcpp::SHT_RELA. DYNAMIC
1478// indicates whether this is a dynamic relocation or a normal
1479// relocation. Output_data_reloc_base is a base class.
1480// Output_data_reloc is the real class, which we specialize based on
1481// the reloc type.
1482
1483template<int sh_type, bool dynamic, int size, bool big_endian>
3a44184e 1484class Output_data_reloc_base : public Output_data_reloc_generic
c06b7b0b
ILT
1485{
1486 public:
1487 typedef Output_reloc<sh_type, dynamic, size, big_endian> Output_reloc_type;
1488 typedef typename Output_reloc_type::Address Address;
1489 static const int reloc_size =
1490 Reloc_types<sh_type, size, big_endian>::reloc_size;
1491
1492 // Construct the section.
d98bc257 1493 Output_data_reloc_base(bool sort_relocs)
3a44184e 1494 : Output_data_reloc_generic(size, sort_relocs)
c06b7b0b
ILT
1495 { }
1496
27bc2bce 1497 protected:
c06b7b0b
ILT
1498 // Write out the data.
1499 void
1500 do_write(Output_file*);
1501
16649710
ILT
1502 // Set the entry size and the link.
1503 void
ca09d69a 1504 do_adjust_output_section(Output_section* os);
16649710 1505
7d9e3d98
ILT
1506 // Write to a map file.
1507 void
1508 do_print_to_mapfile(Mapfile* mapfile) const
1509 {
1510 mapfile->print_output_data(this,
1511 (dynamic
1512 ? _("** dynamic relocs")
1513 : _("** relocs")));
1514 }
1515
c06b7b0b
ILT
1516 // Add a relocation entry.
1517 void
ca09d69a 1518 add(Output_data* od, const Output_reloc_type& reloc)
c06b7b0b
ILT
1519 {
1520 this->relocs_.push_back(reloc);
27bc2bce 1521 this->set_current_data_size(this->relocs_.size() * reloc_size);
8b8dd8d5
ILT
1522 if (dynamic)
1523 od->add_dynamic_reloc();
3a44184e
ILT
1524 if (reloc.is_relative())
1525 this->bump_relative_reloc_count();
6fa2a40b
CC
1526 Sized_relobj<size, big_endian>* relobj = reloc.get_relobj();
1527 if (relobj != NULL)
1528 relobj->add_dyn_reloc(this->relocs_.size() - 1);
c06b7b0b
ILT
1529 }
1530
1531 private:
1532 typedef std::vector<Output_reloc_type> Relocs;
1533
d98bc257
ILT
1534 // The class used to sort the relocations.
1535 struct Sort_relocs_comparison
1536 {
1537 bool
1538 operator()(const Output_reloc_type& r1, const Output_reloc_type& r2) const
1539 { return r1.sort_before(r2); }
1540 };
1541
1542 // The relocations in this section.
c06b7b0b
ILT
1543 Relocs relocs_;
1544};
1545
1546// The class which callers actually create.
1547
1548template<int sh_type, bool dynamic, int size, bool big_endian>
1549class Output_data_reloc;
1550
1551// The SHT_REL version of Output_data_reloc.
1552
1553template<bool dynamic, int size, bool big_endian>
1554class Output_data_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>
1555 : public Output_data_reloc_base<elfcpp::SHT_REL, dynamic, size, big_endian>
1556{
dceae3c1 1557 private:
c06b7b0b
ILT
1558 typedef Output_data_reloc_base<elfcpp::SHT_REL, dynamic, size,
1559 big_endian> Base;
1560
1561 public:
1562 typedef typename Base::Output_reloc_type Output_reloc_type;
1563 typedef typename Output_reloc_type::Address Address;
1564
d98bc257
ILT
1565 Output_data_reloc(bool sr)
1566 : Output_data_reloc_base<elfcpp::SHT_REL, dynamic, size, big_endian>(sr)
c06b7b0b
ILT
1567 { }
1568
1569 // Add a reloc against a global symbol.
5a6f7e2d 1570
c06b7b0b 1571 void
2ea97941 1572 add_global(Symbol* gsym, unsigned int type, Output_data* od, Address address)
34171bc5
AM
1573 {
1574 this->add(od, Output_reloc_type(gsym, type, od, address,
1575 false, false, false));
1576 }
c06b7b0b 1577
5a6f7e2d 1578 void
ef9beddf 1579 add_global(Symbol* gsym, unsigned int type, Output_data* od,
34171bc5 1580 Sized_relobj<size, big_endian>* relobj,
2ea97941 1581 unsigned int shndx, Address address)
34171bc5
AM
1582 {
1583 this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1584 false, false, false));
1585 }
e8c846c3 1586
12c0daef 1587 void
83896202
ILT
1588 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od,
1589 uint64_t address, uint64_t addend)
12c0daef
ILT
1590 {
1591 gold_assert(addend == 0);
83896202
ILT
1592 this->add(od, Output_reloc_type(gsym, type, od,
1593 convert_types<Address, uint64_t>(address),
13cf9988 1594 false, false, false));
12c0daef
ILT
1595 }
1596
1597 void
83896202
ILT
1598 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od,
1599 Relobj* relobj, unsigned int shndx, uint64_t address,
1600 uint64_t addend)
12c0daef
ILT
1601 {
1602 gold_assert(addend == 0);
83896202
ILT
1603 Sized_relobj<size, big_endian>* sized_relobj =
1604 static_cast<Sized_relobj<size, big_endian>*>(relobj);
1605 this->add(od, Output_reloc_type(gsym, type, sized_relobj, shndx,
1606 convert_types<Address, uint64_t>(address),
13cf9988 1607 false, false, false));
12c0daef
ILT
1608 }
1609
e8c846c3
ILT
1610 // Add a RELATIVE reloc against a global symbol. The final relocation
1611 // will not reference the symbol.
1612
1613 void
1614 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
34171bc5
AM
1615 Address address)
1616 {
1617 this->add(od, Output_reloc_type(gsym, type, od, address, true, true,
1618 false));
1619 }
e8c846c3
ILT
1620
1621 void
1622 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
34171bc5
AM
1623 Sized_relobj<size, big_endian>* relobj,
1624 unsigned int shndx, Address address)
dceae3c1 1625 {
2ea97941 1626 this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
34171bc5 1627 true, true, false));
0da6fa6c
DM
1628 }
1629
1630 // Add a global relocation which does not use a symbol for the relocation,
1631 // but which gets its addend from a symbol.
1632
1633 void
1634 add_symbolless_global_addend(Symbol* gsym, unsigned int type,
1635 Output_data* od, Address address)
34171bc5
AM
1636 {
1637 this->add(od, Output_reloc_type(gsym, type, od, address, false, true,
1638 false));
1639 }
0da6fa6c
DM
1640
1641 void
1642 add_symbolless_global_addend(Symbol* gsym, unsigned int type,
1643 Output_data* od,
1644 Sized_relobj<size, big_endian>* relobj,
1645 unsigned int shndx, Address address)
1646 {
1647 this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
34171bc5 1648 false, true, false));
dceae3c1 1649 }
5a6f7e2d 1650
c06b7b0b 1651 // Add a reloc against a local symbol.
5a6f7e2d 1652
c06b7b0b 1653 void
5a6f7e2d 1654 add_local(Sized_relobj<size, big_endian>* relobj,
a3ad94ed 1655 unsigned int local_sym_index, unsigned int type,
2ea97941 1656 Output_data* od, Address address)
dceae3c1
ILT
1657 {
1658 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od,
34171bc5 1659 address, false, false, false, false));
dceae3c1 1660 }
5a6f7e2d
ILT
1661
1662 void
1663 add_local(Sized_relobj<size, big_endian>* relobj,
1664 unsigned int local_sym_index, unsigned int type,
2ea97941 1665 Output_data* od, unsigned int shndx, Address address)
dceae3c1
ILT
1666 {
1667 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
397b129b 1668 address, false, false, false, false));
dceae3c1 1669 }
e8c846c3 1670
83896202
ILT
1671 void
1672 add_local_generic(Relobj* relobj, unsigned int local_sym_index,
1673 unsigned int type, Output_data* od, uint64_t address,
1674 uint64_t addend)
1675 {
1676 gold_assert(addend == 0);
1677 Sized_relobj<size, big_endian>* sized_relobj =
1678 static_cast<Sized_relobj<size, big_endian> *>(relobj);
1679 this->add(od, Output_reloc_type(sized_relobj, local_sym_index, type, od,
1680 convert_types<Address, uint64_t>(address),
1681 false, false, false, false));
1682 }
1683
1684 void
1685 add_local_generic(Relobj* relobj, unsigned int local_sym_index,
1686 unsigned int type, Output_data* od, unsigned int shndx,
1687 uint64_t address, uint64_t addend)
1688 {
1689 gold_assert(addend == 0);
1690 Sized_relobj<size, big_endian>* sized_relobj =
1691 static_cast<Sized_relobj<size, big_endian>*>(relobj);
1692 this->add(od, Output_reloc_type(sized_relobj, local_sym_index, type, shndx,
1693 convert_types<Address, uint64_t>(address),
1694 false, false, false, false));
1695 }
1696
e8c846c3 1697 // Add a RELATIVE reloc against a local symbol.
5a6f7e2d 1698
e8c846c3
ILT
1699 void
1700 add_local_relative(Sized_relobj<size, big_endian>* relobj,
34171bc5
AM
1701 unsigned int local_sym_index, unsigned int type,
1702 Output_data* od, Address address)
dceae3c1
ILT
1703 {
1704 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od,
34171bc5 1705 address, true, true, false, false));
dceae3c1 1706 }
e8c846c3
ILT
1707
1708 void
1709 add_local_relative(Sized_relobj<size, big_endian>* relobj,
34171bc5
AM
1710 unsigned int local_sym_index, unsigned int type,
1711 Output_data* od, unsigned int shndx, Address address)
dceae3c1
ILT
1712 {
1713 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
397b129b 1714 address, true, true, false, false));
0da6fa6c
DM
1715 }
1716
1717 // Add a local relocation which does not use a symbol for the relocation,
1718 // but which gets its addend from a symbol.
1719
1720 void
1721 add_symbolless_local_addend(Sized_relobj<size, big_endian>* relobj,
1722 unsigned int local_sym_index, unsigned int type,
1723 Output_data* od, Address address)
1724 {
1725 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od,
34171bc5 1726 address, false, true, false, false));
0da6fa6c
DM
1727 }
1728
1729 void
1730 add_symbolless_local_addend(Sized_relobj<size, big_endian>* relobj,
1731 unsigned int local_sym_index, unsigned int type,
1732 Output_data* od, unsigned int shndx,
1733 Address address)
1734 {
1735 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
397b129b 1736 address, false, true, false, false));
dceae3c1
ILT
1737 }
1738
1739 // Add a reloc against a local section symbol. This will be
1740 // converted into a reloc against the STT_SECTION symbol of the
1741 // output section.
1742
1743 void
1744 add_local_section(Sized_relobj<size, big_endian>* relobj,
34171bc5
AM
1745 unsigned int input_shndx, unsigned int type,
1746 Output_data* od, Address address)
dceae3c1
ILT
1747 {
1748 this->add(od, Output_reloc_type(relobj, input_shndx, type, od,
34171bc5 1749 address, false, false, true, false));
dceae3c1
ILT
1750 }
1751
1752 void
1753 add_local_section(Sized_relobj<size, big_endian>* relobj,
34171bc5
AM
1754 unsigned int input_shndx, unsigned int type,
1755 Output_data* od, unsigned int shndx, Address address)
dceae3c1
ILT
1756 {
1757 this->add(od, Output_reloc_type(relobj, input_shndx, type, shndx,
34171bc5 1758 address, false, false, true, false));
dceae3c1 1759 }
c06b7b0b
ILT
1760
1761 // A reloc against the STT_SECTION symbol of an output section.
4f4c5f80
ILT
1762 // OS is the Output_section that the relocation refers to; OD is
1763 // the Output_data object being relocated.
5a6f7e2d 1764
c06b7b0b 1765 void
a3ad94ed 1766 add_output_section(Output_section* os, unsigned int type,
2ea97941 1767 Output_data* od, Address address)
703d02da 1768 { this->add(od, Output_reloc_type(os, type, od, address, false)); }
5a6f7e2d
ILT
1769
1770 void
4f4c5f80 1771 add_output_section(Output_section* os, unsigned int type, Output_data* od,
ef9beddf 1772 Sized_relobj<size, big_endian>* relobj,
34171bc5 1773 unsigned int shndx, Address address)
703d02da 1774 { this->add(od, Output_reloc_type(os, type, relobj, shndx, address, false)); }
e291e7b9 1775
83896202
ILT
1776 void
1777 add_output_section_generic(Output_section* os, unsigned int type,
1778 Output_data* od, uint64_t address,
1779 uint64_t addend)
1780 {
1781 gold_assert(addend == 0);
1782 this->add(od, Output_reloc_type(os, type, od,
703d02da
AM
1783 convert_types<Address, uint64_t>(address),
1784 false));
83896202
ILT
1785 }
1786
1787 void
1788 add_output_section_generic(Output_section* os, unsigned int type,
1789 Output_data* od, Relobj* relobj,
1790 unsigned int shndx, uint64_t address,
1791 uint64_t addend)
1792 {
1793 gold_assert(addend == 0);
1794 Sized_relobj<size, big_endian>* sized_relobj =
1795 static_cast<Sized_relobj<size, big_endian>*>(relobj);
1796 this->add(od, Output_reloc_type(os, type, sized_relobj, shndx,
703d02da
AM
1797 convert_types<Address, uint64_t>(address),
1798 false));
83896202
ILT
1799 }
1800
703d02da
AM
1801 // As above, but the reloc TYPE is relative
1802
1803 void
1804 add_output_section_relative(Output_section* os, unsigned int type,
1805 Output_data* od, Address address)
1806 { this->add(od, Output_reloc_type(os, type, od, address, true)); }
1807
1808 void
1809 add_output_section_relative(Output_section* os, unsigned int type,
1810 Output_data* od,
1811 Sized_relobj<size, big_endian>* relobj,
1812 unsigned int shndx, Address address)
1813 { this->add(od, Output_reloc_type(os, type, relobj, shndx, address, true)); }
1814
e291e7b9
ILT
1815 // Add an absolute relocation.
1816
1817 void
1818 add_absolute(unsigned int type, Output_data* od, Address address)
ec661b9d 1819 { this->add(od, Output_reloc_type(type, od, address, false)); }
e291e7b9
ILT
1820
1821 void
1822 add_absolute(unsigned int type, Output_data* od,
1823 Sized_relobj<size, big_endian>* relobj,
1824 unsigned int shndx, Address address)
ec661b9d
AM
1825 { this->add(od, Output_reloc_type(type, relobj, shndx, address, false)); }
1826
1827 // Add a relative relocation
1828
1829 void
1830 add_relative(unsigned int type, Output_data* od, Address address)
1831 { this->add(od, Output_reloc_type(type, od, address, true)); }
1832
1833 void
1834 add_relative(unsigned int type, Output_data* od,
1835 Sized_relobj<size, big_endian>* relobj,
1836 unsigned int shndx, Address address)
1837 { this->add(od, Output_reloc_type(type, relobj, shndx, address, true)); }
e291e7b9
ILT
1838
1839 // Add a target specific relocation. A target which calls this must
1840 // define the reloc_symbol_index and reloc_addend virtual functions.
1841
1842 void
1843 add_target_specific(unsigned int type, void* arg, Output_data* od,
1844 Address address)
1845 { this->add(od, Output_reloc_type(type, arg, od, address)); }
1846
1847 void
1848 add_target_specific(unsigned int type, void* arg, Output_data* od,
1849 Sized_relobj<size, big_endian>* relobj,
1850 unsigned int shndx, Address address)
1851 { this->add(od, Output_reloc_type(type, arg, relobj, shndx, address)); }
c06b7b0b
ILT
1852};
1853
1854// The SHT_RELA version of Output_data_reloc.
1855
1856template<bool dynamic, int size, bool big_endian>
1857class Output_data_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>
1858 : public Output_data_reloc_base<elfcpp::SHT_RELA, dynamic, size, big_endian>
1859{
dceae3c1 1860 private:
c06b7b0b
ILT
1861 typedef Output_data_reloc_base<elfcpp::SHT_RELA, dynamic, size,
1862 big_endian> Base;
1863
1864 public:
1865 typedef typename Base::Output_reloc_type Output_reloc_type;
1866 typedef typename Output_reloc_type::Address Address;
1867 typedef typename Output_reloc_type::Addend Addend;
1868
d98bc257
ILT
1869 Output_data_reloc(bool sr)
1870 : Output_data_reloc_base<elfcpp::SHT_RELA, dynamic, size, big_endian>(sr)
c06b7b0b
ILT
1871 { }
1872
1873 // Add a reloc against a global symbol.
5a6f7e2d 1874
c06b7b0b 1875 void
a3ad94ed 1876 add_global(Symbol* gsym, unsigned int type, Output_data* od,
2ea97941 1877 Address address, Addend addend)
34171bc5
AM
1878 {
1879 this->add(od, Output_reloc_type(gsym, type, od, address, addend,
1880 false, false, false));
1881 }
c06b7b0b 1882
5a6f7e2d 1883 void
ef9beddf 1884 add_global(Symbol* gsym, unsigned int type, Output_data* od,
34171bc5 1885 Sized_relobj<size, big_endian>* relobj,
2ea97941 1886 unsigned int shndx, Address address,
4f4c5f80 1887 Addend addend)
34171bc5
AM
1888 {
1889 this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1890 addend, false, false, false));
1891 }
e8c846c3 1892
83896202
ILT
1893 void
1894 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od,
1895 uint64_t address, uint64_t addend)
1896 {
1897 this->add(od, Output_reloc_type(gsym, type, od,
1898 convert_types<Address, uint64_t>(address),
1899 convert_types<Addend, uint64_t>(addend),
13cf9988 1900 false, false, false));
83896202
ILT
1901 }
1902
1903 void
1904 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od,
1905 Relobj* relobj, unsigned int shndx, uint64_t address,
1906 uint64_t addend)
1907 {
1908 Sized_relobj<size, big_endian>* sized_relobj =
1909 static_cast<Sized_relobj<size, big_endian>*>(relobj);
1910 this->add(od, Output_reloc_type(gsym, type, sized_relobj, shndx,
1911 convert_types<Address, uint64_t>(address),
1912 convert_types<Addend, uint64_t>(addend),
13cf9988 1913 false, false, false));
83896202
ILT
1914 }
1915
e8c846c3
ILT
1916 // Add a RELATIVE reloc against a global symbol. The final output
1917 // relocation will not reference the symbol, but we must keep the symbol
1918 // information long enough to set the addend of the relocation correctly
1919 // when it is written.
1920
1921 void
1922 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
34171bc5
AM
1923 Address address, Addend addend, bool use_plt_offset)
1924 {
1925 this->add(od, Output_reloc_type(gsym, type, od, address, addend, true,
1926 true, use_plt_offset));
1927 }
e8c846c3
ILT
1928
1929 void
1930 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
34171bc5
AM
1931 Sized_relobj<size, big_endian>* relobj,
1932 unsigned int shndx, Address address, Addend addend,
13cf9988 1933 bool use_plt_offset)
34171bc5
AM
1934 {
1935 this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1936 addend, true, true, use_plt_offset));
1937 }
0da6fa6c
DM
1938
1939 // Add a global relocation which does not use a symbol for the relocation,
1940 // but which gets its addend from a symbol.
1941
1942 void
1943 add_symbolless_global_addend(Symbol* gsym, unsigned int type, Output_data* od,
1944 Address address, Addend addend)
34171bc5
AM
1945 {
1946 this->add(od, Output_reloc_type(gsym, type, od, address, addend,
1947 false, true, false));
1948 }
0da6fa6c
DM
1949
1950 void
1951 add_symbolless_global_addend(Symbol* gsym, unsigned int type,
1952 Output_data* od,
1953 Sized_relobj<size, big_endian>* relobj,
34171bc5
AM
1954 unsigned int shndx, Address address,
1955 Addend addend)
1956 {
1957 this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1958 addend, false, true, false));
1959 }
5a6f7e2d 1960
c06b7b0b 1961 // Add a reloc against a local symbol.
5a6f7e2d 1962
c06b7b0b 1963 void
5a6f7e2d 1964 add_local(Sized_relobj<size, big_endian>* relobj,
c06b7b0b 1965 unsigned int local_sym_index, unsigned int type,
2ea97941 1966 Output_data* od, Address address, Addend addend)
c06b7b0b 1967 {
2ea97941 1968 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od, address,
397b129b 1969 addend, false, false, false, false));
5a6f7e2d
ILT
1970 }
1971
1972 void
1973 add_local(Sized_relobj<size, big_endian>* relobj,
1974 unsigned int local_sym_index, unsigned int type,
2ea97941 1975 Output_data* od, unsigned int shndx, Address address,
4f4c5f80 1976 Addend addend)
5a6f7e2d 1977 {
4f4c5f80 1978 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
34171bc5
AM
1979 address, addend, false, false, false,
1980 false));
e8c846c3
ILT
1981 }
1982
83896202
ILT
1983 void
1984 add_local_generic(Relobj* relobj, unsigned int local_sym_index,
1985 unsigned int type, Output_data* od, uint64_t address,
1986 uint64_t addend)
1987 {
1988 Sized_relobj<size, big_endian>* sized_relobj =
1989 static_cast<Sized_relobj<size, big_endian> *>(relobj);
1990 this->add(od, Output_reloc_type(sized_relobj, local_sym_index, type, od,
1991 convert_types<Address, uint64_t>(address),
1992 convert_types<Addend, uint64_t>(addend),
1993 false, false, false, false));
1994 }
1995
1996 void
1997 add_local_generic(Relobj* relobj, unsigned int local_sym_index,
1998 unsigned int type, Output_data* od, unsigned int shndx,
1999 uint64_t address, uint64_t addend)
2000 {
2001 Sized_relobj<size, big_endian>* sized_relobj =
2002 static_cast<Sized_relobj<size, big_endian>*>(relobj);
2003 this->add(od, Output_reloc_type(sized_relobj, local_sym_index, type, shndx,
2004 convert_types<Address, uint64_t>(address),
2005 convert_types<Addend, uint64_t>(addend),
2006 false, false, false, false));
2007 }
2008
e8c846c3
ILT
2009 // Add a RELATIVE reloc against a local symbol.
2010
2011 void
2012 add_local_relative(Sized_relobj<size, big_endian>* relobj,
34171bc5
AM
2013 unsigned int local_sym_index, unsigned int type,
2014 Output_data* od, Address address, Addend addend,
2015 bool use_plt_offset)
e8c846c3 2016 {
2ea97941 2017 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od, address,
397b129b
CC
2018 addend, true, true, false,
2019 use_plt_offset));
e8c846c3
ILT
2020 }
2021
2022 void
2023 add_local_relative(Sized_relobj<size, big_endian>* relobj,
34171bc5
AM
2024 unsigned int local_sym_index, unsigned int type,
2025 Output_data* od, unsigned int shndx, Address address,
2026 Addend addend, bool use_plt_offset)
e8c846c3
ILT
2027 {
2028 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
34171bc5
AM
2029 address, addend, true, true, false,
2030 use_plt_offset));
0da6fa6c
DM
2031 }
2032
2033 // Add a local relocation which does not use a symbol for the relocation,
2034 // but which gets it's addend from a symbol.
2035
2036 void
2037 add_symbolless_local_addend(Sized_relobj<size, big_endian>* relobj,
2038 unsigned int local_sym_index, unsigned int type,
2039 Output_data* od, Address address, Addend addend)
2040 {
2041 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od, address,
397b129b 2042 addend, false, true, false, false));
0da6fa6c
DM
2043 }
2044
2045 void
2046 add_symbolless_local_addend(Sized_relobj<size, big_endian>* relobj,
2047 unsigned int local_sym_index, unsigned int type,
2048 Output_data* od, unsigned int shndx,
2049 Address address, Addend addend)
2050 {
2051 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
34171bc5
AM
2052 address, addend, false, true, false,
2053 false));
dceae3c1
ILT
2054 }
2055
2056 // Add a reloc against a local section symbol. This will be
2057 // converted into a reloc against the STT_SECTION symbol of the
2058 // output section.
2059
2060 void
2061 add_local_section(Sized_relobj<size, big_endian>* relobj,
34171bc5
AM
2062 unsigned int input_shndx, unsigned int type,
2063 Output_data* od, Address address, Addend addend)
dceae3c1 2064 {
2ea97941 2065 this->add(od, Output_reloc_type(relobj, input_shndx, type, od, address,
397b129b 2066 addend, false, false, true, false));
dceae3c1
ILT
2067 }
2068
2069 void
2070 add_local_section(Sized_relobj<size, big_endian>* relobj,
6fa2a40b
CC
2071 unsigned int input_shndx, unsigned int type,
2072 Output_data* od, unsigned int shndx, Address address,
2073 Addend addend)
dceae3c1
ILT
2074 {
2075 this->add(od, Output_reloc_type(relobj, input_shndx, type, shndx,
34171bc5
AM
2076 address, addend, false, false, true,
2077 false));
c06b7b0b
ILT
2078 }
2079
2080 // A reloc against the STT_SECTION symbol of an output section.
5a6f7e2d 2081
c06b7b0b 2082 void
a3ad94ed 2083 add_output_section(Output_section* os, unsigned int type, Output_data* od,
2ea97941 2084 Address address, Addend addend)
703d02da 2085 { this->add(od, Output_reloc_type(os, type, od, address, addend, false)); }
5a6f7e2d
ILT
2086
2087 void
829c9745 2088 add_output_section(Output_section* os, unsigned int type, Output_data* od,
34171bc5 2089 Sized_relobj<size, big_endian>* relobj,
2ea97941 2090 unsigned int shndx, Address address, Addend addend)
34171bc5
AM
2091 {
2092 this->add(od, Output_reloc_type(os, type, relobj, shndx, address,
2093 addend, false));
2094 }
e291e7b9 2095
83896202
ILT
2096 void
2097 add_output_section_generic(Output_section* os, unsigned int type,
2098 Output_data* od, uint64_t address,
2099 uint64_t addend)
2100 {
2101 this->add(od, Output_reloc_type(os, type, od,
2102 convert_types<Address, uint64_t>(address),
703d02da
AM
2103 convert_types<Addend, uint64_t>(addend),
2104 false));
83896202
ILT
2105 }
2106
2107 void
2108 add_output_section_generic(Output_section* os, unsigned int type,
2109 Output_data* od, Relobj* relobj,
2110 unsigned int shndx, uint64_t address,
2111 uint64_t addend)
2112 {
2113 Sized_relobj<size, big_endian>* sized_relobj =
2114 static_cast<Sized_relobj<size, big_endian>*>(relobj);
2115 this->add(od, Output_reloc_type(os, type, sized_relobj, shndx,
2116 convert_types<Address, uint64_t>(address),
703d02da
AM
2117 convert_types<Addend, uint64_t>(addend),
2118 false));
2119 }
2120
2121 // As above, but the reloc TYPE is relative
2122
2123 void
2124 add_output_section_relative(Output_section* os, unsigned int type,
2125 Output_data* od, Address address, Addend addend)
2126 { this->add(od, Output_reloc_type(os, type, od, address, addend, true)); }
2127
2128 void
2129 add_output_section_relative(Output_section* os, unsigned int type,
2130 Output_data* od,
2131 Sized_relobj<size, big_endian>* relobj,
2132 unsigned int shndx, Address address,
2133 Addend addend)
2134 {
2135 this->add(od, Output_reloc_type(os, type, relobj, shndx,
2136 address, addend, true));
83896202
ILT
2137 }
2138
e291e7b9
ILT
2139 // Add an absolute relocation.
2140
2141 void
2142 add_absolute(unsigned int type, Output_data* od, Address address,
2143 Addend addend)
ec661b9d 2144 { this->add(od, Output_reloc_type(type, od, address, addend, false)); }
e291e7b9
ILT
2145
2146 void
2147 add_absolute(unsigned int type, Output_data* od,
2148 Sized_relobj<size, big_endian>* relobj,
2149 unsigned int shndx, Address address, Addend addend)
34171bc5
AM
2150 {
2151 this->add(od, Output_reloc_type(type, relobj, shndx, address, addend,
2152 false));
2153 }
ec661b9d
AM
2154
2155 // Add a relative relocation
2156
2157 void
2158 add_relative(unsigned int type, Output_data* od, Address address,
2159 Addend addend)
2160 { this->add(od, Output_reloc_type(type, od, address, addend, true)); }
2161
2162 void
2163 add_relative(unsigned int type, Output_data* od,
2164 Sized_relobj<size, big_endian>* relobj,
2165 unsigned int shndx, Address address, Addend addend)
34171bc5
AM
2166 {
2167 this->add(od, Output_reloc_type(type, relobj, shndx, address, addend,
2168 true));
2169 }
e291e7b9
ILT
2170
2171 // Add a target specific relocation. A target which calls this must
2172 // define the reloc_symbol_index and reloc_addend virtual functions.
2173
2174 void
2175 add_target_specific(unsigned int type, void* arg, Output_data* od,
2176 Address address, Addend addend)
2177 { this->add(od, Output_reloc_type(type, arg, od, address, addend)); }
2178
2179 void
2180 add_target_specific(unsigned int type, void* arg, Output_data* od,
2181 Sized_relobj<size, big_endian>* relobj,
2182 unsigned int shndx, Address address, Addend addend)
2183 {
2184 this->add(od, Output_reloc_type(type, arg, relobj, shndx, address,
2185 addend));
2186 }
c06b7b0b
ILT
2187};
2188
6a74a719
ILT
2189// Output_relocatable_relocs represents a relocation section in a
2190// relocatable link. The actual data is written out in the target
7404fe1b 2191// hook relocate_relocs. This just saves space for it.
6a74a719
ILT
2192
2193template<int sh_type, int size, bool big_endian>
2194class Output_relocatable_relocs : public Output_section_data
2195{
2196 public:
2197 Output_relocatable_relocs(Relocatable_relocs* rr)
2198 : Output_section_data(Output_data::default_alignment_for_size(size)),
2199 rr_(rr)
2200 { }
2201
2202 void
2203 set_final_data_size();
2204
2205 // Write out the data. There is nothing to do here.
2206 void
2207 do_write(Output_file*)
2208 { }
2209
7d9e3d98
ILT
2210 // Write to a map file.
2211 void
2212 do_print_to_mapfile(Mapfile* mapfile) const
2213 { mapfile->print_output_data(this, _("** relocs")); }
2214
6a74a719
ILT
2215 private:
2216 // The relocs associated with this input section.
2217 Relocatable_relocs* rr_;
2218};
2219
2220// Handle a GROUP section.
2221
2222template<int size, bool big_endian>
2223class Output_data_group : public Output_section_data
2224{
2225 public:
8825ac63 2226 // The constructor clears *INPUT_SHNDXES.
6fa2a40b 2227 Output_data_group(Sized_relobj_file<size, big_endian>* relobj,
6a74a719 2228 section_size_type entry_count,
8825ac63
ILT
2229 elfcpp::Elf_Word flags,
2230 std::vector<unsigned int>* input_shndxes);
6a74a719
ILT
2231
2232 void
2233 do_write(Output_file*);
2234
7d9e3d98
ILT
2235 // Write to a map file.
2236 void
2237 do_print_to_mapfile(Mapfile* mapfile) const
2238 { mapfile->print_output_data(this, _("** group")); }
2239
20e6d0d6
DK
2240 // Set final data size.
2241 void
2242 set_final_data_size()
2243 { this->set_data_size((this->input_shndxes_.size() + 1) * 4); }
2244
6a74a719
ILT
2245 private:
2246 // The input object.
6fa2a40b 2247 Sized_relobj_file<size, big_endian>* relobj_;
6a74a719
ILT
2248 // The group flag word.
2249 elfcpp::Elf_Word flags_;
2250 // The section indexes of the input sections in this group.
8825ac63 2251 std::vector<unsigned int> input_shndxes_;
6a74a719
ILT
2252};
2253
dbe717ef
ILT
2254// Output_data_got is used to manage a GOT. Each entry in the GOT is
2255// for one symbol--either a global symbol or a local symbol in an
ead1e424 2256// object. The target specific code adds entries to the GOT as
83896202
ILT
2257// needed. The GOT_SIZE template parameter is the size in bits of a
2258// GOT entry, typically 32 or 64.
ead1e424 2259
dd74ae06
CC
2260class Output_data_got_base : public Output_section_data_build
2261{
2262 public:
2263 Output_data_got_base(uint64_t align)
2264 : Output_section_data_build(align)
2265 { }
2266
2267 Output_data_got_base(off_t data_size, uint64_t align)
2268 : Output_section_data_build(data_size, align)
2269 { }
2270
2271 // Reserve the slot at index I in the GOT.
2272 void
2273 reserve_slot(unsigned int i)
2274 { this->do_reserve_slot(i); }
2275
2276 protected:
2277 // Reserve the slot at index I in the GOT.
2278 virtual void
2279 do_reserve_slot(unsigned int i) = 0;
2280};
2281
83896202 2282template<int got_size, bool big_endian>
dd74ae06 2283class Output_data_got : public Output_data_got_base
ead1e424
ILT
2284{
2285 public:
83896202 2286 typedef typename elfcpp::Elf_types<got_size>::Elf_Addr Valtype;
ead1e424 2287
7e1edb90 2288 Output_data_got()
dd74ae06 2289 : Output_data_got_base(Output_data::default_alignment_for_size(got_size)),
4829d394 2290 entries_(), free_list_()
ead1e424
ILT
2291 { }
2292
4829d394 2293 Output_data_got(off_t data_size)
dd74ae06
CC
2294 : Output_data_got_base(data_size,
2295 Output_data::default_alignment_for_size(got_size)),
4829d394
CC
2296 entries_(), free_list_()
2297 {
2298 // For an incremental update, we have an existing GOT section.
2299 // Initialize the list of entries and the free list.
83896202 2300 this->entries_.resize(data_size / (got_size / 8));
4829d394
CC
2301 this->free_list_.init(data_size, false);
2302 }
2303
dbe717ef
ILT
2304 // Add an entry for a global symbol to the GOT. Return true if this
2305 // is a new GOT entry, false if the symbol was already in the GOT.
2306 bool
0a65a3a7 2307 add_global(Symbol* gsym, unsigned int got_type);
ead1e424 2308
7223e9ca
ILT
2309 // Like add_global, but use the PLT offset of the global symbol if
2310 // it has one.
2311 bool
2312 add_global_plt(Symbol* gsym, unsigned int got_type);
2313
bd73a62d 2314 // Like add_global, but for a TLS symbol where the value will be
19fec8c1 2315 // offset using Target::tls_offset_for_global.
bd73a62d
AM
2316 bool
2317 add_global_tls(Symbol* gsym, unsigned int got_type)
2318 { return add_global_plt(gsym, got_type); }
2319
7bf1f802
ILT
2320 // Add an entry for a global symbol to the GOT, and add a dynamic
2321 // relocation of type R_TYPE for the GOT entry.
2322 void
0a65a3a7 2323 add_global_with_rel(Symbol* gsym, unsigned int got_type,
34171bc5 2324 Output_data_reloc_generic* rel_dyn, unsigned int r_type);
0a65a3a7
CC
2325
2326 // Add a pair of entries for a global symbol to the GOT, and add
2327 // dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
2328 void
2329 add_global_pair_with_rel(Symbol* gsym, unsigned int got_type,
34171bc5 2330 Output_data_reloc_generic* rel_dyn,
83896202 2331 unsigned int r_type_1, unsigned int r_type_2);
7bf1f802 2332
e727fa71
ILT
2333 // Add an entry for a local symbol to the GOT. This returns true if
2334 // this is a new GOT entry, false if the symbol already has a GOT
2335 // entry.
2336 bool
83896202 2337 add_local(Relobj* object, unsigned int sym_index, unsigned int got_type);
ead1e424 2338
7223e9ca
ILT
2339 // Like add_local, but use the PLT offset of the local symbol if it
2340 // has one.
2341 bool
83896202 2342 add_local_plt(Relobj* object, unsigned int sym_index, unsigned int got_type);
7223e9ca 2343
bd73a62d 2344 // Like add_local, but for a TLS symbol where the value will be
19fec8c1 2345 // offset using Target::tls_offset_for_local.
bd73a62d
AM
2346 bool
2347 add_local_tls(Relobj* object, unsigned int sym_index, unsigned int got_type)
2348 { return add_local_plt(object, sym_index, got_type); }
2349
0a65a3a7 2350 // Add an entry for a local symbol to the GOT, and add a dynamic
7bf1f802
ILT
2351 // relocation of type R_TYPE for the GOT entry.
2352 void
83896202
ILT
2353 add_local_with_rel(Relobj* object, unsigned int sym_index,
2354 unsigned int got_type, Output_data_reloc_generic* rel_dyn,
2355 unsigned int r_type);
07f397ab 2356
0a65a3a7 2357 // Add a pair of entries for a local symbol to the GOT, and add
bd73a62d
AM
2358 // a dynamic relocation of type R_TYPE using the section symbol of
2359 // the output section to which input section SHNDX maps, on the first.
2360 // The first got entry will have a value of zero, the second the
2361 // value of the local symbol.
7bf1f802 2362 void
83896202
ILT
2363 add_local_pair_with_rel(Relobj* object, unsigned int sym_index,
2364 unsigned int shndx, unsigned int got_type,
2365 Output_data_reloc_generic* rel_dyn,
34171bc5 2366 unsigned int r_type);
bd73a62d
AM
2367
2368 // Add a pair of entries for a local symbol to the GOT, and add
2369 // a dynamic relocation of type R_TYPE using STN_UNDEF on the first.
2370 // The first got entry will have a value of zero, the second the
2371 // value of the local symbol offset by Target::tls_offset_for_local.
2372 void
2373 add_local_tls_pair(Relobj* object, unsigned int sym_index,
2374 unsigned int got_type,
2375 Output_data_reloc_generic* rel_dyn,
2376 unsigned int r_type);
7bf1f802 2377
ead1e424
ILT
2378 // Add a constant to the GOT. This returns the offset of the new
2379 // entry from the start of the GOT.
2380 unsigned int
2381 add_constant(Valtype constant)
2382 {
4829d394
CC
2383 unsigned int got_offset = this->add_got_entry(Got_entry(constant));
2384 return got_offset;
ead1e424
ILT
2385 }
2386
cf43a2fe
AM
2387 // Replace GOT entry I with a new constant.
2388 void
2389 replace_constant(unsigned int i, Valtype constant)
2390 {
2391 this->replace_got_entry(i, Got_entry(constant));
2392 }
2393
6fa2a40b 2394 // Reserve a slot in the GOT for a local symbol.
4829d394 2395 void
83896202
ILT
2396 reserve_local(unsigned int i, Relobj* object, unsigned int sym_index,
2397 unsigned int got_type);
4829d394
CC
2398
2399 // Reserve a slot in the GOT for a global symbol.
2400 void
6fa2a40b 2401 reserve_global(unsigned int i, Symbol* gsym, unsigned int got_type);
4829d394 2402
27bc2bce 2403 protected:
ead1e424
ILT
2404 // Write out the GOT table.
2405 void
2406 do_write(Output_file*);
2407
7d9e3d98
ILT
2408 // Write to a map file.
2409 void
2410 do_print_to_mapfile(Mapfile* mapfile) const
2411 { mapfile->print_output_data(this, _("** GOT")); }
2412
dd74ae06
CC
2413 // Reserve the slot at index I in the GOT.
2414 virtual void
2415 do_reserve_slot(unsigned int i)
2416 { this->free_list_.remove(i * got_size / 8, (i + 1) * got_size / 8); }
2417
cf43a2fe
AM
2418 // Return the number of words in the GOT.
2419 unsigned int
2420 num_entries () const
2421 { return this->entries_.size(); }
2422
2423 // Return the offset into the GOT of GOT entry I.
2424 unsigned int
2425 got_offset(unsigned int i) const
2426 { return i * (got_size / 8); }
2427
ead1e424
ILT
2428 private:
2429 // This POD class holds a single GOT entry.
2430 class Got_entry
2431 {
2432 public:
2433 // Create a zero entry.
2434 Got_entry()
bd73a62d 2435 : local_sym_index_(RESERVED_CODE), use_plt_or_tls_offset_(false)
ead1e424
ILT
2436 { this->u_.constant = 0; }
2437
2438 // Create a global symbol entry.
bd73a62d
AM
2439 Got_entry(Symbol* gsym, bool use_plt_or_tls_offset)
2440 : local_sym_index_(GSYM_CODE),
2441 use_plt_or_tls_offset_(use_plt_or_tls_offset)
ead1e424
ILT
2442 { this->u_.gsym = gsym; }
2443
2444 // Create a local symbol entry.
83896202 2445 Got_entry(Relobj* object, unsigned int local_sym_index,
bd73a62d
AM
2446 bool use_plt_or_tls_offset)
2447 : local_sym_index_(local_sym_index),
2448 use_plt_or_tls_offset_(use_plt_or_tls_offset)
ead1e424 2449 {
a3ad94ed 2450 gold_assert(local_sym_index != GSYM_CODE
7223e9ca 2451 && local_sym_index != CONSTANT_CODE
4829d394 2452 && local_sym_index != RESERVED_CODE
7223e9ca 2453 && local_sym_index == this->local_sym_index_);
ead1e424
ILT
2454 this->u_.object = object;
2455 }
2456
2457 // Create a constant entry. The constant is a host value--it will
2458 // be swapped, if necessary, when it is written out.
a3ad94ed 2459 explicit Got_entry(Valtype constant)
bd73a62d 2460 : local_sym_index_(CONSTANT_CODE), use_plt_or_tls_offset_(false)
ead1e424
ILT
2461 { this->u_.constant = constant; }
2462
2463 // Write the GOT entry to an output view.
2464 void
bd73a62d 2465 write(unsigned int got_indx, unsigned char* pov) const;
ead1e424
ILT
2466
2467 private:
2468 enum
2469 {
7223e9ca 2470 GSYM_CODE = 0x7fffffff,
4829d394
CC
2471 CONSTANT_CODE = 0x7ffffffe,
2472 RESERVED_CODE = 0x7ffffffd
ead1e424
ILT
2473 };
2474
2475 union
2476 {
2477 // For a local symbol, the object.
83896202 2478 Relobj* object;
ead1e424
ILT
2479 // For a global symbol, the symbol.
2480 Symbol* gsym;
2481 // For a constant, the constant.
2482 Valtype constant;
2483 } u_;
c06b7b0b
ILT
2484 // For a local symbol, the local symbol index. This is GSYM_CODE
2485 // for a global symbol, or CONSTANT_CODE for a constant.
7223e9ca
ILT
2486 unsigned int local_sym_index_ : 31;
2487 // Whether to use the PLT offset of the symbol if it has one.
bd73a62d
AM
2488 // For TLS symbols, whether to offset the symbol value.
2489 bool use_plt_or_tls_offset_ : 1;
ead1e424
ILT
2490 };
2491
2492 typedef std::vector<Got_entry> Got_entries;
2493
4829d394
CC
2494 // Create a new GOT entry and return its offset.
2495 unsigned int
2496 add_got_entry(Got_entry got_entry);
2497
2498 // Create a pair of new GOT entries and return the offset of the first.
2499 unsigned int
2500 add_got_entry_pair(Got_entry got_entry_1, Got_entry got_entry_2);
2501
cf43a2fe
AM
2502 // Replace GOT entry I with a new value.
2503 void
2504 replace_got_entry(unsigned int i, Got_entry got_entry);
ead1e424
ILT
2505
2506 // Return the offset into the GOT of the last entry added.
2507 unsigned int
2508 last_got_offset() const
cf43a2fe 2509 { return this->got_offset(this->num_entries() - 1); }
ead1e424
ILT
2510
2511 // Set the size of the section.
2512 void
2513 set_got_size()
cf43a2fe 2514 { this->set_current_data_size(this->got_offset(this->num_entries())); }
ead1e424
ILT
2515
2516 // The list of GOT entries.
2517 Got_entries entries_;
4829d394
CC
2518
2519 // List of available regions within the section, for incremental
2520 // update links.
2521 Free_list free_list_;
ead1e424
ILT
2522};
2523
a3ad94ed
ILT
2524// Output_data_dynamic is used to hold the data in SHT_DYNAMIC
2525// section.
2526
2527class Output_data_dynamic : public Output_section_data
2528{
2529 public:
9025d29d 2530 Output_data_dynamic(Stringpool* pool)
730cdc88 2531 : Output_section_data(Output_data::default_alignment()),
9025d29d 2532 entries_(), pool_(pool)
a3ad94ed
ILT
2533 { }
2534
2535 // Add a new dynamic entry with a fixed numeric value.
2536 void
2537 add_constant(elfcpp::DT tag, unsigned int val)
2538 { this->add_entry(Dynamic_entry(tag, val)); }
2539
16649710 2540 // Add a new dynamic entry with the address of output data.
a3ad94ed 2541 void
16649710
ILT
2542 add_section_address(elfcpp::DT tag, const Output_data* od)
2543 { this->add_entry(Dynamic_entry(tag, od, false)); }
a3ad94ed 2544
c2b45e22
CC
2545 // Add a new dynamic entry with the address of output data
2546 // plus a constant offset.
2547 void
2548 add_section_plus_offset(elfcpp::DT tag, const Output_data* od,
34171bc5 2549 unsigned int offset)
2ea97941 2550 { this->add_entry(Dynamic_entry(tag, od, offset)); }
c2b45e22 2551
16649710 2552 // Add a new dynamic entry with the size of output data.
a3ad94ed 2553 void
16649710
ILT
2554 add_section_size(elfcpp::DT tag, const Output_data* od)
2555 { this->add_entry(Dynamic_entry(tag, od, true)); }
a3ad94ed 2556
612a8d3d
DM
2557 // Add a new dynamic entry with the total size of two output datas.
2558 void
2559 add_section_size(elfcpp::DT tag, const Output_data* od,
2560 const Output_data* od2)
2561 { this->add_entry(Dynamic_entry(tag, od, od2)); }
2562
a3ad94ed
ILT
2563 // Add a new dynamic entry with the address of a symbol.
2564 void
16649710 2565 add_symbol(elfcpp::DT tag, const Symbol* sym)
a3ad94ed
ILT
2566 { this->add_entry(Dynamic_entry(tag, sym)); }
2567
2568 // Add a new dynamic entry with a string.
2569 void
2570 add_string(elfcpp::DT tag, const char* str)
cfd73a4e 2571 { this->add_entry(Dynamic_entry(tag, this->pool_->add(str, true, NULL))); }
a3ad94ed 2572
41f542e7
ILT
2573 void
2574 add_string(elfcpp::DT tag, const std::string& str)
2575 { this->add_string(tag, str.c_str()); }
2576
27bc2bce
ILT
2577 protected:
2578 // Adjust the output section to set the entry size.
2579 void
2580 do_adjust_output_section(Output_section*);
2581
a3ad94ed
ILT
2582 // Set the final data size.
2583 void
27bc2bce 2584 set_final_data_size();
a3ad94ed
ILT
2585
2586 // Write out the dynamic entries.
2587 void
2588 do_write(Output_file*);
2589
7d9e3d98
ILT
2590 // Write to a map file.
2591 void
2592 do_print_to_mapfile(Mapfile* mapfile) const
2593 { mapfile->print_output_data(this, _("** dynamic")); }
2594
a3ad94ed
ILT
2595 private:
2596 // This POD class holds a single dynamic entry.
2597 class Dynamic_entry
2598 {
2599 public:
2600 // Create an entry with a fixed numeric value.
2ea97941
ILT
2601 Dynamic_entry(elfcpp::DT tag, unsigned int val)
2602 : tag_(tag), offset_(DYNAMIC_NUMBER)
a3ad94ed
ILT
2603 { this->u_.val = val; }
2604
2605 // Create an entry with the size or address of a section.
2ea97941
ILT
2606 Dynamic_entry(elfcpp::DT tag, const Output_data* od, bool section_size)
2607 : tag_(tag),
c2b45e22
CC
2608 offset_(section_size
2609 ? DYNAMIC_SECTION_SIZE
2610 : DYNAMIC_SECTION_ADDRESS)
612a8d3d
DM
2611 {
2612 this->u_.od = od;
2613 this->od2 = NULL;
2614 }
2615
2616 // Create an entry with the size of two sections.
2617 Dynamic_entry(elfcpp::DT tag, const Output_data* od, const Output_data* od2)
2618 : tag_(tag),
2619 offset_(DYNAMIC_SECTION_SIZE)
2620 {
2621 this->u_.od = od;
2622 this->od2 = od2;
2623 }
c2b45e22
CC
2624
2625 // Create an entry with the address of a section plus a constant offset.
2ea97941
ILT
2626 Dynamic_entry(elfcpp::DT tag, const Output_data* od, unsigned int offset)
2627 : tag_(tag),
c2b45e22 2628 offset_(offset)
16649710 2629 { this->u_.od = od; }
a3ad94ed
ILT
2630
2631 // Create an entry with the address of a symbol.
2ea97941
ILT
2632 Dynamic_entry(elfcpp::DT tag, const Symbol* sym)
2633 : tag_(tag), offset_(DYNAMIC_SYMBOL)
a3ad94ed
ILT
2634 { this->u_.sym = sym; }
2635
2636 // Create an entry with a string.
2ea97941
ILT
2637 Dynamic_entry(elfcpp::DT tag, const char* str)
2638 : tag_(tag), offset_(DYNAMIC_STRING)
a3ad94ed
ILT
2639 { this->u_.str = str; }
2640
20e6d0d6
DK
2641 // Return the tag of this entry.
2642 elfcpp::DT
2643 tag() const
2644 { return this->tag_; }
2645
a3ad94ed
ILT
2646 // Write the dynamic entry to an output view.
2647 template<int size, bool big_endian>
2648 void
7d1a9ebb 2649 write(unsigned char* pov, const Stringpool*) const;
a3ad94ed
ILT
2650
2651 private:
c2b45e22 2652 // Classification is encoded in the OFFSET field.
a3ad94ed
ILT
2653 enum Classification
2654 {
a3ad94ed 2655 // Section address.
c2b45e22
CC
2656 DYNAMIC_SECTION_ADDRESS = 0,
2657 // Number.
2658 DYNAMIC_NUMBER = -1U,
a3ad94ed 2659 // Section size.
c2b45e22 2660 DYNAMIC_SECTION_SIZE = -2U,
a3ad94ed 2661 // Symbol adress.
c2b45e22 2662 DYNAMIC_SYMBOL = -3U,
a3ad94ed 2663 // String.
c2b45e22
CC
2664 DYNAMIC_STRING = -4U
2665 // Any other value indicates a section address plus OFFSET.
a3ad94ed
ILT
2666 };
2667
2668 union
2669 {
2670 // For DYNAMIC_NUMBER.
2671 unsigned int val;
c2b45e22 2672 // For DYNAMIC_SECTION_SIZE and section address plus OFFSET.
16649710 2673 const Output_data* od;
a3ad94ed 2674 // For DYNAMIC_SYMBOL.
16649710 2675 const Symbol* sym;
a3ad94ed
ILT
2676 // For DYNAMIC_STRING.
2677 const char* str;
2678 } u_;
612a8d3d
DM
2679 // For DYNAMIC_SYMBOL with two sections.
2680 const Output_data* od2;
a3ad94ed
ILT
2681 // The dynamic tag.
2682 elfcpp::DT tag_;
c2b45e22
CC
2683 // The type of entry (Classification) or offset within a section.
2684 unsigned int offset_;
a3ad94ed
ILT
2685 };
2686
2687 // Add an entry to the list.
2688 void
2689 add_entry(const Dynamic_entry& entry)
2690 { this->entries_.push_back(entry); }
2691
2692 // Sized version of write function.
2693 template<int size, bool big_endian>
2694 void
2695 sized_write(Output_file* of);
2696
2697 // The type of the list of entries.
2698 typedef std::vector<Dynamic_entry> Dynamic_entries;
2699
a3ad94ed
ILT
2700 // The entries.
2701 Dynamic_entries entries_;
2702 // The pool used for strings.
2703 Stringpool* pool_;
2704};
2705
d491d34e
ILT
2706// Output_symtab_xindex is used to handle SHT_SYMTAB_SHNDX sections,
2707// which may be required if the object file has more than
2708// SHN_LORESERVE sections.
2709
2710class Output_symtab_xindex : public Output_section_data
2711{
2712 public:
2713 Output_symtab_xindex(size_t symcount)
20e6d0d6 2714 : Output_section_data(symcount * 4, 4, true),
d491d34e
ILT
2715 entries_()
2716 { }
2717
2718 // Add an entry: symbol number SYMNDX has section SHNDX.
2719 void
2720 add(unsigned int symndx, unsigned int shndx)
2721 { this->entries_.push_back(std::make_pair(symndx, shndx)); }
2722
2723 protected:
2724 void
2725 do_write(Output_file*);
2726
7d9e3d98
ILT
2727 // Write to a map file.
2728 void
2729 do_print_to_mapfile(Mapfile* mapfile) const
2730 { mapfile->print_output_data(this, _("** symtab xindex")); }
2731
d491d34e
ILT
2732 private:
2733 template<bool big_endian>
2734 void
2735 endian_do_write(unsigned char*);
2736
2737 // It is likely that most symbols will not require entries. Rather
2738 // than keep a vector for all symbols, we keep pairs of symbol index
2739 // and section index.
2740 typedef std::vector<std::pair<unsigned int, unsigned int> > Xindex_entries;
2741
2742 // The entries we need.
2743 Xindex_entries entries_;
2744};
2745
20e6d0d6 2746// A relaxed input section.
c0a62865 2747class Output_relaxed_input_section : public Output_section_data_build
20e6d0d6
DK
2748{
2749 public:
2750 // We would like to call relobj->section_addralign(shndx) to get the
2751 // alignment but we do not want the constructor to fail. So callers
2752 // are repsonsible for ensuring that.
2ea97941
ILT
2753 Output_relaxed_input_section(Relobj* relobj, unsigned int shndx,
2754 uint64_t addralign)
2755 : Output_section_data_build(addralign), relobj_(relobj), shndx_(shndx)
20e6d0d6 2756 { }
34171bc5 2757
20e6d0d6
DK
2758 // Return the Relobj of this relaxed input section.
2759 Relobj*
2760 relobj() const
2761 { return this->relobj_; }
34171bc5 2762
20e6d0d6
DK
2763 // Return the section index of this relaxed input section.
2764 unsigned int
2765 shndx() const
2766 { return this->shndx_; }
2767
ec661b9d
AM
2768 protected:
2769 void
2770 set_relobj(Relobj* relobj)
2771 { this->relobj_ = relobj; }
2772
2773 void
2774 set_shndx(unsigned int shndx)
2775 { this->shndx_ = shndx; }
2776
20e6d0d6
DK
2777 private:
2778 Relobj* relobj_;
2779 unsigned int shndx_;
2780};
2781
0439c796
DK
2782// This class describes properties of merge data sections. It is used
2783// as a key type for maps.
2784class Merge_section_properties
2785{
2786 public:
2787 Merge_section_properties(bool is_string, uint64_t entsize,
2788 uint64_t addralign)
2789 : is_string_(is_string), entsize_(entsize), addralign_(addralign)
2790 { }
2791
2792 // Whether this equals to another Merge_section_properties MSP.
2793 bool
2794 eq(const Merge_section_properties& msp) const
2795 {
2796 return ((this->is_string_ == msp.is_string_)
2797 && (this->entsize_ == msp.entsize_)
2798 && (this->addralign_ == msp.addralign_));
2799 }
2800
2801 // Compute a hash value for this using 64-bit FNV-1a hash.
2802 size_t
2803 hash_value() const
2804 {
2805 uint64_t h = 14695981039346656037ULL; // FNV offset basis.
2806 uint64_t prime = 1099511628211ULL;
2807 h = (h ^ static_cast<uint64_t>(this->is_string_)) * prime;
2808 h = (h ^ static_cast<uint64_t>(this->entsize_)) * prime;
2809 h = (h ^ static_cast<uint64_t>(this->addralign_)) * prime;
2810 return h;
2811 }
34171bc5 2812
0439c796
DK
2813 // Functors for associative containers.
2814 struct equal_to
2815 {
2816 bool
2817 operator()(const Merge_section_properties& msp1,
2818 const Merge_section_properties& msp2) const
2819 { return msp1.eq(msp2); }
2820 };
2821
2822 struct hash
2823 {
2824 size_t
2825 operator()(const Merge_section_properties& msp) const
2826 { return msp.hash_value(); }
2827 };
2828
2829 private:
2830 // Whether this merge data section is for strings.
2831 bool is_string_;
2832 // Entsize of this merge data section.
2833 uint64_t entsize_;
2834 // Address alignment.
2835 uint64_t addralign_;
2836};
2837
2838// This class is used to speed up look up of special input sections in an
2839// Output_section.
2840
2841class Output_section_lookup_maps
2842{
2843 public:
2844 Output_section_lookup_maps()
2845 : is_valid_(true), merge_sections_by_properties_(),
2846 merge_sections_by_id_(), relaxed_input_sections_by_id_()
2847 { }
2848
2849 // Whether the maps are valid.
2850 bool
2851 is_valid() const
2852 { return this->is_valid_; }
2853
2854 // Invalidate the maps.
2855 void
2856 invalidate()
2857 { this->is_valid_ = false; }
2858
2859 // Clear the maps.
2860 void
2861 clear()
2862 {
2863 this->merge_sections_by_properties_.clear();
2864 this->merge_sections_by_id_.clear();
2865 this->relaxed_input_sections_by_id_.clear();
2866 // A cleared map is valid.
2867 this->is_valid_ = true;
2868 }
34171bc5 2869
0439c796
DK
2870 // Find a merge section by merge section properties. Return NULL if none
2871 // is found.
2872 Output_merge_base*
2873 find_merge_section(const Merge_section_properties& msp) const
2874 {
2875 gold_assert(this->is_valid_);
2876 Merge_sections_by_properties::const_iterator p =
2877 this->merge_sections_by_properties_.find(msp);
2878 return p != this->merge_sections_by_properties_.end() ? p->second : NULL;
2879 }
2880
2881 // Find a merge section by section ID of a merge input section. Return NULL
2882 // if none is found.
2883 Output_merge_base*
2884 find_merge_section(const Object* object, unsigned int shndx) const
2885 {
2886 gold_assert(this->is_valid_);
2887 Merge_sections_by_id::const_iterator p =
2888 this->merge_sections_by_id_.find(Const_section_id(object, shndx));
2889 return p != this->merge_sections_by_id_.end() ? p->second : NULL;
2890 }
2891
2892 // Add a merge section pointed by POMB with properties MSP.
2893 void
2894 add_merge_section(const Merge_section_properties& msp,
2895 Output_merge_base* pomb)
2896 {
2897 std::pair<Merge_section_properties, Output_merge_base*> value(msp, pomb);
2898 std::pair<Merge_sections_by_properties::iterator, bool> result =
2899 this->merge_sections_by_properties_.insert(value);
82742395 2900 gold_assert(result.second);
0439c796 2901 }
34171bc5 2902
0439c796
DK
2903 // Add a mapping from a merged input section in OBJECT with index SHNDX
2904 // to a merge output section pointed by POMB.
2905 void
2906 add_merge_input_section(const Object* object, unsigned int shndx,
2907 Output_merge_base* pomb)
2908 {
2909 Const_section_id csid(object, shndx);
2910 std::pair<Const_section_id, Output_merge_base*> value(csid, pomb);
2911 std::pair<Merge_sections_by_id::iterator, bool> result =
2912 this->merge_sections_by_id_.insert(value);
82742395 2913 gold_assert(result.second);
0439c796
DK
2914 }
2915
2916 // Find a relaxed input section of OBJECT with index SHNDX.
2917 Output_relaxed_input_section*
2918 find_relaxed_input_section(const Object* object, unsigned int shndx) const
2919 {
2920 gold_assert(this->is_valid_);
2921 Relaxed_input_sections_by_id::const_iterator p =
2922 this->relaxed_input_sections_by_id_.find(Const_section_id(object, shndx));
2923 return p != this->relaxed_input_sections_by_id_.end() ? p->second : NULL;
2924 }
2925
2926 // Add a relaxed input section pointed by POMB and whose original input
2927 // section is in OBJECT with index SHNDX.
2928 void
2929 add_relaxed_input_section(const Relobj* relobj, unsigned int shndx,
2930 Output_relaxed_input_section* poris)
2931 {
2932 Const_section_id csid(relobj, shndx);
2933 std::pair<Const_section_id, Output_relaxed_input_section*>
2934 value(csid, poris);
2935 std::pair<Relaxed_input_sections_by_id::iterator, bool> result =
2936 this->relaxed_input_sections_by_id_.insert(value);
82742395 2937 gold_assert(result.second);
0439c796
DK
2938 }
2939
2940 private:
2941 typedef Unordered_map<Const_section_id, Output_merge_base*,
2942 Const_section_id_hash>
2943 Merge_sections_by_id;
2944
2945 typedef Unordered_map<Merge_section_properties, Output_merge_base*,
2946 Merge_section_properties::hash,
2947 Merge_section_properties::equal_to>
2948 Merge_sections_by_properties;
2949
2950 typedef Unordered_map<Const_section_id, Output_relaxed_input_section*,
2951 Const_section_id_hash>
2952 Relaxed_input_sections_by_id;
2953
2954 // Whether this is valid
2955 bool is_valid_;
2956 // Merge sections by merge section properties.
2957 Merge_sections_by_properties merge_sections_by_properties_;
2958 // Merge sections by section IDs.
2959 Merge_sections_by_id merge_sections_by_id_;
2960 // Relaxed sections by section IDs.
2961 Relaxed_input_sections_by_id relaxed_input_sections_by_id_;
2962};
2963
8ea8cd50
CC
2964// This abstract base class defines the interface for the
2965// types of methods used to fill free space left in an output
2966// section during an incremental link. These methods are used
2967// to insert dummy compilation units into debug info so that
2968// debug info consumers can scan the debug info serially.
2969
2970class Output_fill
2971{
2972 public:
2973 Output_fill()
2974 : is_big_endian_(parameters->target().is_big_endian())
2975 { }
2976
81c82a68
ILT
2977 virtual
2978 ~Output_fill()
2979 { }
2980
8ea8cd50
CC
2981 // Return the smallest size chunk of free space that can be
2982 // filled with a dummy compilation unit.
2983 size_t
2984 minimum_hole_size() const
2985 { return this->do_minimum_hole_size(); }
2986
2987 // Write a fill pattern of length LEN at offset OFF in the file.
2988 void
2989 write(Output_file* of, off_t off, size_t len) const
2990 { this->do_write(of, off, len); }
2991
2992 protected:
2993 virtual size_t
2994 do_minimum_hole_size() const = 0;
2995
2996 virtual void
2997 do_write(Output_file* of, off_t off, size_t len) const = 0;
2998
2999 bool
3000 is_big_endian() const
3001 { return this->is_big_endian_; }
3002
3003 private:
3004 bool is_big_endian_;
3005};
3006
3007// Fill method that introduces a dummy compilation unit in
3008// a .debug_info or .debug_types section.
3009
3010class Output_fill_debug_info : public Output_fill
3011{
3012 public:
3013 Output_fill_debug_info(bool is_debug_types)
3014 : is_debug_types_(is_debug_types)
3015 { }
3016
3017 protected:
3018 virtual size_t
3019 do_minimum_hole_size() const;
3020
3021 virtual void
3022 do_write(Output_file* of, off_t off, size_t len) const;
3023
3024 private:
3025 // Version of the header.
3026 static const int version = 4;
3027 // True if this is a .debug_types section.
3028 bool is_debug_types_;
3029};
3030
3031// Fill method that introduces a dummy compilation unit in
3032// a .debug_line section.
3033
3034class Output_fill_debug_line : public Output_fill
3035{
3036 public:
3037 Output_fill_debug_line()
3038 { }
3039
3040 protected:
3041 virtual size_t
3042 do_minimum_hole_size() const;
3043
3044 virtual void
3045 do_write(Output_file* of, off_t off, size_t len) const;
3046
3047 private:
3048 // Version of the header. We write a DWARF-3 header because it's smaller
3049 // and many tools have not yet been updated to understand the DWARF-4 header.
3050 static const int version = 3;
3051 // Length of the portion of the header that follows the header_length
3052 // field. This includes the following fields:
3053 // minimum_instruction_length, default_is_stmt, line_base, line_range,
3054 // opcode_base, standard_opcode_lengths[], include_directories, filenames.
3055 // The standard_opcode_lengths array is 12 bytes long, and the
3056 // include_directories and filenames fields each contain only a single
3057 // null byte.
3058 static const size_t header_length = 19;
3059};
3060
a2fb1b05
ILT
3061// An output section. We don't expect to have too many output
3062// sections, so we don't bother to do a template on the size.
3063
54dc6425 3064class Output_section : public Output_data
a2fb1b05
ILT
3065{
3066 public:
3067 // Create an output section, giving the name, type, and flags.
96803768 3068 Output_section(const char* name, elfcpp::Elf_Word, elfcpp::Elf_Xword);
54dc6425 3069 virtual ~Output_section();
a2fb1b05 3070
ead1e424 3071 // Add a new input section SHNDX, named NAME, with header SHDR, from
730cdc88 3072 // object OBJECT. RELOC_SHNDX is the index of a relocation section
eff45813 3073 // which applies to this section, or 0 if none, or -1 if more than
a445fddf
ILT
3074 // one. HAVE_SECTIONS_SCRIPT is true if we have a SECTIONS clause
3075 // in a linker script; in that case we need to keep track of input
3076 // sections associated with an output section. Return the offset
3077 // within the output section.
a2fb1b05
ILT
3078 template<int size, bool big_endian>
3079 off_t
6fa2a40b 3080 add_input_section(Layout* layout, Sized_relobj_file<size, big_endian>* object,
34171bc5 3081 unsigned int shndx, const char* name,
730cdc88 3082 const elfcpp::Shdr<size, big_endian>& shdr,
a445fddf 3083 unsigned int reloc_shndx, bool have_sections_script);
a2fb1b05 3084
b8e6aad9 3085 // Add generated data POSD to this output section.
c06b7b0b 3086 void
ead1e424
ILT
3087 add_output_section_data(Output_section_data* posd);
3088
d06fb4d1
DK
3089 // Add a relaxed input section PORIS called NAME to this output section
3090 // with LAYOUT.
c0a62865 3091 void
d06fb4d1
DK
3092 add_relaxed_input_section(Layout* layout,
3093 Output_relaxed_input_section* poris,
3094 const std::string& name);
c0a62865 3095
a2fb1b05
ILT
3096 // Return the section name.
3097 const char*
3098 name() const
3099 { return this->name_; }
3100
3101 // Return the section type.
3102 elfcpp::Elf_Word
3103 type() const
3104 { return this->type_; }
3105
3106 // Return the section flags.
3107 elfcpp::Elf_Xword
3108 flags() const
3109 { return this->flags_; }
3110
e9552f7e
ST
3111 typedef std::map<Section_id, unsigned int> Section_layout_order;
3112
3113 void
f0558624 3114 update_section_layout(const Section_layout_order* order_map);
e9552f7e 3115
154e0e9a
ILT
3116 // Update the output section flags based on input section flags.
3117 void
9c547ec3 3118 update_flags_for_input_section(elfcpp::Elf_Xword flags);
154e0e9a 3119
a3ad94ed
ILT
3120 // Return the entsize field.
3121 uint64_t
3122 entsize() const
3123 { return this->entsize_; }
3124
61ba1cf9
ILT
3125 // Set the entsize field.
3126 void
16649710 3127 set_entsize(uint64_t v);
61ba1cf9 3128
a445fddf
ILT
3129 // Set the load address.
3130 void
2ea97941 3131 set_load_address(uint64_t load_address)
a445fddf 3132 {
2ea97941 3133 this->load_address_ = load_address;
a445fddf
ILT
3134 this->has_load_address_ = true;
3135 }
3136
16649710
ILT
3137 // Set the link field to the output section index of a section.
3138 void
14b31740 3139 set_link_section(const Output_data* od)
16649710
ILT
3140 {
3141 gold_assert(this->link_ == 0
3142 && !this->should_link_to_symtab_
3143 && !this->should_link_to_dynsym_);
3144 this->link_section_ = od;
3145 }
3146
3147 // Set the link field to a constant.
61ba1cf9
ILT
3148 void
3149 set_link(unsigned int v)
16649710
ILT
3150 {
3151 gold_assert(this->link_section_ == NULL
3152 && !this->should_link_to_symtab_
3153 && !this->should_link_to_dynsym_);
3154 this->link_ = v;
3155 }
61ba1cf9 3156
16649710
ILT
3157 // Record that this section should link to the normal symbol table.
3158 void
3159 set_should_link_to_symtab()
3160 {
3161 gold_assert(this->link_section_ == NULL
3162 && this->link_ == 0
3163 && !this->should_link_to_dynsym_);
3164 this->should_link_to_symtab_ = true;
3165 }
3166
3167 // Record that this section should link to the dynamic symbol table.
3168 void
3169 set_should_link_to_dynsym()
3170 {
3171 gold_assert(this->link_section_ == NULL
3172 && this->link_ == 0
3173 && !this->should_link_to_symtab_);
3174 this->should_link_to_dynsym_ = true;
3175 }
3176
3177 // Return the info field.
3178 unsigned int
3179 info() const
3180 {
755ab8af
ILT
3181 gold_assert(this->info_section_ == NULL
3182 && this->info_symndx_ == NULL);
16649710
ILT
3183 return this->info_;
3184 }
3185
3186 // Set the info field to the output section index of a section.
3187 void
755ab8af 3188 set_info_section(const Output_section* os)
16649710 3189 {
755ab8af
ILT
3190 gold_assert((this->info_section_ == NULL
3191 || (this->info_section_ == os
3192 && this->info_uses_section_index_))
3193 && this->info_symndx_ == NULL
3194 && this->info_ == 0);
3195 this->info_section_ = os;
3196 this->info_uses_section_index_= true;
16649710
ILT
3197 }
3198
6a74a719
ILT
3199 // Set the info field to the symbol table index of a symbol.
3200 void
3201 set_info_symndx(const Symbol* sym)
3202 {
755ab8af
ILT
3203 gold_assert(this->info_section_ == NULL
3204 && (this->info_symndx_ == NULL
3205 || this->info_symndx_ == sym)
3206 && this->info_ == 0);
6a74a719
ILT
3207 this->info_symndx_ = sym;
3208 }
3209
755ab8af
ILT
3210 // Set the info field to the symbol table index of a section symbol.
3211 void
3212 set_info_section_symndx(const Output_section* os)
3213 {
3214 gold_assert((this->info_section_ == NULL
3215 || (this->info_section_ == os
3216 && !this->info_uses_section_index_))
3217 && this->info_symndx_ == NULL
3218 && this->info_ == 0);
3219 this->info_section_ = os;
3220 this->info_uses_section_index_ = false;
3221 }
3222
16649710 3223 // Set the info field to a constant.
61ba1cf9
ILT
3224 void
3225 set_info(unsigned int v)
16649710 3226 {
755ab8af
ILT
3227 gold_assert(this->info_section_ == NULL
3228 && this->info_symndx_ == NULL
3229 && (this->info_ == 0
3230 || this->info_ == v));
16649710
ILT
3231 this->info_ = v;
3232 }
61ba1cf9
ILT
3233
3234 // Set the addralign field.
3235 void
3236 set_addralign(uint64_t v)
3237 { this->addralign_ = v; }
3238
ec661b9d
AM
3239 void
3240 checkpoint_set_addralign(uint64_t val)
3241 {
3242 if (this->checkpoint_ != NULL)
3243 this->checkpoint_->set_addralign(val);
3244 }
3245
d491d34e
ILT
3246 // Whether the output section index has been set.
3247 bool
3248 has_out_shndx() const
3249 { return this->out_shndx_ != -1U; }
3250
c06b7b0b
ILT
3251 // Indicate that we need a symtab index.
3252 void
3253 set_needs_symtab_index()
3254 { this->needs_symtab_index_ = true; }
3255
3256 // Return whether we need a symtab index.
3257 bool
3258 needs_symtab_index() const
3259 { return this->needs_symtab_index_; }
3260
3261 // Get the symtab index.
3262 unsigned int
3263 symtab_index() const
3264 {
a3ad94ed 3265 gold_assert(this->symtab_index_ != 0);
c06b7b0b
ILT
3266 return this->symtab_index_;
3267 }
3268
3269 // Set the symtab index.
3270 void
3271 set_symtab_index(unsigned int index)
3272 {
a3ad94ed 3273 gold_assert(index != 0);
c06b7b0b
ILT
3274 this->symtab_index_ = index;
3275 }
3276
3277 // Indicate that we need a dynsym index.
3278 void
3279 set_needs_dynsym_index()
3280 { this->needs_dynsym_index_ = true; }
3281
3282 // Return whether we need a dynsym index.
3283 bool
3284 needs_dynsym_index() const
3285 { return this->needs_dynsym_index_; }
3286
3287 // Get the dynsym index.
3288 unsigned int
3289 dynsym_index() const
3290 {
a3ad94ed 3291 gold_assert(this->dynsym_index_ != 0);
c06b7b0b
ILT
3292 return this->dynsym_index_;
3293 }
3294
3295 // Set the dynsym index.
3296 void
3297 set_dynsym_index(unsigned int index)
3298 {
a3ad94ed 3299 gold_assert(index != 0);
c06b7b0b
ILT
3300 this->dynsym_index_ = index;
3301 }
3302
9e9143bc
ST
3303 // Sort the attached input sections.
3304 void
3305 sort_attached_input_sections();
3306
2fd32231
ILT
3307 // Return whether the input sections sections attachd to this output
3308 // section may require sorting. This is used to handle constructor
3309 // priorities compatibly with GNU ld.
3310 bool
3311 may_sort_attached_input_sections() const
3312 { return this->may_sort_attached_input_sections_; }
3313
3314 // Record that the input sections attached to this output section
3315 // may require sorting.
3316 void
3317 set_may_sort_attached_input_sections()
3318 { this->may_sort_attached_input_sections_ = true; }
3319
6e9ba2ca
ST
3320 // Returns true if input sections must be sorted according to the
3321 // order in which their name appear in the --section-ordering-file.
3322 bool
3323 input_section_order_specified()
3324 { return this->input_section_order_specified_; }
3325
3326 // Record that input sections must be sorted as some of their names
3327 // match the patterns specified through --section-ordering-file.
3328 void
3329 set_input_section_order_specified()
3330 { this->input_section_order_specified_ = true; }
3331
2fd32231
ILT
3332 // Return whether the input sections attached to this output section
3333 // require sorting. This is used to handle constructor priorities
3334 // compatibly with GNU ld.
3335 bool
3336 must_sort_attached_input_sections() const
3337 { return this->must_sort_attached_input_sections_; }
3338
3339 // Record that the input sections attached to this output section
3340 // require sorting.
3341 void
3342 set_must_sort_attached_input_sections()
3343 { this->must_sort_attached_input_sections_ = true; }
3344
22f0da72
ILT
3345 // Get the order in which this section appears in the PT_LOAD output
3346 // segment.
3347 Output_section_order
3348 order() const
3349 { return this->order_; }
3350
3351 // Set the order for this section.
3352 void
3353 set_order(Output_section_order order)
3354 { this->order_ = order; }
3355
9f1d377b
ILT
3356 // Return whether this section holds relro data--data which has
3357 // dynamic relocations but which may be marked read-only after the
3358 // dynamic relocations have been completed.
3359 bool
3360 is_relro() const
3361 { return this->is_relro_; }
3362
3363 // Record that this section holds relro data.
3364 void
3365 set_is_relro()
3366 { this->is_relro_ = true; }
3367
2d924fd9
ILT
3368 // Record that this section does not hold relro data.
3369 void
3370 clear_is_relro()
3371 { this->is_relro_ = false; }
3372
8a5e3e08
ILT
3373 // True if this is a small section: a section which holds small
3374 // variables.
3375 bool
3376 is_small_section() const
3377 { return this->is_small_section_; }
3378
3379 // Record that this is a small section.
3380 void
3381 set_is_small_section()
3382 { this->is_small_section_ = true; }
3383
3384 // True if this is a large section: a section which holds large
3385 // variables.
3386 bool
3387 is_large_section() const
3388 { return this->is_large_section_; }
3389
3390 // Record that this is a large section.
3391 void
3392 set_is_large_section()
3393 { this->is_large_section_ = true; }
3394
3395 // True if this is a large data (not BSS) section.
3396 bool
3397 is_large_data_section()
3398 { return this->is_large_section_ && this->type_ != elfcpp::SHT_NOBITS; }
3399
730cdc88
ILT
3400 // Return whether this section should be written after all the input
3401 // sections are complete.
3402 bool
3403 after_input_sections() const
3404 { return this->after_input_sections_; }
3405
3406 // Record that this section should be written after all the input
3407 // sections are complete.
3408 void
3409 set_after_input_sections()
3410 { this->after_input_sections_ = true; }
3411
27bc2bce
ILT
3412 // Return whether this section requires postprocessing after all
3413 // relocations have been applied.
3414 bool
3415 requires_postprocessing() const
3416 { return this->requires_postprocessing_; }
3417
16164a6b
ST
3418 bool
3419 is_unique_segment() const
3420 { return this->is_unique_segment_; }
3421
3422 void
3423 set_is_unique_segment()
3424 { this->is_unique_segment_ = true; }
3425
3426 uint64_t extra_segment_flags() const
3427 { return this->extra_segment_flags_; }
3428
3429 void
3430 set_extra_segment_flags(uint64_t flags)
3431 { this->extra_segment_flags_ = flags; }
3432
3433 uint64_t segment_alignment() const
3434 { return this->segment_alignment_; }
3435
3436 void
3437 set_segment_alignment(uint64_t align)
3438 { this->segment_alignment_ = align; }
34171bc5 3439
96803768
ILT
3440 // If a section requires postprocessing, return the buffer to use.
3441 unsigned char*
3442 postprocessing_buffer() const
3443 {
3444 gold_assert(this->postprocessing_buffer_ != NULL);
3445 return this->postprocessing_buffer_;
3446 }
3447
3448 // If a section requires postprocessing, create the buffer to use.
27bc2bce 3449 void
96803768
ILT
3450 create_postprocessing_buffer();
3451
3452 // If a section requires postprocessing, this is the size of the
3453 // buffer to which relocations should be applied.
3454 off_t
3455 postprocessing_buffer_size() const
3456 { return this->current_data_size_for_child(); }
27bc2bce 3457
755ab8af
ILT
3458 // Modify the section name. This is only permitted for an
3459 // unallocated section, and only before the size has been finalized.
3460 // Otherwise the name will not get into Layout::namepool_.
3461 void
3462 set_name(const char* newname)
3463 {
3464 gold_assert((this->flags_ & elfcpp::SHF_ALLOC) == 0);
3465 gold_assert(!this->is_data_size_valid());
3466 this->name_ = newname;
3467 }
3468
730cdc88
ILT
3469 // Return whether the offset OFFSET in the input section SHNDX in
3470 // object OBJECT is being included in the link.
3471 bool
3472 is_input_address_mapped(const Relobj* object, unsigned int shndx,
3473 off_t offset) const;
3474
3475 // Return the offset within the output section of OFFSET relative to
3476 // the start of input section SHNDX in object OBJECT.
8383303e
ILT
3477 section_offset_type
3478 output_offset(const Relobj* object, unsigned int shndx,
3479 section_offset_type offset) const;
730cdc88 3480
b8e6aad9
ILT
3481 // Return the output virtual address of OFFSET relative to the start
3482 // of input section SHNDX in object OBJECT.
3483 uint64_t
3484 output_address(const Relobj* object, unsigned int shndx,
3485 off_t offset) const;
3486
e29e076a
ILT
3487 // Look for the merged section for input section SHNDX in object
3488 // OBJECT. If found, return true, and set *ADDR to the address of
3489 // the start of the merged section. This is not necessary the
3490 // output offset corresponding to input offset 0 in the section,
3491 // since the section may be mapped arbitrarily.
3492 bool
3493 find_starting_output_address(const Relobj* object, unsigned int shndx,
3494 uint64_t* addr) const;
a9a60db6 3495
a445fddf
ILT
3496 // Record that this output section was found in the SECTIONS clause
3497 // of a linker script.
3498 void
3499 set_found_in_sections_clause()
3500 { this->found_in_sections_clause_ = true; }
3501
3502 // Return whether this output section was found in the SECTIONS
3503 // clause of a linker script.
3504 bool
3505 found_in_sections_clause() const
3506 { return this->found_in_sections_clause_; }
3507
27bc2bce
ILT
3508 // Write the section header into *OPHDR.
3509 template<int size, bool big_endian>
3510 void
3511 write_header(const Layout*, const Stringpool*,
3512 elfcpp::Shdr_write<size, big_endian>*) const;
3513
a445fddf
ILT
3514 // The next few calls are for linker script support.
3515
ead1e424
ILT
3516 // In some cases we need to keep a list of the input sections
3517 // associated with this output section. We only need the list if we
3518 // might have to change the offsets of the input section within the
3519 // output section after we add the input section. The ordinary
3520 // input sections will be written out when we process the object
3521 // file, and as such we don't need to track them here. We do need
3522 // to track Output_section_data objects here. We store instances of
3523 // this structure in a std::vector, so it must be a POD. There can
3524 // be many instances of this structure, so we use a union to save
3525 // some space.
3526 class Input_section
3527 {
3528 public:
3529 Input_section()
b8e6aad9
ILT
3530 : shndx_(0), p2align_(0)
3531 {
3532 this->u1_.data_size = 0;
3533 this->u2_.object = NULL;
3534 }
ead1e424 3535
b8e6aad9 3536 // For an ordinary input section.
2ea97941
ILT
3537 Input_section(Relobj* object, unsigned int shndx, off_t data_size,
3538 uint64_t addralign)
3539 : shndx_(shndx),
6e9ba2ca
ST
3540 p2align_(ffsll(static_cast<long long>(addralign))),
3541 section_order_index_(0)
ead1e424 3542 {
2ea97941
ILT
3543 gold_assert(shndx != OUTPUT_SECTION_CODE
3544 && shndx != MERGE_DATA_SECTION_CODE
3545 && shndx != MERGE_STRING_SECTION_CODE
3546 && shndx != RELAXED_INPUT_SECTION_CODE);
3547 this->u1_.data_size = data_size;
b8e6aad9 3548 this->u2_.object = object;
ead1e424
ILT
3549 }
3550
b8e6aad9 3551 // For a non-merge output section.
ead1e424 3552 Input_section(Output_section_data* posd)
6e9ba2ca
ST
3553 : shndx_(OUTPUT_SECTION_CODE), p2align_(0),
3554 section_order_index_(0)
b8e6aad9
ILT
3555 {
3556 this->u1_.data_size = 0;
3557 this->u2_.posd = posd;
3558 }
3559
3560 // For a merge section.
3561 Input_section(Output_section_data* posd, bool is_string, uint64_t entsize)
3562 : shndx_(is_string
3563 ? MERGE_STRING_SECTION_CODE
3564 : MERGE_DATA_SECTION_CODE),
6e9ba2ca
ST
3565 p2align_(0),
3566 section_order_index_(0)
b8e6aad9
ILT
3567 {
3568 this->u1_.entsize = entsize;
3569 this->u2_.posd = posd;
3570 }
ead1e424 3571
20e6d0d6 3572 // For a relaxed input section.
ca09d69a 3573 Input_section(Output_relaxed_input_section* psection)
6e9ba2ca
ST
3574 : shndx_(RELAXED_INPUT_SECTION_CODE), p2align_(0),
3575 section_order_index_(0)
20e6d0d6
DK
3576 {
3577 this->u1_.data_size = 0;
3578 this->u2_.poris = psection;
3579 }
3580
6e9ba2ca
ST
3581 unsigned int
3582 section_order_index() const
3583 {
3584 return this->section_order_index_;
3585 }
3586
3587 void
3588 set_section_order_index(unsigned int number)
3589 {
3590 this->section_order_index_ = number;
3591 }
3592
ead1e424
ILT
3593 // The required alignment.
3594 uint64_t
3595 addralign() const
a3ad94ed 3596 {
6625d24e
DK
3597 if (this->p2align_ != 0)
3598 return static_cast<uint64_t>(1) << (this->p2align_ - 1);
3599 else if (!this->is_input_section())
f34787f8 3600 return this->u2_.posd->addralign();
6625d24e
DK
3601 else
3602 return 0;
a3ad94ed 3603 }
ead1e424 3604
6625d24e
DK
3605 // Set the required alignment, which must be either 0 or a power of 2.
3606 // For input sections that are sub-classes of Output_section_data, a
3607 // alignment of zero means asking the underlying object for alignment.
3608 void
3609 set_addralign(uint64_t addralign)
3610 {
3611 if (addralign == 0)
3612 this->p2align_ = 0;
3613 else
3614 {
3615 gold_assert((addralign & (addralign - 1)) == 0);
3616 this->p2align_ = ffsll(static_cast<long long>(addralign));
3617 }
3618 }
34171bc5 3619
cdc29364
CC
3620 // Return the current required size, without finalization.
3621 off_t
3622 current_data_size() const;
3623
ead1e424
ILT
3624 // Return the required size.
3625 off_t
3626 data_size() const;
3627
a445fddf
ILT
3628 // Whether this is an input section.
3629 bool
3630 is_input_section() const
3631 {
3632 return (this->shndx_ != OUTPUT_SECTION_CODE
3633 && this->shndx_ != MERGE_DATA_SECTION_CODE
20e6d0d6
DK
3634 && this->shndx_ != MERGE_STRING_SECTION_CODE
3635 && this->shndx_ != RELAXED_INPUT_SECTION_CODE);
a445fddf
ILT
3636 }
3637
b8e6aad9
ILT
3638 // Return whether this is a merge section which matches the
3639 // parameters.
3640 bool
87f95776 3641 is_merge_section(bool is_string, uint64_t entsize,
34171bc5 3642 uint64_t addralign) const
b8e6aad9
ILT
3643 {
3644 return (this->shndx_ == (is_string
3645 ? MERGE_STRING_SECTION_CODE
3646 : MERGE_DATA_SECTION_CODE)
87f95776 3647 && this->u1_.entsize == entsize
34171bc5 3648 && this->addralign() == addralign);
b8e6aad9
ILT
3649 }
3650
0439c796
DK
3651 // Return whether this is a merge section for some input section.
3652 bool
3653 is_merge_section() const
3654 {
3655 return (this->shndx_ == MERGE_DATA_SECTION_CODE
3656 || this->shndx_ == MERGE_STRING_SECTION_CODE);
3657 }
3658
20e6d0d6
DK
3659 // Return whether this is a relaxed input section.
3660 bool
3661 is_relaxed_input_section() const
3662 { return this->shndx_ == RELAXED_INPUT_SECTION_CODE; }
3663
3664 // Return whether this is a generic Output_section_data.
3665 bool
3666 is_output_section_data() const
3667 {
3668 return this->shndx_ == OUTPUT_SECTION_CODE;
3669 }
3670
a445fddf
ILT
3671 // Return the object for an input section.
3672 Relobj*
0439c796 3673 relobj() const;
a445fddf
ILT
3674
3675 // Return the input section index for an input section.
3676 unsigned int
0439c796 3677 shndx() const;
a445fddf 3678
20e6d0d6
DK
3679 // For non-input-sections, return the associated Output_section_data
3680 // object.
3681 Output_section_data*
3682 output_section_data() const
3683 {
3684 gold_assert(!this->is_input_section());
3685 return this->u2_.posd;
3686 }
34171bc5 3687
0439c796
DK
3688 // For a merge section, return the Output_merge_base pointer.
3689 Output_merge_base*
3690 output_merge_base() const
3691 {
3692 gold_assert(this->is_merge_section());
3693 return this->u2_.pomb;
3694 }
3695
20e6d0d6
DK
3696 // Return the Output_relaxed_input_section object.
3697 Output_relaxed_input_section*
3698 relaxed_input_section() const
3699 {
3700 gold_assert(this->is_relaxed_input_section());
3701 return this->u2_.poris;
3702 }
3703
b8e6aad9
ILT
3704 // Set the output section.
3705 void
3706 set_output_section(Output_section* os)
3707 {
3708 gold_assert(!this->is_input_section());
34171bc5
AM
3709 Output_section_data* posd =
3710 this->is_relaxed_input_section() ? this->u2_.poris : this->u2_.posd;
20e6d0d6 3711 posd->set_output_section(os);
b8e6aad9
ILT
3712 }
3713
ead1e424 3714 // Set the address and file offset. This is called during
96803768
ILT
3715 // Layout::finalize. SECTION_FILE_OFFSET is the file offset of
3716 // the enclosing section.
ead1e424 3717 void
96803768
ILT
3718 set_address_and_file_offset(uint64_t address, off_t file_offset,
3719 off_t section_file_offset);
ead1e424 3720
a445fddf
ILT
3721 // Reset the address and file offset.
3722 void
3723 reset_address_and_file_offset();
3724
96803768
ILT
3725 // Finalize the data size.
3726 void
3727 finalize_data_size();
9a0910c3 3728
b8e6aad9
ILT
3729 // Add an input section, for SHF_MERGE sections.
3730 bool
2ea97941 3731 add_input_section(Relobj* object, unsigned int shndx)
b8e6aad9
ILT
3732 {
3733 gold_assert(this->shndx_ == MERGE_DATA_SECTION_CODE
3734 || this->shndx_ == MERGE_STRING_SECTION_CODE);
2ea97941 3735 return this->u2_.posd->add_input_section(object, shndx);
b8e6aad9
ILT
3736 }
3737
3738 // Given an input OBJECT, an input section index SHNDX within that
3739 // object, and an OFFSET relative to the start of that input
730cdc88 3740 // section, return whether or not the output offset is known. If
1e983657
ILT
3741 // this function returns true, it sets *POUTPUT to the offset in
3742 // the output section, relative to the start of the input section
3743 // in the output section. *POUTPUT may be different from OFFSET
3744 // for a merged section.
b8e6aad9 3745 bool
8383303e
ILT
3746 output_offset(const Relobj* object, unsigned int shndx,
3747 section_offset_type offset,
ca09d69a 3748 section_offset_type* poutput) const;
b8e6aad9 3749
a9a60db6
ILT
3750 // Return whether this is the merge section for the input section
3751 // SHNDX in OBJECT.
3752 bool
3753 is_merge_section_for(const Relobj* object, unsigned int shndx) const;
3754
ead1e424
ILT
3755 // Write out the data. This does nothing for an input section.
3756 void
3757 write(Output_file*);
3758
96803768
ILT
3759 // Write the data to a buffer. This does nothing for an input
3760 // section.
3761 void
3762 write_to_buffer(unsigned char*);
3763
7d9e3d98
ILT
3764 // Print to a map file.
3765 void
3766 print_to_mapfile(Mapfile*) const;
3767
38c5e8b4
ILT
3768 // Print statistics about merge sections to stderr.
3769 void
3770 print_merge_stats(const char* section_name)
3771 {
3772 if (this->shndx_ == MERGE_DATA_SECTION_CODE
3773 || this->shndx_ == MERGE_STRING_SECTION_CODE)
3774 this->u2_.posd->print_merge_stats(section_name);
3775 }
3776
ead1e424 3777 private:
b8e6aad9
ILT
3778 // Code values which appear in shndx_. If the value is not one of
3779 // these codes, it is the input section index in the object file.
3780 enum
3781 {
3782 // An Output_section_data.
3783 OUTPUT_SECTION_CODE = -1U,
3784 // An Output_section_data for an SHF_MERGE section with
3785 // SHF_STRINGS not set.
3786 MERGE_DATA_SECTION_CODE = -2U,
3787 // An Output_section_data for an SHF_MERGE section with
3788 // SHF_STRINGS set.
20e6d0d6
DK
3789 MERGE_STRING_SECTION_CODE = -3U,
3790 // An Output_section_data for a relaxed input section.
3791 RELAXED_INPUT_SECTION_CODE = -4U
b8e6aad9
ILT
3792 };
3793
b8e6aad9
ILT
3794 // For an ordinary input section, this is the section index in the
3795 // input file. For an Output_section_data, this is
3796 // OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
3797 // MERGE_STRING_SECTION_CODE.
ead1e424
ILT
3798 unsigned int shndx_;
3799 // The required alignment, stored as a power of 2.
3800 unsigned int p2align_;
ead1e424
ILT
3801 union
3802 {
b8e6aad9
ILT
3803 // For an ordinary input section, the section size.
3804 off_t data_size;
20e6d0d6
DK
3805 // For OUTPUT_SECTION_CODE or RELAXED_INPUT_SECTION_CODE, this is not
3806 // used. For MERGE_DATA_SECTION_CODE or MERGE_STRING_SECTION_CODE, the
b8e6aad9
ILT
3807 // entity size.
3808 uint64_t entsize;
3809 } u1_;
3810 union
3811 {
3812 // For an ordinary input section, the object which holds the
ead1e424 3813 // input section.
f6ce93d6 3814 Relobj* object;
b8e6aad9
ILT
3815 // For OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
3816 // MERGE_STRING_SECTION_CODE, the data.
ead1e424 3817 Output_section_data* posd;
0439c796 3818 Output_merge_base* pomb;
20e6d0d6
DK
3819 // For RELAXED_INPUT_SECTION_CODE, the data.
3820 Output_relaxed_input_section* poris;
b8e6aad9 3821 } u2_;
6e9ba2ca
ST
3822 // The line number of the pattern it matches in the --section-ordering-file
3823 // file. It is 0 if does not match any pattern.
3824 unsigned int section_order_index_;
ead1e424
ILT
3825 };
3826
6625d24e
DK
3827 // Store the list of input sections for this Output_section into the
3828 // list passed in. This removes the input sections, leaving only
3829 // any Output_section_data elements. This returns the size of those
3830 // Output_section_data elements. ADDRESS is the address of this
3831 // output section. FILL is the fill value to use, in case there are
3832 // any spaces between the remaining Output_section_data elements.
3833 uint64_t
3834 get_input_sections(uint64_t address, const std::string& fill,
3835 std::list<Input_section>*);
3836
3837 // Add a script input section. A script input section can either be
3838 // a plain input section or a sub-class of Output_section_data.
3839 void
3840 add_script_input_section(const Input_section& input_section);
3841
3842 // Set the current size of the output section.
3843 void
3844 set_current_data_size(off_t size)
3845 { this->set_current_data_size_for_child(size); }
3846
6625d24e
DK
3847 // End of linker script support.
3848
3849 // Save states before doing section layout.
3850 // This is used for relaxation.
3851 void
3852 save_states();
3853
3854 // Restore states prior to section layout.
3855 void
3856 restore_states();
3857
3858 // Discard states.
3859 void
3860 discard_states();
3861
3862 // Convert existing input sections to relaxed input sections.
3863 void
3864 convert_input_sections_to_relaxed_sections(
3865 const std::vector<Output_relaxed_input_section*>& sections);
3866
3867 // Find a relaxed input section to an input section in OBJECT
3868 // with index SHNDX. Return NULL if none is found.
3869 const Output_relaxed_input_section*
3870 find_relaxed_input_section(const Relobj* object, unsigned int shndx) const;
34171bc5 3871
6625d24e
DK
3872 // Whether section offsets need adjustment due to relaxation.
3873 bool
3874 section_offsets_need_adjustment() const
3875 { return this->section_offsets_need_adjustment_; }
3876
3877 // Set section_offsets_need_adjustment to be true.
3878 void
3879 set_section_offsets_need_adjustment()
3880 { this->section_offsets_need_adjustment_ = true; }
3881
ec661b9d
AM
3882 // Set section_offsets_need_adjustment to be false.
3883 void
3884 clear_section_offsets_need_adjustment()
3885 { this->section_offsets_need_adjustment_ = false; }
3886
6625d24e
DK
3887 // Adjust section offsets of input sections in this. This is
3888 // requires if relaxation caused some input sections to change sizes.
3889 void
3890 adjust_section_offsets();
3891
3892 // Whether this is a NOLOAD section.
3893 bool
3894 is_noload() const
3895 { return this->is_noload_; }
3896
3897 // Set NOLOAD flag.
3898 void
3899 set_is_noload()
3900 { this->is_noload_ = true; }
3901
3902 // Print merge statistics to stderr.
3903 void
3904 print_merge_stats();
3905
cdc29364
CC
3906 // Set a fixed layout for the section. Used for incremental update links.
3907 void
3908 set_fixed_layout(uint64_t sh_addr, off_t sh_offset, off_t sh_size,
3909 uint64_t sh_addralign);
3910
3911 // Return TRUE if the section has a fixed layout.
3912 bool
3913 has_fixed_layout() const
3914 { return this->has_fixed_layout_; }
3915
9fbd3822
CC
3916 // Set flag to allow patch space for this section. Used for full
3917 // incremental links.
3918 void
3919 set_is_patch_space_allowed()
3920 { this->is_patch_space_allowed_ = true; }
3921
8ea8cd50
CC
3922 // Set a fill method to use for free space left in the output section
3923 // during incremental links.
3924 void
3925 set_free_space_fill(Output_fill* free_space_fill)
3926 {
3927 this->free_space_fill_ = free_space_fill;
3928 this->free_list_.set_min_hole_size(free_space_fill->minimum_hole_size());
3929 }
3930
cdc29364
CC
3931 // Reserve space within the fixed layout for the section. Used for
3932 // incremental update links.
3933 void
3934 reserve(uint64_t sh_offset, uint64_t sh_size);
3935
5146f448
CC
3936 // Allocate space from the free list for the section. Used for
3937 // incremental update links.
3938 off_t
3939 allocate(off_t len, uint64_t addralign);
3940
ec661b9d
AM
3941 typedef std::vector<Input_section> Input_section_list;
3942
3943 // Allow access to the input sections.
3944 const Input_section_list&
3945 input_sections() const
3946 { return this->input_sections_; }
3947
d8f5a274
AM
3948 Input_section_list&
3949 input_sections()
3950 { return this->input_sections_; }
3951
6625d24e
DK
3952 protected:
3953 // Return the output section--i.e., the object itself.
3954 Output_section*
3955 do_output_section()
3956 { return this; }
3957
3958 const Output_section*
3959 do_output_section() const
3960 { return this; }
3961
3962 // Return the section index in the output file.
3963 unsigned int
3964 do_out_shndx() const
3965 {
3966 gold_assert(this->out_shndx_ != -1U);
3967 return this->out_shndx_;
3968 }
3969
3970 // Set the output section index.
3971 void
3972 do_set_out_shndx(unsigned int shndx)
3973 {
3974 gold_assert(this->out_shndx_ == -1U || this->out_shndx_ == shndx);
3975 this->out_shndx_ = shndx;
3976 }
3977
cdc29364
CC
3978 // Update the data size of the Output_section. For a typical
3979 // Output_section, there is nothing to do, but if there are any
3980 // Output_section_data objects we need to do a trial layout
3981 // here.
3982 virtual void
3983 update_data_size();
3984
6625d24e
DK
3985 // Set the final data size of the Output_section. For a typical
3986 // Output_section, there is nothing to do, but if there are any
3987 // Output_section_data objects we need to set their final addresses
3988 // here.
3989 virtual void
3990 set_final_data_size();
3991
3992 // Reset the address and file offset.
3993 void
3994 do_reset_address_and_file_offset();
3995
3996 // Return true if address and file offset already have reset values. In
3997 // other words, calling reset_address_and_file_offset will not change them.
3998 bool
3999 do_address_and_file_offset_have_reset_values() const;
4000
4001 // Write the data to the file. For a typical Output_section, this
4002 // does nothing: the data is written out by calling Object::Relocate
4003 // on each input object. But if there are any Output_section_data
4004 // objects we do need to write them out here.
4005 virtual void
4006 do_write(Output_file*);
4007
4008 // Return the address alignment--function required by parent class.
4009 uint64_t
4010 do_addralign() const
4011 { return this->addralign_; }
4012
4013 // Return whether there is a load address.
4014 bool
4015 do_has_load_address() const
4016 { return this->has_load_address_; }
4017
4018 // Return the load address.
4019 uint64_t
4020 do_load_address() const
4021 {
4022 gold_assert(this->has_load_address_);
4023 return this->load_address_;
4024 }
4025
4026 // Return whether this is an Output_section.
4027 bool
4028 do_is_section() const
4029 { return true; }
4030
4031 // Return whether this is a section of the specified type.
4032 bool
4033 do_is_section_type(elfcpp::Elf_Word type) const
4034 { return this->type_ == type; }
4035
4036 // Return whether the specified section flag is set.
4037 bool
4038 do_is_section_flag_set(elfcpp::Elf_Xword flag) const
4039 { return (this->flags_ & flag) != 0; }
4040
4041 // Set the TLS offset. Called only for SHT_TLS sections.
4042 void
4043 do_set_tls_offset(uint64_t tls_base);
4044
4045 // Return the TLS offset, relative to the base of the TLS segment.
4046 // Valid only for SHT_TLS sections.
4047 uint64_t
4048 do_tls_offset() const
4049 { return this->tls_offset_; }
4050
4051 // This may be implemented by a child class.
4052 virtual void
4053 do_finalize_name(Layout*)
4054 { }
4055
4056 // Print to the map file.
4057 virtual void
4058 do_print_to_mapfile(Mapfile*) const;
4059
4060 // Record that this section requires postprocessing after all
4061 // relocations have been applied. This is called by a child class.
4062 void
4063 set_requires_postprocessing()
4064 {
4065 this->requires_postprocessing_ = true;
4066 this->after_input_sections_ = true;
4067 }
4068
4069 // Write all the data of an Output_section into the postprocessing
4070 // buffer.
4071 void
4072 write_to_postprocessing_buffer();
4073
131687b4
DK
4074 // Whether this always keeps an input section list
4075 bool
4076 always_keeps_input_sections() const
4077 { return this->always_keeps_input_sections_; }
4078
4079 // Always keep an input section list.
4080 void
4081 set_always_keeps_input_sections()
4082 {
4083 gold_assert(this->current_data_size_for_child() == 0);
4084 this->always_keeps_input_sections_ = true;
4085 }
4086
c0a62865 4087 private:
20e6d0d6
DK
4088 // We only save enough information to undo the effects of section layout.
4089 class Checkpoint_output_section
4090 {
4091 public:
2ea97941
ILT
4092 Checkpoint_output_section(uint64_t addralign, elfcpp::Elf_Xword flags,
4093 const Input_section_list& input_sections,
4094 off_t first_input_offset,
4095 bool attached_input_sections_are_sorted)
4096 : addralign_(addralign), flags_(flags),
4097 input_sections_(input_sections),
20e6d0d6 4098 input_sections_size_(input_sections_.size()),
2ea97941
ILT
4099 input_sections_copy_(), first_input_offset_(first_input_offset),
4100 attached_input_sections_are_sorted_(attached_input_sections_are_sorted)
20e6d0d6
DK
4101 { }
4102
4103 virtual
4104 ~Checkpoint_output_section()
4105 { }
4106
4107 // Return the address alignment.
4108 uint64_t
4109 addralign() const
4110 { return this->addralign_; }
4111
ec661b9d
AM
4112 void
4113 set_addralign(uint64_t val)
4114 { this->addralign_ = val; }
4115
20e6d0d6
DK
4116 // Return the section flags.
4117 elfcpp::Elf_Xword
4118 flags() const
4119 { return this->flags_; }
4120
4121 // Return a reference to the input section list copy.
c0a62865
DK
4122 Input_section_list*
4123 input_sections()
4124 { return &this->input_sections_copy_; }
20e6d0d6
DK
4125
4126 // Return the size of input_sections at the time when checkpoint is
4127 // taken.
4128 size_t
4129 input_sections_size() const
4130 { return this->input_sections_size_; }
4131
4132 // Whether input sections are copied.
4133 bool
4134 input_sections_saved() const
4135 { return this->input_sections_copy_.size() == this->input_sections_size_; }
4136
4137 off_t
4138 first_input_offset() const
4139 { return this->first_input_offset_; }
4140
4141 bool
4142 attached_input_sections_are_sorted() const
4143 { return this->attached_input_sections_are_sorted_; }
4144
4145 // Save input sections.
4146 void
4147 save_input_sections()
4148 {
4149 this->input_sections_copy_.reserve(this->input_sections_size_);
4150 this->input_sections_copy_.clear();
4151 Input_section_list::const_iterator p = this->input_sections_.begin();
4152 gold_assert(this->input_sections_size_ >= this->input_sections_.size());
4153 for(size_t i = 0; i < this->input_sections_size_ ; i++, ++p)
4154 this->input_sections_copy_.push_back(*p);
4155 }
4156
4157 private:
4158 // The section alignment.
4159 uint64_t addralign_;
4160 // The section flags.
4161 elfcpp::Elf_Xword flags_;
4162 // Reference to the input sections to be checkpointed.
4163 const Input_section_list& input_sections_;
4164 // Size of the checkpointed portion of input_sections_;
4165 size_t input_sections_size_;
4166 // Copy of input sections.
4167 Input_section_list input_sections_copy_;
4168 // The offset of the first entry in input_sections_.
4169 off_t first_input_offset_;
4170 // True if the input sections attached to this output section have
4171 // already been sorted.
4172 bool attached_input_sections_are_sorted_;
4173 };
4174
2fd32231
ILT
4175 // This class is used to sort the input sections.
4176 class Input_section_sort_entry;
4177
2a0ff005 4178 // This is the sort comparison function for ctors and dtors.
2fd32231
ILT
4179 struct Input_section_sort_compare
4180 {
4181 bool
4182 operator()(const Input_section_sort_entry&,
4183 const Input_section_sort_entry&) const;
4184 };
4185
2a0ff005
DK
4186 // This is the sort comparison function for .init_array and .fini_array.
4187 struct Input_section_sort_init_fini_compare
4188 {
4189 bool
4190 operator()(const Input_section_sort_entry&,
4191 const Input_section_sort_entry&) const;
4192 };
4193
6e9ba2ca
ST
4194 // This is the sort comparison function when a section order is specified
4195 // from an input file.
4196 struct Input_section_sort_section_order_index_compare
4197 {
4198 bool
4199 operator()(const Input_section_sort_entry&,
4200 const Input_section_sort_entry&) const;
4201 };
4202
c6ac678d
ST
4203 // This is the sort comparison function for .text to sort sections with
4204 // prefixes .text.{unlikely,exit,startup,hot} before other sections.
6934001a
CC
4205 struct Input_section_sort_section_prefix_special_ordering_compare
4206 {
4207 bool
4208 operator()(const Input_section_sort_entry&,
4209 const Input_section_sort_entry&) const;
4210 };
4211
4212 // This is the sort comparison function for sorting sections by name.
4213 struct Input_section_sort_section_name_compare
c6ac678d
ST
4214 {
4215 bool
4216 operator()(const Input_section_sort_entry&,
4217 const Input_section_sort_entry&) const;
4218 };
4219
c51e6221 4220 // Fill data. This is used to fill in data between input sections.
a445fddf
ILT
4221 // It is also used for data statements (BYTE, WORD, etc.) in linker
4222 // scripts. When we have to keep track of the input sections, we
4223 // can use an Output_data_const, but we don't want to have to keep
4224 // track of input sections just to implement fills.
c51e6221
ILT
4225 class Fill
4226 {
4227 public:
2ea97941
ILT
4228 Fill(off_t section_offset, off_t length)
4229 : section_offset_(section_offset),
4230 length_(convert_to_section_size_type(length))
c51e6221
ILT
4231 { }
4232
4233 // Return section offset.
4234 off_t
4235 section_offset() const
4236 { return this->section_offset_; }
4237
4238 // Return fill length.
a445fddf 4239 section_size_type
c51e6221
ILT
4240 length() const
4241 { return this->length_; }
4242
4243 private:
4244 // The offset within the output section.
4245 off_t section_offset_;
4246 // The length of the space to fill.
a445fddf 4247 section_size_type length_;
c51e6221
ILT
4248 };
4249
4250 typedef std::vector<Fill> Fill_list;
4251
c0a62865 4252 // Map used during relaxation of existing sections. This map
5ac169d4
DK
4253 // a section id an input section list index. We assume that
4254 // Input_section_list is a vector.
4255 typedef Unordered_map<Section_id, size_t, Section_id_hash> Relaxation_map;
c0a62865 4256
b8e6aad9
ILT
4257 // Add a new output section by Input_section.
4258 void
4259 add_output_section_data(Input_section*);
4260
4261 // Add an SHF_MERGE input section. Returns true if the section was
0439c796
DK
4262 // handled. If KEEPS_INPUT_SECTIONS is true, the output merge section
4263 // stores information about the merged input sections.
b8e6aad9
ILT
4264 bool
4265 add_merge_input_section(Relobj* object, unsigned int shndx, uint64_t flags,
0439c796
DK
4266 uint64_t entsize, uint64_t addralign,
4267 bool keeps_input_sections);
b8e6aad9
ILT
4268
4269 // Add an output SHF_MERGE section POSD to this output section.
4270 // IS_STRING indicates whether it is a SHF_STRINGS section, and
4271 // ENTSIZE is the entity size. This returns the entry added to
4272 // input_sections_.
4273 void
4274 add_output_merge_section(Output_section_data* posd, bool is_string,
4275 uint64_t entsize);
4276
c0a62865
DK
4277 // Find the merge section into which an input section with index SHNDX in
4278 // OBJECT has been added. Return NULL if none found.
4279 Output_section_data*
4280 find_merge_section(const Relobj* object, unsigned int shndx) const;
4281
c0a62865
DK
4282 // Build a relaxation map.
4283 void
4284 build_relaxation_map(
4285 const Input_section_list& input_sections,
4286 size_t limit,
4287 Relaxation_map* map) const;
4288
4289 // Convert input sections in an input section list into relaxed sections.
4290 void
4291 convert_input_sections_in_list_to_relaxed_sections(
4292 const std::vector<Output_relaxed_input_section*>& relaxed_sections,
4293 const Relaxation_map& map,
4294 Input_section_list* input_sections);
4295
0439c796
DK
4296 // Build the lookup maps for merge and relaxed input sections.
4297 void
4298 build_lookup_maps() const;
4299
a2fb1b05
ILT
4300 // Most of these fields are only valid after layout.
4301
4302 // The name of the section. This will point into a Stringpool.
9a0910c3 4303 const char* name_;
75f65a3e 4304 // The section address is in the parent class.
a2fb1b05
ILT
4305 // The section alignment.
4306 uint64_t addralign_;
4307 // The section entry size.
4308 uint64_t entsize_;
a445fddf
ILT
4309 // The load address. This is only used when using a linker script
4310 // with a SECTIONS clause. The has_load_address_ field indicates
4311 // whether this field is valid.
4312 uint64_t load_address_;
75f65a3e 4313 // The file offset is in the parent class.
16649710 4314 // Set the section link field to the index of this section.
14b31740 4315 const Output_data* link_section_;
16649710 4316 // If link_section_ is NULL, this is the link field.
a2fb1b05 4317 unsigned int link_;
16649710 4318 // Set the section info field to the index of this section.
755ab8af 4319 const Output_section* info_section_;
6a74a719
ILT
4320 // If info_section_ is NULL, set the info field to the symbol table
4321 // index of this symbol.
4322 const Symbol* info_symndx_;
4323 // If info_section_ and info_symndx_ are NULL, this is the section
4324 // info field.
a2fb1b05
ILT
4325 unsigned int info_;
4326 // The section type.
27bc2bce 4327 const elfcpp::Elf_Word type_;
a2fb1b05 4328 // The section flags.
a445fddf 4329 elfcpp::Elf_Xword flags_;
22f0da72
ILT
4330 // The order of this section in the output segment.
4331 Output_section_order order_;
61ba1cf9 4332 // The section index.
ead1e424 4333 unsigned int out_shndx_;
c06b7b0b
ILT
4334 // If there is a STT_SECTION for this output section in the normal
4335 // symbol table, this is the symbol index. This starts out as zero.
4336 // It is initialized in Layout::finalize() to be the index, or -1U
4337 // if there isn't one.
4338 unsigned int symtab_index_;
4339 // If there is a STT_SECTION for this output section in the dynamic
4340 // symbol table, this is the symbol index. This starts out as zero.
4341 // It is initialized in Layout::finalize() to be the index, or -1U
4342 // if there isn't one.
4343 unsigned int dynsym_index_;
ead1e424
ILT
4344 // The input sections. This will be empty in cases where we don't
4345 // need to keep track of them.
4346 Input_section_list input_sections_;
4347 // The offset of the first entry in input_sections_.
4348 off_t first_input_offset_;
c51e6221
ILT
4349 // The fill data. This is separate from input_sections_ because we
4350 // often will need fill sections without needing to keep track of
4351 // input sections.
4352 Fill_list fills_;
96803768
ILT
4353 // If the section requires postprocessing, this buffer holds the
4354 // section contents during relocation.
4355 unsigned char* postprocessing_buffer_;
c06b7b0b
ILT
4356 // Whether this output section needs a STT_SECTION symbol in the
4357 // normal symbol table. This will be true if there is a relocation
4358 // which needs it.
4359 bool needs_symtab_index_ : 1;
4360 // Whether this output section needs a STT_SECTION symbol in the
4361 // dynamic symbol table. This will be true if there is a dynamic
4362 // relocation which needs it.
4363 bool needs_dynsym_index_ : 1;
16649710
ILT
4364 // Whether the link field of this output section should point to the
4365 // normal symbol table.
4366 bool should_link_to_symtab_ : 1;
4367 // Whether the link field of this output section should point to the
4368 // dynamic symbol table.
4369 bool should_link_to_dynsym_ : 1;
730cdc88
ILT
4370 // Whether this section should be written after all the input
4371 // sections are complete.
4372 bool after_input_sections_ : 1;
27bc2bce
ILT
4373 // Whether this section requires post processing after all
4374 // relocations have been applied.
4375 bool requires_postprocessing_ : 1;
a445fddf
ILT
4376 // Whether an input section was mapped to this output section
4377 // because of a SECTIONS clause in a linker script.
4378 bool found_in_sections_clause_ : 1;
4379 // Whether this section has an explicitly specified load address.
4380 bool has_load_address_ : 1;
755ab8af
ILT
4381 // True if the info_section_ field means the section index of the
4382 // section, false if it means the symbol index of the corresponding
4383 // section symbol.
4384 bool info_uses_section_index_ : 1;
6e9ba2ca
ST
4385 // True if input sections attached to this output section have to be
4386 // sorted according to a specified order.
4387 bool input_section_order_specified_ : 1;
2fd32231
ILT
4388 // True if the input sections attached to this output section may
4389 // need sorting.
4390 bool may_sort_attached_input_sections_ : 1;
4391 // True if the input sections attached to this output section must
4392 // be sorted.
4393 bool must_sort_attached_input_sections_ : 1;
4394 // True if the input sections attached to this output section have
4395 // already been sorted.
4396 bool attached_input_sections_are_sorted_ : 1;
9f1d377b
ILT
4397 // True if this section holds relro data.
4398 bool is_relro_ : 1;
8a5e3e08
ILT
4399 // True if this is a small section.
4400 bool is_small_section_ : 1;
4401 // True if this is a large section.
4402 bool is_large_section_ : 1;
f5c870d2
ILT
4403 // Whether code-fills are generated at write.
4404 bool generate_code_fills_at_write_ : 1;
e8cd95c7
ILT
4405 // Whether the entry size field should be zero.
4406 bool is_entsize_zero_ : 1;
8923b24c
DK
4407 // Whether section offsets need adjustment due to relaxation.
4408 bool section_offsets_need_adjustment_ : 1;
1e5d2fb1
DK
4409 // Whether this is a NOLOAD section.
4410 bool is_noload_ : 1;
131687b4
DK
4411 // Whether this always keeps input section.
4412 bool always_keeps_input_sections_ : 1;
cdc29364
CC
4413 // Whether this section has a fixed layout, for incremental update links.
4414 bool has_fixed_layout_ : 1;
9fbd3822
CC
4415 // True if we can add patch space to this section.
4416 bool is_patch_space_allowed_ : 1;
16164a6b
ST
4417 // True if this output section goes into a unique segment.
4418 bool is_unique_segment_ : 1;
7bf1f802
ILT
4419 // For SHT_TLS sections, the offset of this section relative to the base
4420 // of the TLS segment.
4421 uint64_t tls_offset_;
16164a6b
ST
4422 // Additional segment flags, specified via linker plugin, when mapping some
4423 // input sections to unique segments.
34171bc5 4424 uint64_t extra_segment_flags_;
16164a6b
ST
4425 // Segment alignment specified via linker plugin, when mapping some
4426 // input sections to unique segments.
4427 uint64_t segment_alignment_;
20e6d0d6
DK
4428 // Saved checkpoint.
4429 Checkpoint_output_section* checkpoint_;
0439c796
DK
4430 // Fast lookup maps for merged and relaxed input sections.
4431 Output_section_lookup_maps* lookup_maps_;
cdc29364
CC
4432 // List of available regions within the section, for incremental
4433 // update links.
4434 Free_list free_list_;
8ea8cd50
CC
4435 // Method for filling chunks of free space.
4436 Output_fill* free_space_fill_;
9fbd3822
CC
4437 // Amount added as patch space for incremental linking.
4438 off_t patch_space_;
a2fb1b05
ILT
4439};
4440
4441// An output segment. PT_LOAD segments are built from collections of
4442// output sections. Other segments typically point within PT_LOAD
4443// segments, and are built directly as needed.
20e6d0d6
DK
4444//
4445// NOTE: We want to use the copy constructor for this class. During
4446// relaxation, we may try built the segments multiple times. We do
4447// that by copying the original segment list before lay-out, doing
4448// a trial lay-out and roll-back to the saved copied if we need to
4449// to the lay-out again.
a2fb1b05
ILT
4450
4451class Output_segment
4452{
4453 public:
4454 // Create an output segment, specifying the type and flags.
4455 Output_segment(elfcpp::Elf_Word, elfcpp::Elf_Word);
4456
4457 // Return the virtual address.
4458 uint64_t
4459 vaddr() const
4460 { return this->vaddr_; }
4461
4462 // Return the physical address.
4463 uint64_t
4464 paddr() const
4465 { return this->paddr_; }
4466
4467 // Return the segment type.
4468 elfcpp::Elf_Word
4469 type() const
4470 { return this->type_; }
4471
4472 // Return the segment flags.
4473 elfcpp::Elf_Word
4474 flags() const
4475 { return this->flags_; }
4476
92e059d8
ILT
4477 // Return the memory size.
4478 uint64_t
4479 memsz() const
4480 { return this->memsz_; }
4481
ead1e424
ILT
4482 // Return the file size.
4483 off_t
4484 filesz() const
4485 { return this->filesz_; }
4486
516cb3d0
ILT
4487 // Return the file offset.
4488 off_t
4489 offset() const
4490 { return this->offset_; }
4491
8a5e3e08
ILT
4492 // Whether this is a segment created to hold large data sections.
4493 bool
4494 is_large_data_segment() const
4495 { return this->is_large_data_segment_; }
4496
4497 // Record that this is a segment created to hold large data
4498 // sections.
4499 void
4500 set_is_large_data_segment()
4501 { this->is_large_data_segment_ = true; }
4502
16164a6b
ST
4503 bool
4504 is_unique_segment() const
4505 { return this->is_unique_segment_; }
4506
4507 // Mark segment as unique, happens when linker plugins request that
4508 // certain input sections be mapped to unique segments.
4509 void
4510 set_is_unique_segment()
4511 { this->is_unique_segment_ = true; }
4512
75f65a3e
ILT
4513 // Return the maximum alignment of the Output_data.
4514 uint64_t
a445fddf 4515 maximum_alignment();
75f65a3e 4516
22f0da72
ILT
4517 // Add the Output_section OS to this PT_LOAD segment. SEG_FLAGS is
4518 // the segment flags to use.
4519 void
4520 add_output_section_to_load(Layout* layout, Output_section* os,
4521 elfcpp::Elf_Word seg_flags);
4522
4523 // Add the Output_section OS to this non-PT_LOAD segment. SEG_FLAGS
4524 // is the segment flags to use.
a2fb1b05 4525 void
22f0da72
ILT
4526 add_output_section_to_nonload(Output_section* os,
4527 elfcpp::Elf_Word seg_flags);
75f65a3e 4528
1650c4ff
ILT
4529 // Remove an Output_section from this segment. It is an error if it
4530 // is not present.
4531 void
4532 remove_output_section(Output_section* os);
4533
a192ba05
ILT
4534 // Add an Output_data (which need not be an Output_section) to the
4535 // start of this segment.
75f65a3e
ILT
4536 void
4537 add_initial_output_data(Output_data*);
4538
756ac4a8
ILT
4539 // Return true if this segment has any sections which hold actual
4540 // data, rather than being a BSS section.
4541 bool
22f0da72 4542 has_any_data_sections() const;
756ac4a8 4543
22f0da72
ILT
4544 // Whether this segment has a dynamic relocs.
4545 bool
4546 has_dynamic_reloc() const;
4f4c5f80 4547
7404fe1b
AM
4548 // Return the first section.
4549 Output_section*
4550 first_section() const;
4551
a445fddf
ILT
4552 // Return the address of the first section.
4553 uint64_t
7404fe1b
AM
4554 first_section_load_address() const
4555 {
4556 const Output_section* os = this->first_section();
4557 return os->has_load_address() ? os->load_address() : os->address();
4558 }
a445fddf
ILT
4559
4560 // Return whether the addresses have been set already.
4561 bool
4562 are_addresses_set() const
4563 { return this->are_addresses_set_; }
4564
4565 // Set the addresses.
4566 void
2ea97941 4567 set_addresses(uint64_t vaddr, uint64_t paddr)
a445fddf 4568 {
2ea97941
ILT
4569 this->vaddr_ = vaddr;
4570 this->paddr_ = paddr;
a445fddf
ILT
4571 this->are_addresses_set_ = true;
4572 }
4573
a192ba05
ILT
4574 // Update the flags for the flags of an output section added to this
4575 // segment.
4576 void
4577 update_flags_for_output_section(elfcpp::Elf_Xword flags)
4578 {
4579 // The ELF ABI specifies that a PT_TLS segment should always have
4580 // PF_R as the flags.
4581 if (this->type() != elfcpp::PT_TLS)
4582 this->flags_ |= flags;
4583 }
4584
1c4f3631
ILT
4585 // Set the segment flags. This is only used if we have a PHDRS
4586 // clause which explicitly specifies the flags.
4587 void
2ea97941
ILT
4588 set_flags(elfcpp::Elf_Word flags)
4589 { this->flags_ = flags; }
1c4f3631 4590
75f65a3e 4591 // Set the address of the segment to ADDR and the offset to *POFF
a445fddf
ILT
4592 // and set the addresses and offsets of all contained output
4593 // sections accordingly. Set the section indexes of all contained
4594 // output sections starting with *PSHNDX. If RESET is true, first
4595 // reset the addresses of the contained sections. Return the
4596 // address of the immediately following segment. Update *POFF and
4597 // *PSHNDX. This should only be called for a PT_LOAD segment.
75f65a3e 4598 uint64_t
cdc29364 4599 set_section_addresses(Layout*, bool reset, uint64_t addr,
fd064a5b 4600 unsigned int* increase_relro, bool* has_relro,
fc497986 4601 off_t* poff, unsigned int* pshndx);
75f65a3e 4602
0496d5e5
ILT
4603 // Set the minimum alignment of this segment. This may be adjusted
4604 // upward based on the section alignments.
4605 void
a445fddf 4606 set_minimum_p_align(uint64_t align)
f6973bdc
ILT
4607 {
4608 if (align > this->min_p_align_)
4609 this->min_p_align_ = align;
4610 }
0496d5e5 4611
75f65a3e
ILT
4612 // Set the offset of this segment based on the section. This should
4613 // only be called for a non-PT_LOAD segment.
4614 void
1a2dff53 4615 set_offset(unsigned int increase);
75f65a3e 4616
7bf1f802
ILT
4617 // Set the TLS offsets of the sections contained in the PT_TLS segment.
4618 void
4619 set_tls_offsets();
4620
75f65a3e
ILT
4621 // Return the number of output sections.
4622 unsigned int
4623 output_section_count() const;
a2fb1b05 4624
1c4f3631
ILT
4625 // Return the section attached to the list segment with the lowest
4626 // load address. This is used when handling a PHDRS clause in a
4627 // linker script.
4628 Output_section*
4629 section_with_lowest_load_address() const;
4630
61ba1cf9
ILT
4631 // Write the segment header into *OPHDR.
4632 template<int size, bool big_endian>
4633 void
ead1e424 4634 write_header(elfcpp::Phdr_write<size, big_endian>*);
61ba1cf9
ILT
4635
4636 // Write the section headers of associated sections into V.
4637 template<int size, bool big_endian>
4638 unsigned char*
16649710 4639 write_section_headers(const Layout*, const Stringpool*, unsigned char* v,
7d1a9ebb 4640 unsigned int* pshndx) const;
61ba1cf9 4641
7d9e3d98
ILT
4642 // Print the output sections in the map file.
4643 void
4644 print_sections_to_mapfile(Mapfile*) const;
4645
a2fb1b05 4646 private:
22f0da72 4647 typedef std::vector<Output_data*> Output_data_list;
a2fb1b05 4648
ead1e424
ILT
4649 // Find the maximum alignment in an Output_data_list.
4650 static uint64_t
a445fddf 4651 maximum_alignment_list(const Output_data_list*);
ead1e424 4652
9f1d377b
ILT
4653 // Return whether the first data section is a relro section.
4654 bool
4655 is_first_section_relro() const;
4656
75f65a3e
ILT
4657 // Set the section addresses in an Output_data_list.
4658 uint64_t
cdc29364 4659 set_section_list_addresses(Layout*, bool reset, Output_data_list*,
34171bc5
AM
4660 uint64_t addr, off_t* poff, unsigned int* pshndx,
4661 bool* in_tls);
75f65a3e
ILT
4662
4663 // Return the number of Output_sections in an Output_data_list.
4664 unsigned int
4665 output_section_count_list(const Output_data_list*) const;
4666
22f0da72
ILT
4667 // Return whether an Output_data_list has a dynamic reloc.
4668 bool
4669 has_dynamic_reloc_list(const Output_data_list*) const;
4f4c5f80 4670
1c4f3631
ILT
4671 // Find the section with the lowest load address in an
4672 // Output_data_list.
4673 void
4674 lowest_load_address_in_list(const Output_data_list* pdl,
4675 Output_section** found,
4676 uint64_t* found_lma) const;
4677
5f1ab67a
ILT
4678 // Find the first and last entries by address.
4679 void
4680 find_first_and_last_list(const Output_data_list* pdl,
4681 const Output_data** pfirst,
4682 const Output_data** plast) const;
4683
61ba1cf9
ILT
4684 // Write the section headers in the list into V.
4685 template<int size, bool big_endian>
4686 unsigned char*
16649710
ILT
4687 write_section_headers_list(const Layout*, const Stringpool*,
4688 const Output_data_list*, unsigned char* v,
7d1a9ebb 4689 unsigned int* pshdx) const;
61ba1cf9 4690
7d9e3d98
ILT
4691 // Print a section list to the mapfile.
4692 void
4693 print_section_list_to_mapfile(Mapfile*, const Output_data_list*) const;
4694
20e6d0d6
DK
4695 // NOTE: We want to use the copy constructor. Currently, shallow copy
4696 // works for us so we do not need to write our own copy constructor.
34171bc5 4697
22f0da72
ILT
4698 // The list of output data attached to this segment.
4699 Output_data_list output_lists_[ORDER_MAX];
a2fb1b05
ILT
4700 // The segment virtual address.
4701 uint64_t vaddr_;
4702 // The segment physical address.
4703 uint64_t paddr_;
4704 // The size of the segment in memory.
4705 uint64_t memsz_;
a445fddf
ILT
4706 // The maximum section alignment. The is_max_align_known_ field
4707 // indicates whether this has been finalized.
4708 uint64_t max_align_;
4709 // The required minimum value for the p_align field. This is used
4710 // for PT_LOAD segments. Note that this does not mean that
4711 // addresses should be aligned to this value; it means the p_paddr
4712 // and p_vaddr fields must be congruent modulo this value. For
4713 // non-PT_LOAD segments, the dynamic linker works more efficiently
4714 // if the p_align field has the more conventional value, although it
4715 // can align as needed.
4716 uint64_t min_p_align_;
a2fb1b05
ILT
4717 // The offset of the segment data within the file.
4718 off_t offset_;
4719 // The size of the segment data in the file.
4720 off_t filesz_;
4721 // The segment type;
4722 elfcpp::Elf_Word type_;
4723 // The segment flags.
4724 elfcpp::Elf_Word flags_;
a445fddf
ILT
4725 // Whether we have finalized max_align_.
4726 bool is_max_align_known_ : 1;
4727 // Whether vaddr and paddr were set by a linker script.
4728 bool are_addresses_set_ : 1;
8a5e3e08
ILT
4729 // Whether this segment holds large data sections.
4730 bool is_large_data_segment_ : 1;
16164a6b
ST
4731 // Whether this was marked as a unique segment via a linker plugin.
4732 bool is_unique_segment_ : 1;
a2fb1b05
ILT
4733};
4734
61ba1cf9 4735// This class represents the output file.
a2fb1b05
ILT
4736
4737class Output_file
4738{
4739 public:
14144f39 4740 Output_file(const char* name);
61ba1cf9 4741
516cb3d0
ILT
4742 // Indicate that this is a temporary file which should not be
4743 // output.
4744 void
4745 set_is_temporary()
4746 { this->is_temporary_ = true; }
4747
404c2abb
ILT
4748 // Try to open an existing file. Returns false if the file doesn't
4749 // exist, has a size of 0 or can't be mmaped. This method is
aa92d6ed
CC
4750 // thread-unsafe. If BASE_NAME is not NULL, use the contents of
4751 // that file as the base for incremental linking.
404c2abb 4752 bool
aa92d6ed 4753 open_base_file(const char* base_name, bool writable);
404c2abb 4754
61ba1cf9 4755 // Open the output file. FILE_SIZE is the final size of the file.
404c2abb
ILT
4756 // If the file already exists, it is deleted/truncated. This method
4757 // is thread-unsafe.
61ba1cf9
ILT
4758 void
4759 open(off_t file_size);
4760
404c2abb 4761 // Resize the output file. This method is thread-unsafe.
27bc2bce
ILT
4762 void
4763 resize(off_t file_size);
4764
c420411f 4765 // Close the output file (flushing all buffered data) and make sure
404c2abb 4766 // there are no errors. This method is thread-unsafe.
61ba1cf9
ILT
4767 void
4768 close();
4769
c549a694
ILT
4770 // Return the size of this file.
4771 off_t
4772 filesize()
4773 { return this->file_size_; }
4774
3aec4f9c
RÁE
4775 // Return the name of this file.
4776 const char*
4777 filename()
4778 { return this->name_; }
4779
61ba1cf9
ILT
4780 // We currently always use mmap which makes the view handling quite
4781 // simple. In the future we may support other approaches.
a2fb1b05
ILT
4782
4783 // Write data to the output file.
4784 void
fe8718a4 4785 write(off_t offset, const void* data, size_t len)
61ba1cf9
ILT
4786 { memcpy(this->base_ + offset, data, len); }
4787
4788 // Get a buffer to use to write to the file, given the offset into
4789 // the file and the size.
4790 unsigned char*
fe8718a4 4791 get_output_view(off_t start, size_t size)
61ba1cf9 4792 {
8d32f935 4793 gold_assert(start >= 0
34171bc5 4794 && start + static_cast<off_t>(size) <= this->file_size_);
61ba1cf9
ILT
4795 return this->base_ + start;
4796 }
4797
4798 // VIEW must have been returned by get_output_view. Write the
4799 // buffer to the file, passing in the offset and the size.
4800 void
fe8718a4 4801 write_output_view(off_t, size_t, unsigned char*)
61ba1cf9
ILT
4802 { }
4803
730cdc88
ILT
4804 // Get a read/write buffer. This is used when we want to write part
4805 // of the file, read it in, and write it again.
4806 unsigned char*
fe8718a4 4807 get_input_output_view(off_t start, size_t size)
730cdc88
ILT
4808 { return this->get_output_view(start, size); }
4809
4810 // Write a read/write buffer back to the file.
4811 void
fe8718a4 4812 write_input_output_view(off_t, size_t, unsigned char*)
730cdc88
ILT
4813 { }
4814
4815 // Get a read buffer. This is used when we just want to read part
4816 // of the file back it in.
4817 const unsigned char*
fe8718a4 4818 get_input_view(off_t start, size_t size)
730cdc88
ILT
4819 { return this->get_output_view(start, size); }
4820
4821 // Release a read bfufer.
4822 void
fe8718a4 4823 free_input_view(off_t, size_t, const unsigned char*)
730cdc88
ILT
4824 { }
4825
61ba1cf9 4826 private:
404c2abb
ILT
4827 // Map the file into memory or, if that fails, allocate anonymous
4828 // memory.
27bc2bce
ILT
4829 void
4830 map();
4831
26736d8e 4832 // Allocate anonymous memory for the file.
404c2abb 4833 bool
26736d8e
ILT
4834 map_anonymous();
4835
404c2abb
ILT
4836 // Map the file into memory.
4837 bool
aa92d6ed 4838 map_no_anonymous(bool);
404c2abb 4839
c420411f
ILT
4840 // Unmap the file from memory (and flush to disk buffers).
4841 void
4842 unmap();
4843
61ba1cf9
ILT
4844 // File name.
4845 const char* name_;
4846 // File descriptor.
4847 int o_;
4848 // File size.
4849 off_t file_size_;
4850 // Base of file mapped into memory.
4851 unsigned char* base_;
c420411f
ILT
4852 // True iff base_ points to a memory buffer rather than an output file.
4853 bool map_is_anonymous_;
88597d34
ILT
4854 // True if base_ was allocated using new rather than mmap.
4855 bool map_is_allocated_;
516cb3d0
ILT
4856 // True if this is a temporary file which should not be output.
4857 bool is_temporary_;
a2fb1b05
ILT
4858};
4859
4860} // End namespace gold.
4861
4862#endif // !defined(GOLD_OUTPUT_H)