* configure.ac: Don't test for objdump, c++filt, or readelf.
[deliverable/binutils-gdb.git] / gold / output.h
CommitLineData
a2fb1b05
ILT
1// output.h -- manage the output file for gold -*- C++ -*-
2
ebdbb458 3// Copyright 2006, 2007, 2008 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"
54dc6425 30#include "layout.h"
c06b7b0b 31#include "reloc-types.h"
a2fb1b05
ILT
32
33namespace gold
34{
35
61ba1cf9 36class General_options;
a2fb1b05 37class Object;
a3ad94ed 38class Symbol;
a2fb1b05 39class Output_file;
c06b7b0b 40class Output_section;
6a74a719 41class Relocatable_relocs;
a3ad94ed 42class Target;
54dc6425
ILT
43template<int size, bool big_endian>
44class Sized_target;
c06b7b0b
ILT
45template<int size, bool big_endian>
46class Sized_relobj;
54dc6425
ILT
47
48// An abtract class for data which has to go into the output file.
a2fb1b05
ILT
49
50class Output_data
51{
52 public:
27bc2bce
ILT
53 explicit Output_data()
54 : address_(0), data_size_(0), offset_(-1),
55 is_address_valid_(false), is_data_size_valid_(false),
56 is_offset_valid_(false),
4f4c5f80 57 dynamic_reloc_count_(0)
a2fb1b05
ILT
58 { }
59
60 virtual
61 ~Output_data();
62
27bc2bce
ILT
63 // Return the address. For allocated sections, this is only valid
64 // after Layout::finalize is finished.
75f65a3e
ILT
65 uint64_t
66 address() const
27bc2bce
ILT
67 {
68 gold_assert(this->is_address_valid_);
69 return this->address_;
70 }
75f65a3e 71
27bc2bce
ILT
72 // Return the size of the data. For allocated sections, this must
73 // be valid after Layout::finalize calls set_address, but need not
74 // be valid before then.
a2fb1b05 75 off_t
75f65a3e 76 data_size() const
27bc2bce
ILT
77 {
78 gold_assert(this->is_data_size_valid_);
79 return this->data_size_;
80 }
75f65a3e 81
ead1e424 82 // Return the file offset. This is only valid after
27bc2bce
ILT
83 // Layout::finalize is finished. For some non-allocated sections,
84 // it may not be valid until near the end of the link.
75f65a3e
ILT
85 off_t
86 offset() const
27bc2bce
ILT
87 {
88 gold_assert(this->is_offset_valid_);
89 return this->offset_;
90 }
75f65a3e 91
a445fddf
ILT
92 // Reset the address and file offset. This essentially disables the
93 // sanity testing about duplicate and unknown settings.
94 void
95 reset_address_and_file_offset()
96 {
97 this->is_address_valid_ = false;
98 this->is_offset_valid_ = false;
99 this->is_data_size_valid_ = false;
100 this->do_reset_address_and_file_offset();
101 }
102
75f65a3e
ILT
103 // Return the required alignment.
104 uint64_t
105 addralign() const
106 { return this->do_addralign(); }
107
a445fddf
ILT
108 // Return whether this has a load address.
109 bool
110 has_load_address() const
111 { return this->do_has_load_address(); }
112
113 // Return the load address.
114 uint64_t
115 load_address() const
116 { return this->do_load_address(); }
117
75f65a3e
ILT
118 // Return whether this is an Output_section.
119 bool
120 is_section() const
121 { return this->do_is_section(); }
122
123 // Return whether this is an Output_section of the specified type.
124 bool
125 is_section_type(elfcpp::Elf_Word stt) const
126 { return this->do_is_section_type(stt); }
127
128 // Return whether this is an Output_section with the specified flag
129 // set.
130 bool
131 is_section_flag_set(elfcpp::Elf_Xword shf) const
132 { return this->do_is_section_flag_set(shf); }
133
77e65537
ILT
134 // Return the output section that this goes in, if there is one.
135 Output_section*
136 output_section()
137 { return this->do_output_section(); }
138
ead1e424
ILT
139 // Return the output section index, if there is an output section.
140 unsigned int
141 out_shndx() const
142 { return this->do_out_shndx(); }
143
144 // Set the output section index, if this is an output section.
145 void
146 set_out_shndx(unsigned int shndx)
147 { this->do_set_out_shndx(shndx); }
148
27bc2bce
ILT
149 // Set the address and file offset of this data, and finalize the
150 // size of the data. This is called during Layout::finalize for
151 // allocated sections.
75f65a3e 152 void
27bc2bce
ILT
153 set_address_and_file_offset(uint64_t addr, off_t off)
154 {
155 this->set_address(addr);
156 this->set_file_offset(off);
157 this->finalize_data_size();
158 }
159
160 // Set the address.
161 void
162 set_address(uint64_t addr)
163 {
164 gold_assert(!this->is_address_valid_);
165 this->address_ = addr;
166 this->is_address_valid_ = true;
167 }
168
169 // Set the file offset.
170 void
171 set_file_offset(off_t off)
172 {
173 gold_assert(!this->is_offset_valid_);
174 this->offset_ = off;
175 this->is_offset_valid_ = true;
176 }
177
178 // Finalize the data size.
179 void
180 finalize_data_size()
181 {
182 if (!this->is_data_size_valid_)
183 {
184 // Tell the child class to set the data size.
185 this->set_final_data_size();
186 gold_assert(this->is_data_size_valid_);
187 }
188 }
75f65a3e 189
7bf1f802
ILT
190 // Set the TLS offset. Called only for SHT_TLS sections.
191 void
192 set_tls_offset(uint64_t tls_base)
193 { this->do_set_tls_offset(tls_base); }
194
195 // Return the TLS offset, relative to the base of the TLS segment.
196 // Valid only for SHT_TLS sections.
197 uint64_t
198 tls_offset() const
199 { return this->do_tls_offset(); }
200
ead1e424
ILT
201 // Write the data to the output file. This is called after
202 // Layout::finalize is complete.
75f65a3e
ILT
203 void
204 write(Output_file* file)
205 { this->do_write(file); }
a2fb1b05 206
27bc2bce
ILT
207 // This is called by Layout::finalize to note that the sizes of
208 // allocated sections must now be fixed.
a3ad94ed
ILT
209 static void
210 layout_complete()
27bc2bce 211 { Output_data::allocated_sizes_are_fixed = true; }
a3ad94ed 212
730cdc88
ILT
213 // Used to check that layout has been done.
214 static bool
215 is_layout_complete()
27bc2bce 216 { return Output_data::allocated_sizes_are_fixed; }
730cdc88 217
4f4c5f80
ILT
218 // Count the number of dynamic relocations applied to this section.
219 void
220 add_dynamic_reloc()
221 { ++this->dynamic_reloc_count_; }
222
223 // Return the number of dynamic relocations applied to this section.
224 unsigned int
225 dynamic_reloc_count() const
226 { return this->dynamic_reloc_count_; }
227
a9a60db6
ILT
228 // Whether the address is valid.
229 bool
230 is_address_valid() const
231 { return this->is_address_valid_; }
232
233 // Whether the file offset is valid.
234 bool
235 is_offset_valid() const
236 { return this->is_offset_valid_; }
237
238 // Whether the data size is valid.
239 bool
240 is_data_size_valid() const
241 { return this->is_data_size_valid_; }
242
75f65a3e
ILT
243 protected:
244 // Functions that child classes may or in some cases must implement.
245
246 // Write the data to the output file.
a2fb1b05 247 virtual void
75f65a3e
ILT
248 do_write(Output_file*) = 0;
249
250 // Return the required alignment.
251 virtual uint64_t
252 do_addralign() const = 0;
253
a445fddf
ILT
254 // Return whether this has a load address.
255 virtual bool
256 do_has_load_address() const
257 { return false; }
258
259 // Return the load address.
260 virtual uint64_t
261 do_load_address() const
262 { gold_unreachable(); }
263
75f65a3e
ILT
264 // Return whether this is an Output_section.
265 virtual bool
266 do_is_section() const
267 { return false; }
a2fb1b05 268
54dc6425 269 // Return whether this is an Output_section of the specified type.
75f65a3e 270 // This only needs to be implement by Output_section.
54dc6425 271 virtual bool
75f65a3e 272 do_is_section_type(elfcpp::Elf_Word) const
54dc6425
ILT
273 { return false; }
274
75f65a3e
ILT
275 // Return whether this is an Output_section with the specific flag
276 // set. This only needs to be implemented by Output_section.
54dc6425 277 virtual bool
75f65a3e 278 do_is_section_flag_set(elfcpp::Elf_Xword) const
54dc6425
ILT
279 { return false; }
280
77e65537
ILT
281 // Return the output section, if there is one.
282 virtual Output_section*
283 do_output_section()
284 { return NULL; }
285
ead1e424
ILT
286 // Return the output section index, if there is an output section.
287 virtual unsigned int
288 do_out_shndx() const
a3ad94ed 289 { gold_unreachable(); }
ead1e424
ILT
290
291 // Set the output section index, if this is an output section.
292 virtual void
293 do_set_out_shndx(unsigned int)
a3ad94ed 294 { gold_unreachable(); }
ead1e424 295
27bc2bce
ILT
296 // This is a hook for derived classes to set the data size. This is
297 // called by finalize_data_size, normally called during
298 // Layout::finalize, when the section address is set.
75f65a3e 299 virtual void
27bc2bce
ILT
300 set_final_data_size()
301 { gold_unreachable(); }
75f65a3e 302
a445fddf
ILT
303 // A hook for resetting the address and file offset.
304 virtual void
305 do_reset_address_and_file_offset()
306 { }
307
7bf1f802
ILT
308 // Set the TLS offset. Called only for SHT_TLS sections.
309 virtual void
310 do_set_tls_offset(uint64_t)
311 { gold_unreachable(); }
312
313 // Return the TLS offset, relative to the base of the TLS segment.
314 // Valid only for SHT_TLS sections.
315 virtual uint64_t
316 do_tls_offset() const
317 { gold_unreachable(); }
318
75f65a3e
ILT
319 // Functions that child classes may call.
320
a2fb1b05
ILT
321 // Set the size of the data.
322 void
75f65a3e 323 set_data_size(off_t data_size)
a3ad94ed 324 {
27bc2bce
ILT
325 gold_assert(!this->is_data_size_valid_);
326 this->data_size_ = data_size;
327 this->is_data_size_valid_ = true;
328 }
329
330 // Get the current data size--this is for the convenience of
331 // sections which build up their size over time.
332 off_t
333 current_data_size_for_child() const
334 { return this->data_size_; }
335
336 // Set the current data size--this is for the convenience of
337 // sections which build up their size over time.
338 void
339 set_current_data_size_for_child(off_t data_size)
340 {
341 gold_assert(!this->is_data_size_valid_);
a3ad94ed
ILT
342 this->data_size_ = data_size;
343 }
75f65a3e 344
730cdc88
ILT
345 // Return default alignment for the target size.
346 static uint64_t
347 default_alignment();
348
349 // Return default alignment for a specified size--32 or 64.
75f65a3e 350 static uint64_t
730cdc88 351 default_alignment_for_size(int size);
a2fb1b05
ILT
352
353 private:
354 Output_data(const Output_data&);
355 Output_data& operator=(const Output_data&);
356
a3ad94ed 357 // This is used for verification, to make sure that we don't try to
27bc2bce
ILT
358 // change any sizes of allocated sections after we set the section
359 // addresses.
360 static bool allocated_sizes_are_fixed;
a3ad94ed 361
27bc2bce 362 // Memory address in output file.
75f65a3e 363 uint64_t address_;
27bc2bce 364 // Size of data in output file.
75f65a3e 365 off_t data_size_;
27bc2bce 366 // File offset of contents in output file.
75f65a3e 367 off_t offset_;
27bc2bce
ILT
368 // Whether address_ is valid.
369 bool is_address_valid_;
370 // Whether data_size_ is valid.
371 bool is_data_size_valid_;
372 // Whether offset_ is valid.
373 bool is_offset_valid_;
4f4c5f80
ILT
374 // Count of dynamic relocations applied to this section.
375 unsigned int dynamic_reloc_count_;
a2fb1b05
ILT
376};
377
54dc6425
ILT
378// Output the section headers.
379
380class Output_section_headers : public Output_data
381{
382 public:
9025d29d 383 Output_section_headers(const Layout*,
16649710
ILT
384 const Layout::Segment_list*,
385 const Layout::Section_list*,
6a74a719 386 const Layout::Section_list*,
61ba1cf9 387 const Stringpool*);
54dc6425 388
27bc2bce 389 protected:
54dc6425
ILT
390 // Write the data to the file.
391 void
75f65a3e
ILT
392 do_write(Output_file*);
393
394 // Return the required alignment.
395 uint64_t
396 do_addralign() const
730cdc88 397 { return Output_data::default_alignment(); }
54dc6425
ILT
398
399 private:
61ba1cf9
ILT
400 // Write the data to the file with the right size and endianness.
401 template<int size, bool big_endian>
402 void
403 do_sized_write(Output_file*);
404
16649710
ILT
405 const Layout* layout_;
406 const Layout::Segment_list* segment_list_;
6a74a719 407 const Layout::Section_list* section_list_;
16649710 408 const Layout::Section_list* unattached_section_list_;
61ba1cf9 409 const Stringpool* secnamepool_;
54dc6425
ILT
410};
411
412// Output the segment headers.
413
414class Output_segment_headers : public Output_data
415{
416 public:
9025d29d 417 Output_segment_headers(const Layout::Segment_list& segment_list);
54dc6425 418
27bc2bce 419 protected:
54dc6425
ILT
420 // Write the data to the file.
421 void
75f65a3e
ILT
422 do_write(Output_file*);
423
424 // Return the required alignment.
425 uint64_t
426 do_addralign() const
730cdc88 427 { return Output_data::default_alignment(); }
54dc6425
ILT
428
429 private:
61ba1cf9
ILT
430 // Write the data to the file with the right size and endianness.
431 template<int size, bool big_endian>
432 void
433 do_sized_write(Output_file*);
434
54dc6425
ILT
435 const Layout::Segment_list& segment_list_;
436};
437
438// Output the ELF file header.
439
440class Output_file_header : public Output_data
441{
442 public:
9025d29d 443 Output_file_header(const Target*,
54dc6425 444 const Symbol_table*,
d391083d
ILT
445 const Output_segment_headers*,
446 const char* entry);
75f65a3e
ILT
447
448 // Add information about the section headers. We lay out the ELF
449 // file header before we create the section headers.
450 void set_section_info(const Output_section_headers*,
451 const Output_section* shstrtab);
54dc6425 452
27bc2bce 453 protected:
54dc6425
ILT
454 // Write the data to the file.
455 void
75f65a3e
ILT
456 do_write(Output_file*);
457
458 // Return the required alignment.
459 uint64_t
460 do_addralign() const
730cdc88 461 { return Output_data::default_alignment(); }
75f65a3e 462
54dc6425 463 private:
61ba1cf9
ILT
464 // Write the data to the file with the right size and endianness.
465 template<int size, bool big_endian>
466 void
467 do_sized_write(Output_file*);
468
d391083d
ILT
469 // Return the value to use for the entry address.
470 template<int size>
471 typename elfcpp::Elf_types<size>::Elf_Addr
472 entry();
473
54dc6425
ILT
474 const Target* target_;
475 const Symbol_table* symtab_;
61ba1cf9 476 const Output_segment_headers* segment_header_;
54dc6425
ILT
477 const Output_section_headers* section_header_;
478 const Output_section* shstrtab_;
d391083d 479 const char* entry_;
54dc6425
ILT
480};
481
ead1e424
ILT
482// Output sections are mainly comprised of input sections. However,
483// there are cases where we have data to write out which is not in an
484// input section. Output_section_data is used in such cases. This is
485// an abstract base class.
486
487class Output_section_data : public Output_data
488{
489 public:
490 Output_section_data(off_t data_size, uint64_t addralign)
27bc2bce
ILT
491 : Output_data(), output_section_(NULL), addralign_(addralign)
492 { this->set_data_size(data_size); }
ead1e424
ILT
493
494 Output_section_data(uint64_t addralign)
27bc2bce 495 : Output_data(), output_section_(NULL), addralign_(addralign)
ead1e424
ILT
496 { }
497
16649710
ILT
498 // Return the output section.
499 const Output_section*
500 output_section() const
501 { return this->output_section_; }
502
ead1e424
ILT
503 // Record the output section.
504 void
16649710 505 set_output_section(Output_section* os);
ead1e424 506
b8e6aad9
ILT
507 // Add an input section, for SHF_MERGE sections. This returns true
508 // if the section was handled.
509 bool
510 add_input_section(Relobj* object, unsigned int shndx)
511 { return this->do_add_input_section(object, shndx); }
512
513 // Given an input OBJECT, an input section index SHNDX within that
514 // object, and an OFFSET relative to the start of that input
730cdc88
ILT
515 // section, return whether or not the corresponding offset within
516 // the output section is known. If this function returns true, it
517 // sets *POUTPUT to the output offset. The value -1 indicates that
518 // this input offset is being discarded.
8f00aeb8 519 bool
8383303e
ILT
520 output_offset(const Relobj* object, unsigned int shndx,
521 section_offset_type offset,
522 section_offset_type *poutput) const
730cdc88 523 { return this->do_output_offset(object, shndx, offset, poutput); }
b8e6aad9 524
a9a60db6
ILT
525 // Return whether this is the merge section for the input section
526 // SHNDX in OBJECT. This should return true when output_offset
527 // would return true for some values of OFFSET.
528 bool
529 is_merge_section_for(const Relobj* object, unsigned int shndx) const
530 { return this->do_is_merge_section_for(object, shndx); }
531
96803768
ILT
532 // Write the contents to a buffer. This is used for sections which
533 // require postprocessing, such as compression.
534 void
535 write_to_buffer(unsigned char* buffer)
536 { this->do_write_to_buffer(buffer); }
537
38c5e8b4
ILT
538 // Print merge stats to stderr. This should only be called for
539 // SHF_MERGE sections.
540 void
541 print_merge_stats(const char* section_name)
542 { this->do_print_merge_stats(section_name); }
543
ead1e424
ILT
544 protected:
545 // The child class must implement do_write.
546
16649710
ILT
547 // The child class may implement specific adjustments to the output
548 // section.
549 virtual void
550 do_adjust_output_section(Output_section*)
551 { }
552
b8e6aad9
ILT
553 // May be implemented by child class. Return true if the section
554 // was handled.
555 virtual bool
556 do_add_input_section(Relobj*, unsigned int)
557 { gold_unreachable(); }
558
730cdc88 559 // The child class may implement output_offset.
b8e6aad9 560 virtual bool
8383303e
ILT
561 do_output_offset(const Relobj*, unsigned int, section_offset_type,
562 section_offset_type*) const
b8e6aad9
ILT
563 { return false; }
564
a9a60db6
ILT
565 // The child class may implement is_merge_section_for.
566 virtual bool
567 do_is_merge_section_for(const Relobj*, unsigned int) const
568 { return false; }
569
96803768
ILT
570 // The child class may implement write_to_buffer. Most child
571 // classes can not appear in a compressed section, and they do not
572 // implement this.
573 virtual void
574 do_write_to_buffer(unsigned char*)
575 { gold_unreachable(); }
576
38c5e8b4
ILT
577 // Print merge statistics.
578 virtual void
579 do_print_merge_stats(const char*)
580 { gold_unreachable(); }
581
ead1e424
ILT
582 // Return the required alignment.
583 uint64_t
584 do_addralign() const
585 { return this->addralign_; }
586
77e65537
ILT
587 // Return the output section.
588 Output_section*
589 do_output_section()
590 { return this->output_section_; }
591
ead1e424
ILT
592 // Return the section index of the output section.
593 unsigned int
594 do_out_shndx() const;
595
5a6f7e2d
ILT
596 // Set the alignment.
597 void
598 set_addralign(uint64_t addralign)
599 { this->addralign_ = addralign; }
600
ead1e424
ILT
601 private:
602 // The output section for this section.
77e65537 603 Output_section* output_section_;
ead1e424
ILT
604 // The required alignment.
605 uint64_t addralign_;
606};
607
27bc2bce
ILT
608// Some Output_section_data classes build up their data step by step,
609// rather than all at once. This class provides an interface for
610// them.
611
612class Output_section_data_build : public Output_section_data
613{
614 public:
615 Output_section_data_build(uint64_t addralign)
616 : Output_section_data(addralign)
617 { }
618
619 // Get the current data size.
620 off_t
621 current_data_size() const
622 { return this->current_data_size_for_child(); }
623
624 // Set the current data size.
625 void
626 set_current_data_size(off_t data_size)
627 { this->set_current_data_size_for_child(data_size); }
628
629 protected:
630 // Set the final data size.
631 virtual void
632 set_final_data_size()
633 { this->set_data_size(this->current_data_size_for_child()); }
634};
635
dbe717ef
ILT
636// A simple case of Output_data in which we have constant data to
637// output.
ead1e424 638
dbe717ef 639class Output_data_const : public Output_section_data
ead1e424
ILT
640{
641 public:
dbe717ef
ILT
642 Output_data_const(const std::string& data, uint64_t addralign)
643 : Output_section_data(data.size(), addralign), data_(data)
644 { }
645
646 Output_data_const(const char* p, off_t len, uint64_t addralign)
647 : Output_section_data(len, addralign), data_(p, len)
648 { }
649
650 Output_data_const(const unsigned char* p, off_t len, uint64_t addralign)
651 : Output_section_data(len, addralign),
652 data_(reinterpret_cast<const char*>(p), len)
653 { }
654
27bc2bce 655 protected:
a3ad94ed 656 // Write the data to the output file.
dbe717ef 657 void
a3ad94ed 658 do_write(Output_file*);
dbe717ef 659
96803768
ILT
660 // Write the data to a buffer.
661 void
662 do_write_to_buffer(unsigned char* buffer)
663 { memcpy(buffer, this->data_.data(), this->data_.size()); }
664
dbe717ef
ILT
665 private:
666 std::string data_;
667};
668
a3ad94ed
ILT
669// Another version of Output_data with constant data, in which the
670// buffer is allocated by the caller.
dbe717ef 671
a3ad94ed 672class Output_data_const_buffer : public Output_section_data
dbe717ef
ILT
673{
674 public:
a3ad94ed
ILT
675 Output_data_const_buffer(const unsigned char* p, off_t len,
676 uint64_t addralign)
677 : Output_section_data(len, addralign), p_(p)
678 { }
679
27bc2bce 680 protected:
a3ad94ed
ILT
681 // Write the data the output file.
682 void
683 do_write(Output_file*);
684
96803768
ILT
685 // Write the data to a buffer.
686 void
687 do_write_to_buffer(unsigned char* buffer)
688 { memcpy(buffer, this->p_, this->data_size()); }
689
a3ad94ed
ILT
690 private:
691 const unsigned char* p_;
692};
693
27bc2bce
ILT
694// A place holder for a fixed amount of data written out via some
695// other mechanism.
a3ad94ed 696
27bc2bce 697class Output_data_fixed_space : public Output_section_data
a3ad94ed
ILT
698{
699 public:
27bc2bce 700 Output_data_fixed_space(off_t data_size, uint64_t addralign)
a3ad94ed
ILT
701 : Output_section_data(data_size, addralign)
702 { }
703
27bc2bce
ILT
704 protected:
705 // Write out the data--the actual data must be written out
706 // elsewhere.
707 void
708 do_write(Output_file*)
ead1e424 709 { }
27bc2bce 710};
ead1e424 711
27bc2bce
ILT
712// A place holder for variable sized data written out via some other
713// mechanism.
714
715class Output_data_space : public Output_section_data_build
716{
717 public:
718 explicit Output_data_space(uint64_t addralign)
719 : Output_section_data_build(addralign)
720 { }
ead1e424 721
5a6f7e2d
ILT
722 // Set the alignment.
723 void
724 set_space_alignment(uint64_t align)
725 { this->set_addralign(align); }
726
27bc2bce
ILT
727 protected:
728 // Write out the data--the actual data must be written out
729 // elsewhere.
ead1e424
ILT
730 void
731 do_write(Output_file*)
732 { }
733};
734
a3ad94ed
ILT
735// A string table which goes into an output section.
736
737class Output_data_strtab : public Output_section_data
738{
739 public:
740 Output_data_strtab(Stringpool* strtab)
741 : Output_section_data(1), strtab_(strtab)
742 { }
743
27bc2bce 744 protected:
a3ad94ed
ILT
745 // This is called to set the address and file offset. Here we make
746 // sure that the Stringpool is finalized.
747 void
27bc2bce 748 set_final_data_size();
a3ad94ed
ILT
749
750 // Write out the data.
751 void
752 do_write(Output_file*);
753
96803768
ILT
754 // Write the data to a buffer.
755 void
756 do_write_to_buffer(unsigned char* buffer)
757 { this->strtab_->write_to_buffer(buffer, this->data_size()); }
758
a3ad94ed
ILT
759 private:
760 Stringpool* strtab_;
761};
762
c06b7b0b
ILT
763// This POD class is used to represent a single reloc in the output
764// file. This could be a private class within Output_data_reloc, but
765// the templatization is complex enough that I broke it out into a
766// separate class. The class is templatized on either elfcpp::SHT_REL
767// or elfcpp::SHT_RELA, and also on whether this is a dynamic
768// relocation or an ordinary relocation.
769
dceae3c1
ILT
770// A relocation can be against a global symbol, a local symbol, a
771// local section symbol, an output section, or the undefined symbol at
772// index 0. We represent the latter by using a NULL global symbol.
c06b7b0b
ILT
773
774template<int sh_type, bool dynamic, int size, bool big_endian>
775class Output_reloc;
776
777template<bool dynamic, int size, bool big_endian>
778class Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>
779{
780 public:
781 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
782
783 // An uninitialized entry. We need this because we want to put
784 // instances of this class into an STL container.
785 Output_reloc()
786 : local_sym_index_(INVALID_CODE)
787 { }
788
dceae3c1
ILT
789 // We have a bunch of different constructors. They come in pairs
790 // depending on how the address of the relocation is specified. It
791 // can either be an offset in an Output_data or an offset in an
792 // input section.
793
c06b7b0b 794 // A reloc against a global symbol.
5a6f7e2d 795
a3ad94ed 796 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od,
e8c846c3 797 Address address, bool is_relative);
5a6f7e2d
ILT
798
799 Output_reloc(Symbol* gsym, unsigned int type, Relobj* relobj,
e8c846c3 800 unsigned int shndx, Address address, bool is_relative);
c06b7b0b 801
dceae3c1 802 // A reloc against a local symbol or local section symbol.
5a6f7e2d
ILT
803
804 Output_reloc(Sized_relobj<size, big_endian>* relobj,
7bf1f802 805 unsigned int local_sym_index, unsigned int type,
dceae3c1
ILT
806 Output_data* od, Address address, bool is_relative,
807 bool is_section_symbol);
5a6f7e2d
ILT
808
809 Output_reloc(Sized_relobj<size, big_endian>* relobj,
7bf1f802 810 unsigned int local_sym_index, unsigned int type,
dceae3c1
ILT
811 unsigned int shndx, Address address, bool is_relative,
812 bool is_section_symbol);
c06b7b0b
ILT
813
814 // A reloc against the STT_SECTION symbol of an output section.
5a6f7e2d 815
a3ad94ed 816 Output_reloc(Output_section* os, unsigned int type, Output_data* od,
7bf1f802 817 Address address);
5a6f7e2d
ILT
818
819 Output_reloc(Output_section* os, unsigned int type, Relobj* relobj,
7bf1f802 820 unsigned int shndx, Address address);
c06b7b0b 821
e8c846c3
ILT
822 // Return TRUE if this is a RELATIVE relocation.
823 bool
824 is_relative() const
825 { return this->is_relative_; }
826
dceae3c1
ILT
827 // Return whether this is against a local section symbol.
828 bool
829 is_local_section_symbol() const
830 {
831 return (this->local_sym_index_ != GSYM_CODE
832 && this->local_sym_index_ != SECTION_CODE
833 && this->local_sym_index_ != INVALID_CODE
834 && this->is_section_symbol_);
835 }
836
837 // For a local section symbol, return the offset of the input
838 // section within the output section.
839 section_offset_type
840 local_section_offset() const;
841
d1f003c6
ILT
842 // Get the value of the symbol referred to by a Rel relocation when
843 // we are adding the given ADDEND.
e8c846c3 844 Address
d1f003c6 845 symbol_value(Address addend) const;
e8c846c3 846
c06b7b0b
ILT
847 // Write the reloc entry to an output view.
848 void
849 write(unsigned char* pov) const;
850
851 // Write the offset and info fields to Write_rel.
852 template<typename Write_rel>
853 void write_rel(Write_rel*) const;
854
855 private:
dceae3c1
ILT
856 // Record that we need a dynamic symbol index.
857 void
858 set_needs_dynsym_index();
859
860 // Return the symbol index.
c06b7b0b
ILT
861 unsigned int
862 get_symbol_index() const;
863
864 // Codes for local_sym_index_.
865 enum
866 {
867 // Global symbol.
868 GSYM_CODE = -1U,
869 // Output section.
870 SECTION_CODE = -2U,
871 // Invalid uninitialized entry.
872 INVALID_CODE = -3U
873 };
874
875 union
876 {
dceae3c1
ILT
877 // For a local symbol or local section symbol
878 // (this->local_sym_index_ >= 0), the object. We will never
879 // generate a relocation against a local symbol in a dynamic
880 // object; that doesn't make sense. And our callers will always
881 // be templatized, so we use Sized_relobj here.
5a6f7e2d 882 Sized_relobj<size, big_endian>* relobj;
dceae3c1
ILT
883 // For a global symbol (this->local_sym_index_ == GSYM_CODE, the
884 // symbol. If this is NULL, it indicates a relocation against the
885 // undefined 0 symbol.
c06b7b0b 886 Symbol* gsym;
dceae3c1
ILT
887 // For a relocation against an output section
888 // (this->local_sym_index_ == SECTION_CODE), the output section.
c06b7b0b 889 Output_section* os;
5a6f7e2d
ILT
890 } u1_;
891 union
892 {
dceae3c1
ILT
893 // If this->shndx_ is not INVALID CODE, the object which holds the
894 // input section being used to specify the reloc address.
5a6f7e2d 895 Relobj* relobj;
dceae3c1 896 // If this->shndx_ is INVALID_CODE, the output data being used to
5a6f7e2d
ILT
897 // specify the reloc address. This may be NULL if the reloc
898 // address is absolute.
899 Output_data* od;
900 } u2_;
901 // The address offset within the input section or the Output_data.
902 Address address_;
dceae3c1
ILT
903 // This is GSYM_CODE for a global symbol, or SECTION_CODE for a
904 // relocation against an output section, or INVALID_CODE for an
905 // uninitialized value. Otherwise, for a local symbol
906 // (this->is_section_symbol_ is false), the local symbol index. For
907 // a local section symbol (this->is_section_symbol_ is true), the
908 // section index in the input file.
c06b7b0b 909 unsigned int local_sym_index_;
a3ad94ed 910 // The reloc type--a processor specific code.
dceae3c1 911 unsigned int type_ : 30;
e8c846c3
ILT
912 // True if the relocation is a RELATIVE relocation.
913 bool is_relative_ : 1;
dceae3c1
ILT
914 // True if the relocation is against a section symbol.
915 bool is_section_symbol_ : 1;
5a6f7e2d
ILT
916 // If the reloc address is an input section in an object, the
917 // section index. This is INVALID_CODE if the reloc address is
918 // specified in some other way.
919 unsigned int shndx_;
c06b7b0b
ILT
920};
921
922// The SHT_RELA version of Output_reloc<>. This is just derived from
923// the SHT_REL version of Output_reloc, but it adds an addend.
924
925template<bool dynamic, int size, bool big_endian>
926class Output_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>
927{
928 public:
929 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
930 typedef typename elfcpp::Elf_types<size>::Elf_Addr Addend;
931
932 // An uninitialized entry.
933 Output_reloc()
934 : rel_()
935 { }
936
937 // A reloc against a global symbol.
5a6f7e2d 938
a3ad94ed 939 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od,
e8c846c3
ILT
940 Address address, Addend addend, bool is_relative)
941 : rel_(gsym, type, od, address, is_relative), addend_(addend)
c06b7b0b
ILT
942 { }
943
5a6f7e2d 944 Output_reloc(Symbol* gsym, unsigned int type, Relobj* relobj,
e8c846c3
ILT
945 unsigned int shndx, Address address, Addend addend,
946 bool is_relative)
947 : rel_(gsym, type, relobj, shndx, address, is_relative), addend_(addend)
5a6f7e2d
ILT
948 { }
949
c06b7b0b 950 // A reloc against a local symbol.
5a6f7e2d
ILT
951
952 Output_reloc(Sized_relobj<size, big_endian>* relobj,
e8c846c3
ILT
953 unsigned int local_sym_index, unsigned int type,
954 Output_data* od, Address address,
dceae3c1
ILT
955 Addend addend, bool is_relative, bool is_section_symbol)
956 : rel_(relobj, local_sym_index, type, od, address, is_relative,
957 is_section_symbol),
e8c846c3 958 addend_(addend)
5a6f7e2d
ILT
959 { }
960
961 Output_reloc(Sized_relobj<size, big_endian>* relobj,
e8c846c3
ILT
962 unsigned int local_sym_index, unsigned int type,
963 unsigned int shndx, Address address,
dceae3c1
ILT
964 Addend addend, bool is_relative, bool is_section_symbol)
965 : rel_(relobj, local_sym_index, type, shndx, address, is_relative,
966 is_section_symbol),
5a6f7e2d 967 addend_(addend)
c06b7b0b
ILT
968 { }
969
970 // A reloc against the STT_SECTION symbol of an output section.
5a6f7e2d 971
a3ad94ed
ILT
972 Output_reloc(Output_section* os, unsigned int type, Output_data* od,
973 Address address, Addend addend)
974 : rel_(os, type, od, address), addend_(addend)
c06b7b0b
ILT
975 { }
976
5a6f7e2d
ILT
977 Output_reloc(Output_section* os, unsigned int type, Relobj* relobj,
978 unsigned int shndx, Address address, Addend addend)
979 : rel_(os, type, relobj, shndx, address), addend_(addend)
980 { }
981
c06b7b0b
ILT
982 // Write the reloc entry to an output view.
983 void
984 write(unsigned char* pov) const;
985
986 private:
987 // The basic reloc.
988 Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian> rel_;
989 // The addend.
990 Addend addend_;
991};
992
993// Output_data_reloc is used to manage a section containing relocs.
994// SH_TYPE is either elfcpp::SHT_REL or elfcpp::SHT_RELA. DYNAMIC
995// indicates whether this is a dynamic relocation or a normal
996// relocation. Output_data_reloc_base is a base class.
997// Output_data_reloc is the real class, which we specialize based on
998// the reloc type.
999
1000template<int sh_type, bool dynamic, int size, bool big_endian>
27bc2bce 1001class Output_data_reloc_base : public Output_section_data_build
c06b7b0b
ILT
1002{
1003 public:
1004 typedef Output_reloc<sh_type, dynamic, size, big_endian> Output_reloc_type;
1005 typedef typename Output_reloc_type::Address Address;
1006 static const int reloc_size =
1007 Reloc_types<sh_type, size, big_endian>::reloc_size;
1008
1009 // Construct the section.
1010 Output_data_reloc_base()
27bc2bce 1011 : Output_section_data_build(Output_data::default_alignment_for_size(size))
c06b7b0b
ILT
1012 { }
1013
27bc2bce 1014 protected:
c06b7b0b
ILT
1015 // Write out the data.
1016 void
1017 do_write(Output_file*);
1018
16649710
ILT
1019 // Set the entry size and the link.
1020 void
1021 do_adjust_output_section(Output_section *os);
1022
c06b7b0b
ILT
1023 // Add a relocation entry.
1024 void
4f4c5f80 1025 add(Output_data *od, const Output_reloc_type& reloc)
c06b7b0b
ILT
1026 {
1027 this->relocs_.push_back(reloc);
27bc2bce 1028 this->set_current_data_size(this->relocs_.size() * reloc_size);
4f4c5f80 1029 od->add_dynamic_reloc();
c06b7b0b
ILT
1030 }
1031
1032 private:
1033 typedef std::vector<Output_reloc_type> Relocs;
1034
1035 Relocs relocs_;
1036};
1037
1038// The class which callers actually create.
1039
1040template<int sh_type, bool dynamic, int size, bool big_endian>
1041class Output_data_reloc;
1042
1043// The SHT_REL version of Output_data_reloc.
1044
1045template<bool dynamic, int size, bool big_endian>
1046class Output_data_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>
1047 : public Output_data_reloc_base<elfcpp::SHT_REL, dynamic, size, big_endian>
1048{
dceae3c1 1049 private:
c06b7b0b
ILT
1050 typedef Output_data_reloc_base<elfcpp::SHT_REL, dynamic, size,
1051 big_endian> Base;
1052
1053 public:
1054 typedef typename Base::Output_reloc_type Output_reloc_type;
1055 typedef typename Output_reloc_type::Address Address;
1056
1057 Output_data_reloc()
1058 : Output_data_reloc_base<elfcpp::SHT_REL, dynamic, size, big_endian>()
1059 { }
1060
1061 // Add a reloc against a global symbol.
5a6f7e2d 1062
c06b7b0b 1063 void
a3ad94ed 1064 add_global(Symbol* gsym, unsigned int type, Output_data* od, Address address)
e8c846c3 1065 { this->add(od, Output_reloc_type(gsym, type, od, address, false)); }
c06b7b0b 1066
5a6f7e2d 1067 void
4f4c5f80 1068 add_global(Symbol* gsym, unsigned int type, Output_data* od, Relobj* relobj,
5a6f7e2d 1069 unsigned int shndx, Address address)
e8c846c3
ILT
1070 { this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1071 false)); }
1072
1073 // Add a RELATIVE reloc against a global symbol. The final relocation
1074 // will not reference the symbol.
1075
1076 void
1077 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
1078 Address address)
1079 { this->add(od, Output_reloc_type(gsym, type, od, address, true)); }
1080
1081 void
1082 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
1083 Relobj* relobj, unsigned int shndx, Address address)
dceae3c1
ILT
1084 {
1085 this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1086 true));
1087 }
5a6f7e2d 1088
c06b7b0b 1089 // Add a reloc against a local symbol.
5a6f7e2d 1090
c06b7b0b 1091 void
5a6f7e2d 1092 add_local(Sized_relobj<size, big_endian>* relobj,
a3ad94ed
ILT
1093 unsigned int local_sym_index, unsigned int type,
1094 Output_data* od, Address address)
dceae3c1
ILT
1095 {
1096 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od,
1097 address, false, false));
1098 }
5a6f7e2d
ILT
1099
1100 void
1101 add_local(Sized_relobj<size, big_endian>* relobj,
1102 unsigned int local_sym_index, unsigned int type,
4f4c5f80 1103 Output_data* od, unsigned int shndx, Address address)
dceae3c1
ILT
1104 {
1105 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
1106 address, false, false));
1107 }
e8c846c3
ILT
1108
1109 // Add a RELATIVE reloc against a local symbol.
5a6f7e2d 1110
e8c846c3
ILT
1111 void
1112 add_local_relative(Sized_relobj<size, big_endian>* relobj,
1113 unsigned int local_sym_index, unsigned int type,
1114 Output_data* od, Address address)
dceae3c1
ILT
1115 {
1116 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od,
1117 address, true, false));
1118 }
e8c846c3
ILT
1119
1120 void
1121 add_local_relative(Sized_relobj<size, big_endian>* relobj,
1122 unsigned int local_sym_index, unsigned int type,
1123 Output_data* od, unsigned int shndx, Address address)
dceae3c1
ILT
1124 {
1125 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
1126 address, true, false));
1127 }
1128
1129 // Add a reloc against a local section symbol. This will be
1130 // converted into a reloc against the STT_SECTION symbol of the
1131 // output section.
1132
1133 void
1134 add_local_section(Sized_relobj<size, big_endian>* relobj,
1135 unsigned int input_shndx, unsigned int type,
1136 Output_data* od, Address address)
1137 {
1138 this->add(od, Output_reloc_type(relobj, input_shndx, type, od,
1139 address, false, true));
1140 }
1141
1142 void
1143 add_local_section(Sized_relobj<size, big_endian>* relobj,
1144 unsigned int input_shndx, unsigned int type,
1145 Output_data* od, unsigned int shndx, Address address)
1146 {
1147 this->add(od, Output_reloc_type(relobj, input_shndx, type, shndx,
1148 address, false, true));
1149 }
c06b7b0b
ILT
1150
1151 // A reloc against the STT_SECTION symbol of an output section.
4f4c5f80
ILT
1152 // OS is the Output_section that the relocation refers to; OD is
1153 // the Output_data object being relocated.
5a6f7e2d 1154
c06b7b0b 1155 void
a3ad94ed
ILT
1156 add_output_section(Output_section* os, unsigned int type,
1157 Output_data* od, Address address)
4f4c5f80 1158 { this->add(od, Output_reloc_type(os, type, od, address)); }
5a6f7e2d
ILT
1159
1160 void
4f4c5f80 1161 add_output_section(Output_section* os, unsigned int type, Output_data* od,
5a6f7e2d 1162 Relobj* relobj, unsigned int shndx, Address address)
4f4c5f80 1163 { this->add(od, Output_reloc_type(os, type, relobj, shndx, address)); }
c06b7b0b
ILT
1164};
1165
1166// The SHT_RELA version of Output_data_reloc.
1167
1168template<bool dynamic, int size, bool big_endian>
1169class Output_data_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>
1170 : public Output_data_reloc_base<elfcpp::SHT_RELA, dynamic, size, big_endian>
1171{
dceae3c1 1172 private:
c06b7b0b
ILT
1173 typedef Output_data_reloc_base<elfcpp::SHT_RELA, dynamic, size,
1174 big_endian> Base;
1175
1176 public:
1177 typedef typename Base::Output_reloc_type Output_reloc_type;
1178 typedef typename Output_reloc_type::Address Address;
1179 typedef typename Output_reloc_type::Addend Addend;
1180
1181 Output_data_reloc()
1182 : Output_data_reloc_base<elfcpp::SHT_RELA, dynamic, size, big_endian>()
1183 { }
1184
1185 // Add a reloc against a global symbol.
5a6f7e2d 1186
c06b7b0b 1187 void
a3ad94ed
ILT
1188 add_global(Symbol* gsym, unsigned int type, Output_data* od,
1189 Address address, Addend addend)
e8c846c3
ILT
1190 { this->add(od, Output_reloc_type(gsym, type, od, address, addend,
1191 false)); }
c06b7b0b 1192
5a6f7e2d 1193 void
4f4c5f80
ILT
1194 add_global(Symbol* gsym, unsigned int type, Output_data* od, Relobj* relobj,
1195 unsigned int shndx, Address address,
1196 Addend addend)
1197 { this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
e8c846c3
ILT
1198 addend, false)); }
1199
1200 // Add a RELATIVE reloc against a global symbol. The final output
1201 // relocation will not reference the symbol, but we must keep the symbol
1202 // information long enough to set the addend of the relocation correctly
1203 // when it is written.
1204
1205 void
1206 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
1207 Address address, Addend addend)
1208 { this->add(od, Output_reloc_type(gsym, type, od, address, addend, true)); }
1209
1210 void
1211 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
1212 Relobj* relobj, unsigned int shndx, Address address,
1213 Addend addend)
1214 { this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1215 addend, true)); }
5a6f7e2d 1216
c06b7b0b 1217 // Add a reloc against a local symbol.
5a6f7e2d 1218
c06b7b0b 1219 void
5a6f7e2d 1220 add_local(Sized_relobj<size, big_endian>* relobj,
c06b7b0b 1221 unsigned int local_sym_index, unsigned int type,
a3ad94ed 1222 Output_data* od, Address address, Addend addend)
c06b7b0b 1223 {
4f4c5f80 1224 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od, address,
dceae3c1 1225 addend, false, false));
5a6f7e2d
ILT
1226 }
1227
1228 void
1229 add_local(Sized_relobj<size, big_endian>* relobj,
1230 unsigned int local_sym_index, unsigned int type,
4f4c5f80
ILT
1231 Output_data* od, unsigned int shndx, Address address,
1232 Addend addend)
5a6f7e2d 1233 {
4f4c5f80 1234 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
dceae3c1 1235 address, addend, false, false));
e8c846c3
ILT
1236 }
1237
1238 // Add a RELATIVE reloc against a local symbol.
1239
1240 void
1241 add_local_relative(Sized_relobj<size, big_endian>* relobj,
1242 unsigned int local_sym_index, unsigned int type,
1243 Output_data* od, Address address, Addend addend)
1244 {
1245 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od, address,
dceae3c1 1246 addend, true, false));
e8c846c3
ILT
1247 }
1248
1249 void
1250 add_local_relative(Sized_relobj<size, big_endian>* relobj,
1251 unsigned int local_sym_index, unsigned int type,
1252 Output_data* od, unsigned int shndx, Address address,
1253 Addend addend)
1254 {
1255 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
dceae3c1
ILT
1256 address, addend, true, false));
1257 }
1258
1259 // Add a reloc against a local section symbol. This will be
1260 // converted into a reloc against the STT_SECTION symbol of the
1261 // output section.
1262
1263 void
1264 add_local_section(Sized_relobj<size, big_endian>* relobj,
1265 unsigned int input_shndx, unsigned int type,
1266 Output_data* od, Address address, Addend addend)
1267 {
1268 this->add(od, Output_reloc_type(relobj, input_shndx, type, od, address,
1269 addend, false, true));
1270 }
1271
1272 void
1273 add_local_section(Sized_relobj<size, big_endian>* relobj,
1274 unsigned int input_shndx, unsigned int type,
1275 Output_data* od, unsigned int shndx, Address address,
1276 Addend addend)
1277 {
1278 this->add(od, Output_reloc_type(relobj, input_shndx, type, shndx,
1279 address, addend, false, true));
c06b7b0b
ILT
1280 }
1281
1282 // A reloc against the STT_SECTION symbol of an output section.
5a6f7e2d 1283
c06b7b0b 1284 void
a3ad94ed
ILT
1285 add_output_section(Output_section* os, unsigned int type, Output_data* od,
1286 Address address, Addend addend)
4f4c5f80 1287 { this->add(os, Output_reloc_type(os, type, od, address, addend)); }
5a6f7e2d
ILT
1288
1289 void
1290 add_output_section(Output_section* os, unsigned int type, Relobj* relobj,
1291 unsigned int shndx, Address address, Addend addend)
4f4c5f80
ILT
1292 { this->add(os, Output_reloc_type(os, type, relobj, shndx, address,
1293 addend)); }
c06b7b0b
ILT
1294};
1295
6a74a719
ILT
1296// Output_relocatable_relocs represents a relocation section in a
1297// relocatable link. The actual data is written out in the target
1298// hook relocate_for_relocatable. This just saves space for it.
1299
1300template<int sh_type, int size, bool big_endian>
1301class Output_relocatable_relocs : public Output_section_data
1302{
1303 public:
1304 Output_relocatable_relocs(Relocatable_relocs* rr)
1305 : Output_section_data(Output_data::default_alignment_for_size(size)),
1306 rr_(rr)
1307 { }
1308
1309 void
1310 set_final_data_size();
1311
1312 // Write out the data. There is nothing to do here.
1313 void
1314 do_write(Output_file*)
1315 { }
1316
1317 private:
1318 // The relocs associated with this input section.
1319 Relocatable_relocs* rr_;
1320};
1321
1322// Handle a GROUP section.
1323
1324template<int size, bool big_endian>
1325class Output_data_group : public Output_section_data
1326{
1327 public:
1328 Output_data_group(Sized_relobj<size, big_endian>* relobj,
1329 section_size_type entry_count,
1330 const elfcpp::Elf_Word* contents);
1331
1332 void
1333 do_write(Output_file*);
1334
1335 private:
1336 // The input object.
1337 Sized_relobj<size, big_endian>* relobj_;
1338 // The group flag word.
1339 elfcpp::Elf_Word flags_;
1340 // The section indexes of the input sections in this group.
1341 std::vector<unsigned int> input_sections_;
1342};
1343
dbe717ef
ILT
1344// Output_data_got is used to manage a GOT. Each entry in the GOT is
1345// for one symbol--either a global symbol or a local symbol in an
ead1e424 1346// object. The target specific code adds entries to the GOT as
dbe717ef 1347// needed.
ead1e424
ILT
1348
1349template<int size, bool big_endian>
27bc2bce 1350class Output_data_got : public Output_section_data_build
ead1e424
ILT
1351{
1352 public:
1353 typedef typename elfcpp::Elf_types<size>::Elf_Addr Valtype;
7bf1f802
ILT
1354 typedef Output_data_reloc<elfcpp::SHT_REL, true, size, big_endian> Rel_dyn;
1355 typedef Output_data_reloc<elfcpp::SHT_RELA, true, size, big_endian> Rela_dyn;
ead1e424 1356
7e1edb90 1357 Output_data_got()
27bc2bce 1358 : Output_section_data_build(Output_data::default_alignment_for_size(size)),
730cdc88 1359 entries_()
ead1e424
ILT
1360 { }
1361
dbe717ef
ILT
1362 // Add an entry for a global symbol to the GOT. Return true if this
1363 // is a new GOT entry, false if the symbol was already in the GOT.
1364 bool
0a65a3a7 1365 add_global(Symbol* gsym, unsigned int got_type);
ead1e424 1366
7bf1f802
ILT
1367 // Add an entry for a global symbol to the GOT, and add a dynamic
1368 // relocation of type R_TYPE for the GOT entry.
1369 void
0a65a3a7
CC
1370 add_global_with_rel(Symbol* gsym, unsigned int got_type,
1371 Rel_dyn* rel_dyn, unsigned int r_type);
7bf1f802
ILT
1372
1373 void
0a65a3a7
CC
1374 add_global_with_rela(Symbol* gsym, unsigned int got_type,
1375 Rela_dyn* rela_dyn, unsigned int r_type);
1376
1377 // Add a pair of entries for a global symbol to the GOT, and add
1378 // dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
1379 void
1380 add_global_pair_with_rel(Symbol* gsym, unsigned int got_type,
1381 Rel_dyn* rel_dyn, unsigned int r_type_1,
1382 unsigned int r_type_2);
1383
1384 void
1385 add_global_pair_with_rela(Symbol* gsym, unsigned int got_type,
1386 Rela_dyn* rela_dyn, unsigned int r_type_1,
1387 unsigned int r_type_2);
7bf1f802 1388
e727fa71
ILT
1389 // Add an entry for a local symbol to the GOT. This returns true if
1390 // this is a new GOT entry, false if the symbol already has a GOT
1391 // entry.
1392 bool
0a65a3a7
CC
1393 add_local(Sized_relobj<size, big_endian>* object, unsigned int sym_index,
1394 unsigned int got_type);
ead1e424 1395
0a65a3a7 1396 // Add an entry for a local symbol to the GOT, and add a dynamic
7bf1f802
ILT
1397 // relocation of type R_TYPE for the GOT entry.
1398 void
1399 add_local_with_rel(Sized_relobj<size, big_endian>* object,
0a65a3a7
CC
1400 unsigned int sym_index, unsigned int got_type,
1401 Rel_dyn* rel_dyn, unsigned int r_type);
7bf1f802
ILT
1402
1403 void
1404 add_local_with_rela(Sized_relobj<size, big_endian>* object,
0a65a3a7
CC
1405 unsigned int sym_index, unsigned int got_type,
1406 Rela_dyn* rela_dyn, unsigned int r_type);
07f397ab 1407
0a65a3a7
CC
1408 // Add a pair of entries for a local symbol to the GOT, and add
1409 // dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
7bf1f802 1410 void
0a65a3a7
CC
1411 add_local_pair_with_rel(Sized_relobj<size, big_endian>* object,
1412 unsigned int sym_index, unsigned int shndx,
1413 unsigned int got_type, Rel_dyn* rel_dyn,
1414 unsigned int r_type_1, unsigned int r_type_2);
7bf1f802
ILT
1415
1416 void
0a65a3a7
CC
1417 add_local_pair_with_rela(Sized_relobj<size, big_endian>* object,
1418 unsigned int sym_index, unsigned int shndx,
1419 unsigned int got_type, Rela_dyn* rela_dyn,
1420 unsigned int r_type_1, unsigned int r_type_2);
7bf1f802 1421
ead1e424
ILT
1422 // Add a constant to the GOT. This returns the offset of the new
1423 // entry from the start of the GOT.
1424 unsigned int
1425 add_constant(Valtype constant)
1426 {
1427 this->entries_.push_back(Got_entry(constant));
1428 this->set_got_size();
1429 return this->last_got_offset();
1430 }
1431
27bc2bce 1432 protected:
ead1e424
ILT
1433 // Write out the GOT table.
1434 void
1435 do_write(Output_file*);
1436
1437 private:
1438 // This POD class holds a single GOT entry.
1439 class Got_entry
1440 {
1441 public:
1442 // Create a zero entry.
1443 Got_entry()
1444 : local_sym_index_(CONSTANT_CODE)
1445 { this->u_.constant = 0; }
1446
1447 // Create a global symbol entry.
a3ad94ed 1448 explicit Got_entry(Symbol* gsym)
ead1e424
ILT
1449 : local_sym_index_(GSYM_CODE)
1450 { this->u_.gsym = gsym; }
1451
1452 // Create a local symbol entry.
e727fa71
ILT
1453 Got_entry(Sized_relobj<size, big_endian>* object,
1454 unsigned int local_sym_index)
ead1e424
ILT
1455 : local_sym_index_(local_sym_index)
1456 {
a3ad94ed
ILT
1457 gold_assert(local_sym_index != GSYM_CODE
1458 && local_sym_index != CONSTANT_CODE);
ead1e424
ILT
1459 this->u_.object = object;
1460 }
1461
1462 // Create a constant entry. The constant is a host value--it will
1463 // be swapped, if necessary, when it is written out.
a3ad94ed 1464 explicit Got_entry(Valtype constant)
ead1e424
ILT
1465 : local_sym_index_(CONSTANT_CODE)
1466 { this->u_.constant = constant; }
1467
1468 // Write the GOT entry to an output view.
1469 void
7e1edb90 1470 write(unsigned char* pov) const;
ead1e424
ILT
1471
1472 private:
1473 enum
1474 {
1475 GSYM_CODE = -1U,
1476 CONSTANT_CODE = -2U
1477 };
1478
1479 union
1480 {
1481 // For a local symbol, the object.
e727fa71 1482 Sized_relobj<size, big_endian>* object;
ead1e424
ILT
1483 // For a global symbol, the symbol.
1484 Symbol* gsym;
1485 // For a constant, the constant.
1486 Valtype constant;
1487 } u_;
c06b7b0b
ILT
1488 // For a local symbol, the local symbol index. This is GSYM_CODE
1489 // for a global symbol, or CONSTANT_CODE for a constant.
ead1e424
ILT
1490 unsigned int local_sym_index_;
1491 };
1492
1493 typedef std::vector<Got_entry> Got_entries;
1494
1495 // Return the offset into the GOT of GOT entry I.
1496 unsigned int
1497 got_offset(unsigned int i) const
1498 { return i * (size / 8); }
1499
1500 // Return the offset into the GOT of the last entry added.
1501 unsigned int
1502 last_got_offset() const
1503 { return this->got_offset(this->entries_.size() - 1); }
1504
1505 // Set the size of the section.
1506 void
1507 set_got_size()
27bc2bce 1508 { this->set_current_data_size(this->got_offset(this->entries_.size())); }
ead1e424
ILT
1509
1510 // The list of GOT entries.
1511 Got_entries entries_;
1512};
1513
a3ad94ed
ILT
1514// Output_data_dynamic is used to hold the data in SHT_DYNAMIC
1515// section.
1516
1517class Output_data_dynamic : public Output_section_data
1518{
1519 public:
9025d29d 1520 Output_data_dynamic(Stringpool* pool)
730cdc88 1521 : Output_section_data(Output_data::default_alignment()),
9025d29d 1522 entries_(), pool_(pool)
a3ad94ed
ILT
1523 { }
1524
1525 // Add a new dynamic entry with a fixed numeric value.
1526 void
1527 add_constant(elfcpp::DT tag, unsigned int val)
1528 { this->add_entry(Dynamic_entry(tag, val)); }
1529
16649710 1530 // Add a new dynamic entry with the address of output data.
a3ad94ed 1531 void
16649710
ILT
1532 add_section_address(elfcpp::DT tag, const Output_data* od)
1533 { this->add_entry(Dynamic_entry(tag, od, false)); }
a3ad94ed 1534
16649710 1535 // Add a new dynamic entry with the size of output data.
a3ad94ed 1536 void
16649710
ILT
1537 add_section_size(elfcpp::DT tag, const Output_data* od)
1538 { this->add_entry(Dynamic_entry(tag, od, true)); }
a3ad94ed
ILT
1539
1540 // Add a new dynamic entry with the address of a symbol.
1541 void
16649710 1542 add_symbol(elfcpp::DT tag, const Symbol* sym)
a3ad94ed
ILT
1543 { this->add_entry(Dynamic_entry(tag, sym)); }
1544
1545 // Add a new dynamic entry with a string.
1546 void
1547 add_string(elfcpp::DT tag, const char* str)
cfd73a4e 1548 { this->add_entry(Dynamic_entry(tag, this->pool_->add(str, true, NULL))); }
a3ad94ed 1549
41f542e7
ILT
1550 void
1551 add_string(elfcpp::DT tag, const std::string& str)
1552 { this->add_string(tag, str.c_str()); }
1553
27bc2bce
ILT
1554 protected:
1555 // Adjust the output section to set the entry size.
1556 void
1557 do_adjust_output_section(Output_section*);
1558
a3ad94ed
ILT
1559 // Set the final data size.
1560 void
27bc2bce 1561 set_final_data_size();
a3ad94ed
ILT
1562
1563 // Write out the dynamic entries.
1564 void
1565 do_write(Output_file*);
1566
1567 private:
1568 // This POD class holds a single dynamic entry.
1569 class Dynamic_entry
1570 {
1571 public:
1572 // Create an entry with a fixed numeric value.
1573 Dynamic_entry(elfcpp::DT tag, unsigned int val)
1574 : tag_(tag), classification_(DYNAMIC_NUMBER)
1575 { this->u_.val = val; }
1576
1577 // Create an entry with the size or address of a section.
16649710 1578 Dynamic_entry(elfcpp::DT tag, const Output_data* od, bool section_size)
a3ad94ed
ILT
1579 : tag_(tag),
1580 classification_(section_size
1581 ? DYNAMIC_SECTION_SIZE
1582 : DYNAMIC_SECTION_ADDRESS)
16649710 1583 { this->u_.od = od; }
a3ad94ed
ILT
1584
1585 // Create an entry with the address of a symbol.
16649710 1586 Dynamic_entry(elfcpp::DT tag, const Symbol* sym)
a3ad94ed
ILT
1587 : tag_(tag), classification_(DYNAMIC_SYMBOL)
1588 { this->u_.sym = sym; }
1589
1590 // Create an entry with a string.
1591 Dynamic_entry(elfcpp::DT tag, const char* str)
1592 : tag_(tag), classification_(DYNAMIC_STRING)
1593 { this->u_.str = str; }
1594
1595 // Write the dynamic entry to an output view.
1596 template<int size, bool big_endian>
1597 void
7d1a9ebb 1598 write(unsigned char* pov, const Stringpool*) const;
a3ad94ed
ILT
1599
1600 private:
1601 enum Classification
1602 {
1603 // Number.
1604 DYNAMIC_NUMBER,
1605 // Section address.
1606 DYNAMIC_SECTION_ADDRESS,
1607 // Section size.
1608 DYNAMIC_SECTION_SIZE,
1609 // Symbol adress.
1610 DYNAMIC_SYMBOL,
1611 // String.
1612 DYNAMIC_STRING
1613 };
1614
1615 union
1616 {
1617 // For DYNAMIC_NUMBER.
1618 unsigned int val;
1619 // For DYNAMIC_SECTION_ADDRESS and DYNAMIC_SECTION_SIZE.
16649710 1620 const Output_data* od;
a3ad94ed 1621 // For DYNAMIC_SYMBOL.
16649710 1622 const Symbol* sym;
a3ad94ed
ILT
1623 // For DYNAMIC_STRING.
1624 const char* str;
1625 } u_;
1626 // The dynamic tag.
1627 elfcpp::DT tag_;
1628 // The type of entry.
1629 Classification classification_;
1630 };
1631
1632 // Add an entry to the list.
1633 void
1634 add_entry(const Dynamic_entry& entry)
1635 { this->entries_.push_back(entry); }
1636
1637 // Sized version of write function.
1638 template<int size, bool big_endian>
1639 void
1640 sized_write(Output_file* of);
1641
1642 // The type of the list of entries.
1643 typedef std::vector<Dynamic_entry> Dynamic_entries;
1644
a3ad94ed
ILT
1645 // The entries.
1646 Dynamic_entries entries_;
1647 // The pool used for strings.
1648 Stringpool* pool_;
1649};
1650
a2fb1b05
ILT
1651// An output section. We don't expect to have too many output
1652// sections, so we don't bother to do a template on the size.
1653
54dc6425 1654class Output_section : public Output_data
a2fb1b05
ILT
1655{
1656 public:
1657 // Create an output section, giving the name, type, and flags.
96803768 1658 Output_section(const char* name, elfcpp::Elf_Word, elfcpp::Elf_Xword);
54dc6425 1659 virtual ~Output_section();
a2fb1b05 1660
ead1e424 1661 // Add a new input section SHNDX, named NAME, with header SHDR, from
730cdc88
ILT
1662 // object OBJECT. RELOC_SHNDX is the index of a relocation section
1663 // which applies to this section, or 0 if none, or -1U if more than
a445fddf
ILT
1664 // one. HAVE_SECTIONS_SCRIPT is true if we have a SECTIONS clause
1665 // in a linker script; in that case we need to keep track of input
1666 // sections associated with an output section. Return the offset
1667 // within the output section.
a2fb1b05
ILT
1668 template<int size, bool big_endian>
1669 off_t
730cdc88
ILT
1670 add_input_section(Sized_relobj<size, big_endian>* object, unsigned int shndx,
1671 const char *name,
1672 const elfcpp::Shdr<size, big_endian>& shdr,
a445fddf 1673 unsigned int reloc_shndx, bool have_sections_script);
a2fb1b05 1674
b8e6aad9 1675 // Add generated data POSD to this output section.
c06b7b0b 1676 void
ead1e424
ILT
1677 add_output_section_data(Output_section_data* posd);
1678
a2fb1b05
ILT
1679 // Return the section name.
1680 const char*
1681 name() const
1682 { return this->name_; }
1683
1684 // Return the section type.
1685 elfcpp::Elf_Word
1686 type() const
1687 { return this->type_; }
1688
1689 // Return the section flags.
1690 elfcpp::Elf_Xword
1691 flags() const
1692 { return this->flags_; }
1693
1650c4ff
ILT
1694 // Set the section flags. This may only be used with the Layout
1695 // code when it is prepared to move the section to a different
1696 // segment.
1697 void
1698 set_flags(elfcpp::Elf_Xword flags)
1699 { this->flags_ = flags; }
1700
a3ad94ed
ILT
1701 // Return the entsize field.
1702 uint64_t
1703 entsize() const
1704 { return this->entsize_; }
1705
61ba1cf9
ILT
1706 // Set the entsize field.
1707 void
16649710 1708 set_entsize(uint64_t v);
61ba1cf9 1709
a445fddf
ILT
1710 // Set the load address.
1711 void
1712 set_load_address(uint64_t load_address)
1713 {
1714 this->load_address_ = load_address;
1715 this->has_load_address_ = true;
1716 }
1717
16649710
ILT
1718 // Set the link field to the output section index of a section.
1719 void
14b31740 1720 set_link_section(const Output_data* od)
16649710
ILT
1721 {
1722 gold_assert(this->link_ == 0
1723 && !this->should_link_to_symtab_
1724 && !this->should_link_to_dynsym_);
1725 this->link_section_ = od;
1726 }
1727
1728 // Set the link field to a constant.
61ba1cf9
ILT
1729 void
1730 set_link(unsigned int v)
16649710
ILT
1731 {
1732 gold_assert(this->link_section_ == NULL
1733 && !this->should_link_to_symtab_
1734 && !this->should_link_to_dynsym_);
1735 this->link_ = v;
1736 }
61ba1cf9 1737
16649710
ILT
1738 // Record that this section should link to the normal symbol table.
1739 void
1740 set_should_link_to_symtab()
1741 {
1742 gold_assert(this->link_section_ == NULL
1743 && this->link_ == 0
1744 && !this->should_link_to_dynsym_);
1745 this->should_link_to_symtab_ = true;
1746 }
1747
1748 // Record that this section should link to the dynamic symbol table.
1749 void
1750 set_should_link_to_dynsym()
1751 {
1752 gold_assert(this->link_section_ == NULL
1753 && this->link_ == 0
1754 && !this->should_link_to_symtab_);
1755 this->should_link_to_dynsym_ = true;
1756 }
1757
1758 // Return the info field.
1759 unsigned int
1760 info() const
1761 {
755ab8af
ILT
1762 gold_assert(this->info_section_ == NULL
1763 && this->info_symndx_ == NULL);
16649710
ILT
1764 return this->info_;
1765 }
1766
1767 // Set the info field to the output section index of a section.
1768 void
755ab8af 1769 set_info_section(const Output_section* os)
16649710 1770 {
755ab8af
ILT
1771 gold_assert((this->info_section_ == NULL
1772 || (this->info_section_ == os
1773 && this->info_uses_section_index_))
1774 && this->info_symndx_ == NULL
1775 && this->info_ == 0);
1776 this->info_section_ = os;
1777 this->info_uses_section_index_= true;
16649710
ILT
1778 }
1779
6a74a719
ILT
1780 // Set the info field to the symbol table index of a symbol.
1781 void
1782 set_info_symndx(const Symbol* sym)
1783 {
755ab8af
ILT
1784 gold_assert(this->info_section_ == NULL
1785 && (this->info_symndx_ == NULL
1786 || this->info_symndx_ == sym)
1787 && this->info_ == 0);
6a74a719
ILT
1788 this->info_symndx_ = sym;
1789 }
1790
755ab8af
ILT
1791 // Set the info field to the symbol table index of a section symbol.
1792 void
1793 set_info_section_symndx(const Output_section* os)
1794 {
1795 gold_assert((this->info_section_ == NULL
1796 || (this->info_section_ == os
1797 && !this->info_uses_section_index_))
1798 && this->info_symndx_ == NULL
1799 && this->info_ == 0);
1800 this->info_section_ = os;
1801 this->info_uses_section_index_ = false;
1802 }
1803
16649710 1804 // Set the info field to a constant.
61ba1cf9
ILT
1805 void
1806 set_info(unsigned int v)
16649710 1807 {
755ab8af
ILT
1808 gold_assert(this->info_section_ == NULL
1809 && this->info_symndx_ == NULL
1810 && (this->info_ == 0
1811 || this->info_ == v));
16649710
ILT
1812 this->info_ = v;
1813 }
61ba1cf9
ILT
1814
1815 // Set the addralign field.
1816 void
1817 set_addralign(uint64_t v)
1818 { this->addralign_ = v; }
1819
c06b7b0b
ILT
1820 // Indicate that we need a symtab index.
1821 void
1822 set_needs_symtab_index()
1823 { this->needs_symtab_index_ = true; }
1824
1825 // Return whether we need a symtab index.
1826 bool
1827 needs_symtab_index() const
1828 { return this->needs_symtab_index_; }
1829
1830 // Get the symtab index.
1831 unsigned int
1832 symtab_index() const
1833 {
a3ad94ed 1834 gold_assert(this->symtab_index_ != 0);
c06b7b0b
ILT
1835 return this->symtab_index_;
1836 }
1837
1838 // Set the symtab index.
1839 void
1840 set_symtab_index(unsigned int index)
1841 {
a3ad94ed 1842 gold_assert(index != 0);
c06b7b0b
ILT
1843 this->symtab_index_ = index;
1844 }
1845
1846 // Indicate that we need a dynsym index.
1847 void
1848 set_needs_dynsym_index()
1849 { this->needs_dynsym_index_ = true; }
1850
1851 // Return whether we need a dynsym index.
1852 bool
1853 needs_dynsym_index() const
1854 { return this->needs_dynsym_index_; }
1855
1856 // Get the dynsym index.
1857 unsigned int
1858 dynsym_index() const
1859 {
a3ad94ed 1860 gold_assert(this->dynsym_index_ != 0);
c06b7b0b
ILT
1861 return this->dynsym_index_;
1862 }
1863
1864 // Set the dynsym index.
1865 void
1866 set_dynsym_index(unsigned int index)
1867 {
a3ad94ed 1868 gold_assert(index != 0);
c06b7b0b
ILT
1869 this->dynsym_index_ = index;
1870 }
1871
2fd32231
ILT
1872 // Return whether the input sections sections attachd to this output
1873 // section may require sorting. This is used to handle constructor
1874 // priorities compatibly with GNU ld.
1875 bool
1876 may_sort_attached_input_sections() const
1877 { return this->may_sort_attached_input_sections_; }
1878
1879 // Record that the input sections attached to this output section
1880 // may require sorting.
1881 void
1882 set_may_sort_attached_input_sections()
1883 { this->may_sort_attached_input_sections_ = true; }
1884
1885 // Return whether the input sections attached to this output section
1886 // require sorting. This is used to handle constructor priorities
1887 // compatibly with GNU ld.
1888 bool
1889 must_sort_attached_input_sections() const
1890 { return this->must_sort_attached_input_sections_; }
1891
1892 // Record that the input sections attached to this output section
1893 // require sorting.
1894 void
1895 set_must_sort_attached_input_sections()
1896 { this->must_sort_attached_input_sections_ = true; }
1897
730cdc88
ILT
1898 // Return whether this section should be written after all the input
1899 // sections are complete.
1900 bool
1901 after_input_sections() const
1902 { return this->after_input_sections_; }
1903
1904 // Record that this section should be written after all the input
1905 // sections are complete.
1906 void
1907 set_after_input_sections()
1908 { this->after_input_sections_ = true; }
1909
27bc2bce
ILT
1910 // Return whether this section requires postprocessing after all
1911 // relocations have been applied.
1912 bool
1913 requires_postprocessing() const
1914 { return this->requires_postprocessing_; }
1915
96803768
ILT
1916 // If a section requires postprocessing, return the buffer to use.
1917 unsigned char*
1918 postprocessing_buffer() const
1919 {
1920 gold_assert(this->postprocessing_buffer_ != NULL);
1921 return this->postprocessing_buffer_;
1922 }
1923
1924 // If a section requires postprocessing, create the buffer to use.
27bc2bce 1925 void
96803768
ILT
1926 create_postprocessing_buffer();
1927
1928 // If a section requires postprocessing, this is the size of the
1929 // buffer to which relocations should be applied.
1930 off_t
1931 postprocessing_buffer_size() const
1932 { return this->current_data_size_for_child(); }
27bc2bce 1933
755ab8af
ILT
1934 // Modify the section name. This is only permitted for an
1935 // unallocated section, and only before the size has been finalized.
1936 // Otherwise the name will not get into Layout::namepool_.
1937 void
1938 set_name(const char* newname)
1939 {
1940 gold_assert((this->flags_ & elfcpp::SHF_ALLOC) == 0);
1941 gold_assert(!this->is_data_size_valid());
1942 this->name_ = newname;
1943 }
1944
730cdc88
ILT
1945 // Return whether the offset OFFSET in the input section SHNDX in
1946 // object OBJECT is being included in the link.
1947 bool
1948 is_input_address_mapped(const Relobj* object, unsigned int shndx,
1949 off_t offset) const;
1950
1951 // Return the offset within the output section of OFFSET relative to
1952 // the start of input section SHNDX in object OBJECT.
8383303e
ILT
1953 section_offset_type
1954 output_offset(const Relobj* object, unsigned int shndx,
1955 section_offset_type offset) const;
730cdc88 1956
b8e6aad9
ILT
1957 // Return the output virtual address of OFFSET relative to the start
1958 // of input section SHNDX in object OBJECT.
1959 uint64_t
1960 output_address(const Relobj* object, unsigned int shndx,
1961 off_t offset) const;
1962
a9a60db6
ILT
1963 // Return the output address of the start of the merged section for
1964 // input section SHNDX in object OBJECT. This is not necessarily
1965 // the offset corresponding to input offset 0 in the section, since
1966 // the section may be mapped arbitrarily.
1967 uint64_t
1968 starting_output_address(const Relobj* object, unsigned int shndx) const;
1969
a445fddf
ILT
1970 // Record that this output section was found in the SECTIONS clause
1971 // of a linker script.
1972 void
1973 set_found_in_sections_clause()
1974 { this->found_in_sections_clause_ = true; }
1975
1976 // Return whether this output section was found in the SECTIONS
1977 // clause of a linker script.
1978 bool
1979 found_in_sections_clause() const
1980 { return this->found_in_sections_clause_; }
1981
27bc2bce
ILT
1982 // Write the section header into *OPHDR.
1983 template<int size, bool big_endian>
1984 void
1985 write_header(const Layout*, const Stringpool*,
1986 elfcpp::Shdr_write<size, big_endian>*) const;
1987
a445fddf
ILT
1988 // The next few calls are for linker script support.
1989
1990 // Store the list of input sections for this Output_section into the
1991 // list passed in. This removes the input sections, leaving only
1992 // any Output_section_data elements. This returns the size of those
1993 // Output_section_data elements. ADDRESS is the address of this
1994 // output section. FILL is the fill value to use, in case there are
1995 // any spaces between the remaining Output_section_data elements.
1996 uint64_t
1997 get_input_sections(uint64_t address, const std::string& fill,
1998 std::list<std::pair<Relobj*, unsigned int > >*);
1999
2000 // Add an input section from a script.
2001 void
2002 add_input_section_for_script(Relobj* object, unsigned int shndx,
2003 off_t data_size, uint64_t addralign);
2004
2005 // Set the current size of the output section.
2006 void
2007 set_current_data_size(off_t size)
2008 { this->set_current_data_size_for_child(size); }
2009
2010 // Get the current size of the output section.
2011 off_t
2012 current_data_size() const
2013 { return this->current_data_size_for_child(); }
2014
2015 // End of linker script support.
2016
38c5e8b4
ILT
2017 // Print merge statistics to stderr.
2018 void
2019 print_merge_stats();
2020
27bc2bce 2021 protected:
77e65537
ILT
2022 // Return the output section--i.e., the object itself.
2023 Output_section*
2024 do_output_section()
2025 { return this; }
2026
27bc2bce
ILT
2027 // Return the section index in the output file.
2028 unsigned int
2029 do_out_shndx() const
2030 {
2031 gold_assert(this->out_shndx_ != -1U);
2032 return this->out_shndx_;
2033 }
2034
2035 // Set the output section index.
2036 void
2037 do_set_out_shndx(unsigned int shndx)
2038 {
a445fddf 2039 gold_assert(this->out_shndx_ == -1U || this->out_shndx_ == shndx);
27bc2bce
ILT
2040 this->out_shndx_ = shndx;
2041 }
2042
2043 // Set the final data size of the Output_section. For a typical
ead1e424 2044 // Output_section, there is nothing to do, but if there are any
27bc2bce 2045 // Output_section_data objects we need to set their final addresses
ead1e424 2046 // here.
96803768 2047 virtual void
27bc2bce 2048 set_final_data_size();
ead1e424 2049
a445fddf
ILT
2050 // Reset the address and file offset.
2051 void
2052 do_reset_address_and_file_offset();
2053
54dc6425 2054 // Write the data to the file. For a typical Output_section, this
ead1e424
ILT
2055 // does nothing: the data is written out by calling Object::Relocate
2056 // on each input object. But if there are any Output_section_data
2057 // objects we do need to write them out here.
96803768 2058 virtual void
ead1e424 2059 do_write(Output_file*);
54dc6425 2060
75f65a3e
ILT
2061 // Return the address alignment--function required by parent class.
2062 uint64_t
2063 do_addralign() const
2064 { return this->addralign_; }
2065
a445fddf
ILT
2066 // Return whether there is a load address.
2067 bool
2068 do_has_load_address() const
2069 { return this->has_load_address_; }
2070
2071 // Return the load address.
2072 uint64_t
2073 do_load_address() const
2074 {
2075 gold_assert(this->has_load_address_);
2076 return this->load_address_;
2077 }
2078
75f65a3e
ILT
2079 // Return whether this is an Output_section.
2080 bool
2081 do_is_section() const
2082 { return true; }
2083
54dc6425
ILT
2084 // Return whether this is a section of the specified type.
2085 bool
75f65a3e 2086 do_is_section_type(elfcpp::Elf_Word type) const
54dc6425
ILT
2087 { return this->type_ == type; }
2088
2089 // Return whether the specified section flag is set.
2090 bool
75f65a3e 2091 do_is_section_flag_set(elfcpp::Elf_Xword flag) const
54dc6425
ILT
2092 { return (this->flags_ & flag) != 0; }
2093
7bf1f802
ILT
2094 // Set the TLS offset. Called only for SHT_TLS sections.
2095 void
2096 do_set_tls_offset(uint64_t tls_base);
2097
2098 // Return the TLS offset, relative to the base of the TLS segment.
2099 // Valid only for SHT_TLS sections.
2100 uint64_t
2101 do_tls_offset() const
2102 { return this->tls_offset_; }
2103
96803768
ILT
2104 // This may be implemented by a child class.
2105 virtual void
2106 do_finalize_name(Layout*)
2107 { }
2108
2109 // Record that this section requires postprocessing after all
2110 // relocations have been applied. This is called by a child class.
2111 void
2112 set_requires_postprocessing()
2113 {
2114 this->requires_postprocessing_ = true;
2115 this->after_input_sections_ = true;
2116 }
2117
2118 // Write all the data of an Output_section into the postprocessing
2119 // buffer.
2120 void
2121 write_to_postprocessing_buffer();
2122
a2fb1b05 2123 private:
ead1e424
ILT
2124 // In some cases we need to keep a list of the input sections
2125 // associated with this output section. We only need the list if we
2126 // might have to change the offsets of the input section within the
2127 // output section after we add the input section. The ordinary
2128 // input sections will be written out when we process the object
2129 // file, and as such we don't need to track them here. We do need
2130 // to track Output_section_data objects here. We store instances of
2131 // this structure in a std::vector, so it must be a POD. There can
2132 // be many instances of this structure, so we use a union to save
2133 // some space.
2134 class Input_section
2135 {
2136 public:
2137 Input_section()
b8e6aad9
ILT
2138 : shndx_(0), p2align_(0)
2139 {
2140 this->u1_.data_size = 0;
2141 this->u2_.object = NULL;
2142 }
ead1e424 2143
b8e6aad9 2144 // For an ordinary input section.
f6ce93d6 2145 Input_section(Relobj* object, unsigned int shndx, off_t data_size,
ead1e424
ILT
2146 uint64_t addralign)
2147 : shndx_(shndx),
b8e6aad9 2148 p2align_(ffsll(static_cast<long long>(addralign)))
ead1e424 2149 {
b8e6aad9
ILT
2150 gold_assert(shndx != OUTPUT_SECTION_CODE
2151 && shndx != MERGE_DATA_SECTION_CODE
2152 && shndx != MERGE_STRING_SECTION_CODE);
2153 this->u1_.data_size = data_size;
2154 this->u2_.object = object;
ead1e424
ILT
2155 }
2156
b8e6aad9 2157 // For a non-merge output section.
ead1e424 2158 Input_section(Output_section_data* posd)
b8e6aad9
ILT
2159 : shndx_(OUTPUT_SECTION_CODE),
2160 p2align_(ffsll(static_cast<long long>(posd->addralign())))
2161 {
2162 this->u1_.data_size = 0;
2163 this->u2_.posd = posd;
2164 }
2165
2166 // For a merge section.
2167 Input_section(Output_section_data* posd, bool is_string, uint64_t entsize)
2168 : shndx_(is_string
2169 ? MERGE_STRING_SECTION_CODE
2170 : MERGE_DATA_SECTION_CODE),
2171 p2align_(ffsll(static_cast<long long>(posd->addralign())))
2172 {
2173 this->u1_.entsize = entsize;
2174 this->u2_.posd = posd;
2175 }
ead1e424
ILT
2176
2177 // The required alignment.
2178 uint64_t
2179 addralign() const
a3ad94ed
ILT
2180 {
2181 return (this->p2align_ == 0
2182 ? 0
2183 : static_cast<uint64_t>(1) << (this->p2align_ - 1));
2184 }
ead1e424
ILT
2185
2186 // Return the required size.
2187 off_t
2188 data_size() const;
2189
a445fddf
ILT
2190 // Whether this is an input section.
2191 bool
2192 is_input_section() const
2193 {
2194 return (this->shndx_ != OUTPUT_SECTION_CODE
2195 && this->shndx_ != MERGE_DATA_SECTION_CODE
2196 && this->shndx_ != MERGE_STRING_SECTION_CODE);
2197 }
2198
b8e6aad9
ILT
2199 // Return whether this is a merge section which matches the
2200 // parameters.
2201 bool
87f95776
ILT
2202 is_merge_section(bool is_string, uint64_t entsize,
2203 uint64_t addralign) const
b8e6aad9
ILT
2204 {
2205 return (this->shndx_ == (is_string
2206 ? MERGE_STRING_SECTION_CODE
2207 : MERGE_DATA_SECTION_CODE)
87f95776
ILT
2208 && this->u1_.entsize == entsize
2209 && this->addralign() == addralign);
b8e6aad9
ILT
2210 }
2211
a445fddf
ILT
2212 // Return the object for an input section.
2213 Relobj*
2214 relobj() const
2215 {
2216 gold_assert(this->is_input_section());
2217 return this->u2_.object;
2218 }
2219
2220 // Return the input section index for an input section.
2221 unsigned int
2222 shndx() const
2223 {
2224 gold_assert(this->is_input_section());
2225 return this->shndx_;
2226 }
2227
b8e6aad9
ILT
2228 // Set the output section.
2229 void
2230 set_output_section(Output_section* os)
2231 {
2232 gold_assert(!this->is_input_section());
2233 this->u2_.posd->set_output_section(os);
2234 }
2235
ead1e424 2236 // Set the address and file offset. This is called during
96803768
ILT
2237 // Layout::finalize. SECTION_FILE_OFFSET is the file offset of
2238 // the enclosing section.
ead1e424 2239 void
96803768
ILT
2240 set_address_and_file_offset(uint64_t address, off_t file_offset,
2241 off_t section_file_offset);
ead1e424 2242
a445fddf
ILT
2243 // Reset the address and file offset.
2244 void
2245 reset_address_and_file_offset();
2246
96803768
ILT
2247 // Finalize the data size.
2248 void
2249 finalize_data_size();
9a0910c3 2250
b8e6aad9
ILT
2251 // Add an input section, for SHF_MERGE sections.
2252 bool
2253 add_input_section(Relobj* object, unsigned int shndx)
2254 {
2255 gold_assert(this->shndx_ == MERGE_DATA_SECTION_CODE
2256 || this->shndx_ == MERGE_STRING_SECTION_CODE);
2257 return this->u2_.posd->add_input_section(object, shndx);
2258 }
2259
2260 // Given an input OBJECT, an input section index SHNDX within that
2261 // object, and an OFFSET relative to the start of that input
730cdc88 2262 // section, return whether or not the output offset is known. If
1e983657
ILT
2263 // this function returns true, it sets *POUTPUT to the offset in
2264 // the output section, relative to the start of the input section
2265 // in the output section. *POUTPUT may be different from OFFSET
2266 // for a merged section.
b8e6aad9 2267 bool
8383303e
ILT
2268 output_offset(const Relobj* object, unsigned int shndx,
2269 section_offset_type offset,
2270 section_offset_type *poutput) const;
b8e6aad9 2271
a9a60db6
ILT
2272 // Return whether this is the merge section for the input section
2273 // SHNDX in OBJECT.
2274 bool
2275 is_merge_section_for(const Relobj* object, unsigned int shndx) const;
2276
ead1e424
ILT
2277 // Write out the data. This does nothing for an input section.
2278 void
2279 write(Output_file*);
2280
96803768
ILT
2281 // Write the data to a buffer. This does nothing for an input
2282 // section.
2283 void
2284 write_to_buffer(unsigned char*);
2285
38c5e8b4
ILT
2286 // Print statistics about merge sections to stderr.
2287 void
2288 print_merge_stats(const char* section_name)
2289 {
2290 if (this->shndx_ == MERGE_DATA_SECTION_CODE
2291 || this->shndx_ == MERGE_STRING_SECTION_CODE)
2292 this->u2_.posd->print_merge_stats(section_name);
2293 }
2294
ead1e424 2295 private:
b8e6aad9
ILT
2296 // Code values which appear in shndx_. If the value is not one of
2297 // these codes, it is the input section index in the object file.
2298 enum
2299 {
2300 // An Output_section_data.
2301 OUTPUT_SECTION_CODE = -1U,
2302 // An Output_section_data for an SHF_MERGE section with
2303 // SHF_STRINGS not set.
2304 MERGE_DATA_SECTION_CODE = -2U,
2305 // An Output_section_data for an SHF_MERGE section with
2306 // SHF_STRINGS set.
2307 MERGE_STRING_SECTION_CODE = -3U
2308 };
2309
b8e6aad9
ILT
2310 // For an ordinary input section, this is the section index in the
2311 // input file. For an Output_section_data, this is
2312 // OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
2313 // MERGE_STRING_SECTION_CODE.
ead1e424
ILT
2314 unsigned int shndx_;
2315 // The required alignment, stored as a power of 2.
2316 unsigned int p2align_;
ead1e424
ILT
2317 union
2318 {
b8e6aad9
ILT
2319 // For an ordinary input section, the section size.
2320 off_t data_size;
2321 // For OUTPUT_SECTION_CODE, this is not used. For
2322 // MERGE_DATA_SECTION_CODE or MERGE_STRING_SECTION_CODE, the
2323 // entity size.
2324 uint64_t entsize;
2325 } u1_;
2326 union
2327 {
2328 // For an ordinary input section, the object which holds the
ead1e424 2329 // input section.
f6ce93d6 2330 Relobj* object;
b8e6aad9
ILT
2331 // For OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
2332 // MERGE_STRING_SECTION_CODE, the data.
ead1e424 2333 Output_section_data* posd;
b8e6aad9 2334 } u2_;
ead1e424
ILT
2335 };
2336
2337 typedef std::vector<Input_section> Input_section_list;
2338
2fd32231
ILT
2339 // This class is used to sort the input sections.
2340 class Input_section_sort_entry;
2341
2342 // This is the sort comparison function.
2343 struct Input_section_sort_compare
2344 {
2345 bool
2346 operator()(const Input_section_sort_entry&,
2347 const Input_section_sort_entry&) const;
2348 };
2349
c51e6221 2350 // Fill data. This is used to fill in data between input sections.
a445fddf
ILT
2351 // It is also used for data statements (BYTE, WORD, etc.) in linker
2352 // scripts. When we have to keep track of the input sections, we
2353 // can use an Output_data_const, but we don't want to have to keep
2354 // track of input sections just to implement fills.
c51e6221
ILT
2355 class Fill
2356 {
2357 public:
2358 Fill(off_t section_offset, off_t length)
a445fddf
ILT
2359 : section_offset_(section_offset),
2360 length_(convert_to_section_size_type(length))
c51e6221
ILT
2361 { }
2362
2363 // Return section offset.
2364 off_t
2365 section_offset() const
2366 { return this->section_offset_; }
2367
2368 // Return fill length.
a445fddf 2369 section_size_type
c51e6221
ILT
2370 length() const
2371 { return this->length_; }
2372
2373 private:
2374 // The offset within the output section.
2375 off_t section_offset_;
2376 // The length of the space to fill.
a445fddf 2377 section_size_type length_;
c51e6221
ILT
2378 };
2379
2380 typedef std::vector<Fill> Fill_list;
2381
b8e6aad9
ILT
2382 // Add a new output section by Input_section.
2383 void
2384 add_output_section_data(Input_section*);
2385
2386 // Add an SHF_MERGE input section. Returns true if the section was
2387 // handled.
2388 bool
2389 add_merge_input_section(Relobj* object, unsigned int shndx, uint64_t flags,
96803768 2390 uint64_t entsize, uint64_t addralign);
b8e6aad9
ILT
2391
2392 // Add an output SHF_MERGE section POSD to this output section.
2393 // IS_STRING indicates whether it is a SHF_STRINGS section, and
2394 // ENTSIZE is the entity size. This returns the entry added to
2395 // input_sections_.
2396 void
2397 add_output_merge_section(Output_section_data* posd, bool is_string,
2398 uint64_t entsize);
2399
2fd32231
ILT
2400 // Sort the attached input sections.
2401 void
2402 sort_attached_input_sections();
2403
a2fb1b05
ILT
2404 // Most of these fields are only valid after layout.
2405
2406 // The name of the section. This will point into a Stringpool.
9a0910c3 2407 const char* name_;
75f65a3e 2408 // The section address is in the parent class.
a2fb1b05
ILT
2409 // The section alignment.
2410 uint64_t addralign_;
2411 // The section entry size.
2412 uint64_t entsize_;
a445fddf
ILT
2413 // The load address. This is only used when using a linker script
2414 // with a SECTIONS clause. The has_load_address_ field indicates
2415 // whether this field is valid.
2416 uint64_t load_address_;
75f65a3e 2417 // The file offset is in the parent class.
16649710 2418 // Set the section link field to the index of this section.
14b31740 2419 const Output_data* link_section_;
16649710 2420 // If link_section_ is NULL, this is the link field.
a2fb1b05 2421 unsigned int link_;
16649710 2422 // Set the section info field to the index of this section.
755ab8af 2423 const Output_section* info_section_;
6a74a719
ILT
2424 // If info_section_ is NULL, set the info field to the symbol table
2425 // index of this symbol.
2426 const Symbol* info_symndx_;
2427 // If info_section_ and info_symndx_ are NULL, this is the section
2428 // info field.
a2fb1b05
ILT
2429 unsigned int info_;
2430 // The section type.
27bc2bce 2431 const elfcpp::Elf_Word type_;
a2fb1b05 2432 // The section flags.
a445fddf 2433 elfcpp::Elf_Xword flags_;
61ba1cf9 2434 // The section index.
ead1e424 2435 unsigned int out_shndx_;
c06b7b0b
ILT
2436 // If there is a STT_SECTION for this output section in the normal
2437 // symbol table, this is the symbol index. This starts out as zero.
2438 // It is initialized in Layout::finalize() to be the index, or -1U
2439 // if there isn't one.
2440 unsigned int symtab_index_;
2441 // If there is a STT_SECTION for this output section in the dynamic
2442 // symbol table, this is the symbol index. This starts out as zero.
2443 // It is initialized in Layout::finalize() to be the index, or -1U
2444 // if there isn't one.
2445 unsigned int dynsym_index_;
ead1e424
ILT
2446 // The input sections. This will be empty in cases where we don't
2447 // need to keep track of them.
2448 Input_section_list input_sections_;
2449 // The offset of the first entry in input_sections_.
2450 off_t first_input_offset_;
c51e6221
ILT
2451 // The fill data. This is separate from input_sections_ because we
2452 // often will need fill sections without needing to keep track of
2453 // input sections.
2454 Fill_list fills_;
96803768
ILT
2455 // If the section requires postprocessing, this buffer holds the
2456 // section contents during relocation.
2457 unsigned char* postprocessing_buffer_;
c06b7b0b
ILT
2458 // Whether this output section needs a STT_SECTION symbol in the
2459 // normal symbol table. This will be true if there is a relocation
2460 // which needs it.
2461 bool needs_symtab_index_ : 1;
2462 // Whether this output section needs a STT_SECTION symbol in the
2463 // dynamic symbol table. This will be true if there is a dynamic
2464 // relocation which needs it.
2465 bool needs_dynsym_index_ : 1;
16649710
ILT
2466 // Whether the link field of this output section should point to the
2467 // normal symbol table.
2468 bool should_link_to_symtab_ : 1;
2469 // Whether the link field of this output section should point to the
2470 // dynamic symbol table.
2471 bool should_link_to_dynsym_ : 1;
730cdc88
ILT
2472 // Whether this section should be written after all the input
2473 // sections are complete.
2474 bool after_input_sections_ : 1;
27bc2bce
ILT
2475 // Whether this section requires post processing after all
2476 // relocations have been applied.
2477 bool requires_postprocessing_ : 1;
a445fddf
ILT
2478 // Whether an input section was mapped to this output section
2479 // because of a SECTIONS clause in a linker script.
2480 bool found_in_sections_clause_ : 1;
2481 // Whether this section has an explicitly specified load address.
2482 bool has_load_address_ : 1;
755ab8af
ILT
2483 // True if the info_section_ field means the section index of the
2484 // section, false if it means the symbol index of the corresponding
2485 // section symbol.
2486 bool info_uses_section_index_ : 1;
2fd32231
ILT
2487 // True if the input sections attached to this output section may
2488 // need sorting.
2489 bool may_sort_attached_input_sections_ : 1;
2490 // True if the input sections attached to this output section must
2491 // be sorted.
2492 bool must_sort_attached_input_sections_ : 1;
2493 // True if the input sections attached to this output section have
2494 // already been sorted.
2495 bool attached_input_sections_are_sorted_ : 1;
7bf1f802
ILT
2496 // For SHT_TLS sections, the offset of this section relative to the base
2497 // of the TLS segment.
2498 uint64_t tls_offset_;
a2fb1b05
ILT
2499};
2500
2501// An output segment. PT_LOAD segments are built from collections of
2502// output sections. Other segments typically point within PT_LOAD
2503// segments, and are built directly as needed.
2504
2505class Output_segment
2506{
2507 public:
2508 // Create an output segment, specifying the type and flags.
2509 Output_segment(elfcpp::Elf_Word, elfcpp::Elf_Word);
2510
2511 // Return the virtual address.
2512 uint64_t
2513 vaddr() const
2514 { return this->vaddr_; }
2515
2516 // Return the physical address.
2517 uint64_t
2518 paddr() const
2519 { return this->paddr_; }
2520
2521 // Return the segment type.
2522 elfcpp::Elf_Word
2523 type() const
2524 { return this->type_; }
2525
2526 // Return the segment flags.
2527 elfcpp::Elf_Word
2528 flags() const
2529 { return this->flags_; }
2530
92e059d8
ILT
2531 // Return the memory size.
2532 uint64_t
2533 memsz() const
2534 { return this->memsz_; }
2535
ead1e424
ILT
2536 // Return the file size.
2537 off_t
2538 filesz() const
2539 { return this->filesz_; }
2540
516cb3d0
ILT
2541 // Return the file offset.
2542 off_t
2543 offset() const
2544 { return this->offset_; }
2545
75f65a3e
ILT
2546 // Return the maximum alignment of the Output_data.
2547 uint64_t
a445fddf 2548 maximum_alignment();
75f65a3e 2549
a2fb1b05
ILT
2550 // Add an Output_section to this segment.
2551 void
dbe717ef
ILT
2552 add_output_section(Output_section* os, elfcpp::Elf_Word seg_flags)
2553 { this->add_output_section(os, seg_flags, false); }
2554
2555 // Add an Output_section to the start of this segment.
2556 void
2557 add_initial_output_section(Output_section* os, elfcpp::Elf_Word seg_flags)
2558 { this->add_output_section(os, seg_flags, true); }
75f65a3e 2559
1650c4ff
ILT
2560 // Remove an Output_section from this segment. It is an error if it
2561 // is not present.
2562 void
2563 remove_output_section(Output_section* os);
2564
75f65a3e
ILT
2565 // Add an Output_data (which is not an Output_section) to the start
2566 // of this segment.
2567 void
2568 add_initial_output_data(Output_data*);
2569
756ac4a8
ILT
2570 // Return true if this segment has any sections which hold actual
2571 // data, rather than being a BSS section.
2572 bool
2573 has_any_data_sections() const
2574 { return !this->output_data_.empty(); }
2575
4f4c5f80
ILT
2576 // Return the number of dynamic relocations applied to this segment.
2577 unsigned int
2578 dynamic_reloc_count() const;
2579
a445fddf
ILT
2580 // Return the address of the first section.
2581 uint64_t
2582 first_section_load_address() const;
2583
2584 // Return whether the addresses have been set already.
2585 bool
2586 are_addresses_set() const
2587 { return this->are_addresses_set_; }
2588
2589 // Set the addresses.
2590 void
2591 set_addresses(uint64_t vaddr, uint64_t paddr)
2592 {
2593 this->vaddr_ = vaddr;
2594 this->paddr_ = paddr;
2595 this->are_addresses_set_ = true;
2596 }
2597
1c4f3631
ILT
2598 // Set the segment flags. This is only used if we have a PHDRS
2599 // clause which explicitly specifies the flags.
2600 void
2601 set_flags(elfcpp::Elf_Word flags)
2602 { this->flags_ = flags; }
2603
75f65a3e 2604 // Set the address of the segment to ADDR and the offset to *POFF
a445fddf
ILT
2605 // and set the addresses and offsets of all contained output
2606 // sections accordingly. Set the section indexes of all contained
2607 // output sections starting with *PSHNDX. If RESET is true, first
2608 // reset the addresses of the contained sections. Return the
2609 // address of the immediately following segment. Update *POFF and
2610 // *PSHNDX. This should only be called for a PT_LOAD segment.
75f65a3e 2611 uint64_t
96a2b4e4 2612 set_section_addresses(const Layout*, bool reset, uint64_t addr, off_t* poff,
a445fddf 2613 unsigned int* pshndx);
75f65a3e 2614
0496d5e5
ILT
2615 // Set the minimum alignment of this segment. This may be adjusted
2616 // upward based on the section alignments.
2617 void
a445fddf
ILT
2618 set_minimum_p_align(uint64_t align)
2619 { this->min_p_align_ = align; }
0496d5e5 2620
75f65a3e
ILT
2621 // Set the offset of this segment based on the section. This should
2622 // only be called for a non-PT_LOAD segment.
2623 void
2624 set_offset();
2625
7bf1f802
ILT
2626 // Set the TLS offsets of the sections contained in the PT_TLS segment.
2627 void
2628 set_tls_offsets();
2629
75f65a3e
ILT
2630 // Return the number of output sections.
2631 unsigned int
2632 output_section_count() const;
a2fb1b05 2633
1c4f3631
ILT
2634 // Return the section attached to the list segment with the lowest
2635 // load address. This is used when handling a PHDRS clause in a
2636 // linker script.
2637 Output_section*
2638 section_with_lowest_load_address() const;
2639
61ba1cf9
ILT
2640 // Write the segment header into *OPHDR.
2641 template<int size, bool big_endian>
2642 void
ead1e424 2643 write_header(elfcpp::Phdr_write<size, big_endian>*);
61ba1cf9
ILT
2644
2645 // Write the section headers of associated sections into V.
2646 template<int size, bool big_endian>
2647 unsigned char*
16649710 2648 write_section_headers(const Layout*, const Stringpool*, unsigned char* v,
7d1a9ebb 2649 unsigned int* pshndx) const;
61ba1cf9 2650
a2fb1b05
ILT
2651 private:
2652 Output_segment(const Output_segment&);
2653 Output_segment& operator=(const Output_segment&);
2654
54dc6425 2655 typedef std::list<Output_data*> Output_data_list;
a2fb1b05 2656
dbe717ef
ILT
2657 // Add an Output_section to this segment, specifying front or back.
2658 void
2659 add_output_section(Output_section*, elfcpp::Elf_Word seg_flags,
2660 bool front);
2661
ead1e424
ILT
2662 // Find the maximum alignment in an Output_data_list.
2663 static uint64_t
a445fddf 2664 maximum_alignment_list(const Output_data_list*);
ead1e424 2665
75f65a3e
ILT
2666 // Set the section addresses in an Output_data_list.
2667 uint64_t
96a2b4e4
ILT
2668 set_section_list_addresses(const Layout*, bool reset, Output_data_list*,
2669 uint64_t addr, off_t* poff, unsigned int* pshndx,
2670 bool* in_tls);
75f65a3e
ILT
2671
2672 // Return the number of Output_sections in an Output_data_list.
2673 unsigned int
2674 output_section_count_list(const Output_data_list*) const;
2675
4f4c5f80
ILT
2676 // Return the number of dynamic relocs in an Output_data_list.
2677 unsigned int
2678 dynamic_reloc_count_list(const Output_data_list*) const;
2679
1c4f3631
ILT
2680 // Find the section with the lowest load address in an
2681 // Output_data_list.
2682 void
2683 lowest_load_address_in_list(const Output_data_list* pdl,
2684 Output_section** found,
2685 uint64_t* found_lma) const;
2686
61ba1cf9
ILT
2687 // Write the section headers in the list into V.
2688 template<int size, bool big_endian>
2689 unsigned char*
16649710
ILT
2690 write_section_headers_list(const Layout*, const Stringpool*,
2691 const Output_data_list*, unsigned char* v,
7d1a9ebb 2692 unsigned int* pshdx) const;
61ba1cf9 2693
75f65a3e 2694 // The list of output data with contents attached to this segment.
54dc6425 2695 Output_data_list output_data_;
75f65a3e
ILT
2696 // The list of output data without contents attached to this segment.
2697 Output_data_list output_bss_;
a2fb1b05
ILT
2698 // The segment virtual address.
2699 uint64_t vaddr_;
2700 // The segment physical address.
2701 uint64_t paddr_;
2702 // The size of the segment in memory.
2703 uint64_t memsz_;
a445fddf
ILT
2704 // The maximum section alignment. The is_max_align_known_ field
2705 // indicates whether this has been finalized.
2706 uint64_t max_align_;
2707 // The required minimum value for the p_align field. This is used
2708 // for PT_LOAD segments. Note that this does not mean that
2709 // addresses should be aligned to this value; it means the p_paddr
2710 // and p_vaddr fields must be congruent modulo this value. For
2711 // non-PT_LOAD segments, the dynamic linker works more efficiently
2712 // if the p_align field has the more conventional value, although it
2713 // can align as needed.
2714 uint64_t min_p_align_;
a2fb1b05
ILT
2715 // The offset of the segment data within the file.
2716 off_t offset_;
2717 // The size of the segment data in the file.
2718 off_t filesz_;
2719 // The segment type;
2720 elfcpp::Elf_Word type_;
2721 // The segment flags.
2722 elfcpp::Elf_Word flags_;
a445fddf
ILT
2723 // Whether we have finalized max_align_.
2724 bool is_max_align_known_ : 1;
2725 // Whether vaddr and paddr were set by a linker script.
2726 bool are_addresses_set_ : 1;
a2fb1b05
ILT
2727};
2728
61ba1cf9 2729// This class represents the output file.
a2fb1b05
ILT
2730
2731class Output_file
2732{
2733 public:
14144f39 2734 Output_file(const char* name);
61ba1cf9 2735
516cb3d0
ILT
2736 // Indicate that this is a temporary file which should not be
2737 // output.
2738 void
2739 set_is_temporary()
2740 { this->is_temporary_ = true; }
2741
61ba1cf9
ILT
2742 // Open the output file. FILE_SIZE is the final size of the file.
2743 void
2744 open(off_t file_size);
2745
27bc2bce
ILT
2746 // Resize the output file.
2747 void
2748 resize(off_t file_size);
2749
c420411f
ILT
2750 // Close the output file (flushing all buffered data) and make sure
2751 // there are no errors.
61ba1cf9
ILT
2752 void
2753 close();
2754
2755 // We currently always use mmap which makes the view handling quite
2756 // simple. In the future we may support other approaches.
a2fb1b05
ILT
2757
2758 // Write data to the output file.
2759 void
fe8718a4 2760 write(off_t offset, const void* data, size_t len)
61ba1cf9
ILT
2761 { memcpy(this->base_ + offset, data, len); }
2762
2763 // Get a buffer to use to write to the file, given the offset into
2764 // the file and the size.
2765 unsigned char*
fe8718a4 2766 get_output_view(off_t start, size_t size)
61ba1cf9 2767 {
8d32f935
ILT
2768 gold_assert(start >= 0
2769 && start + static_cast<off_t>(size) <= this->file_size_);
61ba1cf9
ILT
2770 return this->base_ + start;
2771 }
2772
2773 // VIEW must have been returned by get_output_view. Write the
2774 // buffer to the file, passing in the offset and the size.
2775 void
fe8718a4 2776 write_output_view(off_t, size_t, unsigned char*)
61ba1cf9
ILT
2777 { }
2778
730cdc88
ILT
2779 // Get a read/write buffer. This is used when we want to write part
2780 // of the file, read it in, and write it again.
2781 unsigned char*
fe8718a4 2782 get_input_output_view(off_t start, size_t size)
730cdc88
ILT
2783 { return this->get_output_view(start, size); }
2784
2785 // Write a read/write buffer back to the file.
2786 void
fe8718a4 2787 write_input_output_view(off_t, size_t, unsigned char*)
730cdc88
ILT
2788 { }
2789
2790 // Get a read buffer. This is used when we just want to read part
2791 // of the file back it in.
2792 const unsigned char*
fe8718a4 2793 get_input_view(off_t start, size_t size)
730cdc88
ILT
2794 { return this->get_output_view(start, size); }
2795
2796 // Release a read bfufer.
2797 void
fe8718a4 2798 free_input_view(off_t, size_t, const unsigned char*)
730cdc88
ILT
2799 { }
2800
61ba1cf9 2801 private:
c420411f 2802 // Map the file into memory and return a pointer to the map.
27bc2bce
ILT
2803 void
2804 map();
2805
c420411f
ILT
2806 // Unmap the file from memory (and flush to disk buffers).
2807 void
2808 unmap();
2809
61ba1cf9
ILT
2810 // File name.
2811 const char* name_;
2812 // File descriptor.
2813 int o_;
2814 // File size.
2815 off_t file_size_;
2816 // Base of file mapped into memory.
2817 unsigned char* base_;
c420411f
ILT
2818 // True iff base_ points to a memory buffer rather than an output file.
2819 bool map_is_anonymous_;
516cb3d0
ILT
2820 // True if this is a temporary file which should not be output.
2821 bool is_temporary_;
a2fb1b05
ILT
2822};
2823
2824} // End namespace gold.
2825
2826#endif // !defined(GOLD_OUTPUT_H)
This page took 0.252514 seconds and 4 git commands to generate.