]> Git Repo - binutils.git/blame - gold/output.h
* mi/mi-cmd-var.c (varobj_update_one): Print new
[binutils.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 <[email protected]>.
5
6// This file is part of gold.
7
8// This program is free software; you can redistribute it and/or modify
9// it under the terms of the GNU General Public License as published by
10// the Free Software Foundation; either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21// MA 02110-1301, USA.
22
a2fb1b05
ILT
23#ifndef GOLD_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
759b1a24 598 set_addralign(uint64_t addralign);
5a6f7e2d 599
ead1e424
ILT
600 private:
601 // The output section for this section.
77e65537 602 Output_section* output_section_;
ead1e424
ILT
603 // The required alignment.
604 uint64_t addralign_;
605};
606
27bc2bce
ILT
607// Some Output_section_data classes build up their data step by step,
608// rather than all at once. This class provides an interface for
609// them.
610
611class Output_section_data_build : public Output_section_data
612{
613 public:
614 Output_section_data_build(uint64_t addralign)
615 : Output_section_data(addralign)
616 { }
617
618 // Get the current data size.
619 off_t
620 current_data_size() const
621 { return this->current_data_size_for_child(); }
622
623 // Set the current data size.
624 void
625 set_current_data_size(off_t data_size)
626 { this->set_current_data_size_for_child(data_size); }
627
628 protected:
629 // Set the final data size.
630 virtual void
631 set_final_data_size()
632 { this->set_data_size(this->current_data_size_for_child()); }
633};
634
dbe717ef
ILT
635// A simple case of Output_data in which we have constant data to
636// output.
ead1e424 637
dbe717ef 638class Output_data_const : public Output_section_data
ead1e424
ILT
639{
640 public:
dbe717ef
ILT
641 Output_data_const(const std::string& data, uint64_t addralign)
642 : Output_section_data(data.size(), addralign), data_(data)
643 { }
644
645 Output_data_const(const char* p, off_t len, uint64_t addralign)
646 : Output_section_data(len, addralign), data_(p, len)
647 { }
648
649 Output_data_const(const unsigned char* p, off_t len, uint64_t addralign)
650 : Output_section_data(len, addralign),
651 data_(reinterpret_cast<const char*>(p), len)
652 { }
653
27bc2bce 654 protected:
a3ad94ed 655 // Write the data to the output file.
dbe717ef 656 void
a3ad94ed 657 do_write(Output_file*);
dbe717ef 658
96803768
ILT
659 // Write the data to a buffer.
660 void
661 do_write_to_buffer(unsigned char* buffer)
662 { memcpy(buffer, this->data_.data(), this->data_.size()); }
663
dbe717ef
ILT
664 private:
665 std::string data_;
666};
667
a3ad94ed
ILT
668// Another version of Output_data with constant data, in which the
669// buffer is allocated by the caller.
dbe717ef 670
a3ad94ed 671class Output_data_const_buffer : public Output_section_data
dbe717ef
ILT
672{
673 public:
a3ad94ed
ILT
674 Output_data_const_buffer(const unsigned char* p, off_t len,
675 uint64_t addralign)
676 : Output_section_data(len, addralign), p_(p)
677 { }
678
27bc2bce 679 protected:
a3ad94ed
ILT
680 // Write the data the output file.
681 void
682 do_write(Output_file*);
683
96803768
ILT
684 // Write the data to a buffer.
685 void
686 do_write_to_buffer(unsigned char* buffer)
687 { memcpy(buffer, this->p_, this->data_size()); }
688
a3ad94ed
ILT
689 private:
690 const unsigned char* p_;
691};
692
27bc2bce
ILT
693// A place holder for a fixed amount of data written out via some
694// other mechanism.
a3ad94ed 695
27bc2bce 696class Output_data_fixed_space : public Output_section_data
a3ad94ed
ILT
697{
698 public:
27bc2bce 699 Output_data_fixed_space(off_t data_size, uint64_t addralign)
a3ad94ed
ILT
700 : Output_section_data(data_size, addralign)
701 { }
702
27bc2bce
ILT
703 protected:
704 // Write out the data--the actual data must be written out
705 // elsewhere.
706 void
707 do_write(Output_file*)
ead1e424 708 { }
27bc2bce 709};
ead1e424 710
27bc2bce
ILT
711// A place holder for variable sized data written out via some other
712// mechanism.
713
714class Output_data_space : public Output_section_data_build
715{
716 public:
717 explicit Output_data_space(uint64_t addralign)
718 : Output_section_data_build(addralign)
719 { }
ead1e424 720
5a6f7e2d
ILT
721 // Set the alignment.
722 void
723 set_space_alignment(uint64_t align)
724 { this->set_addralign(align); }
725
27bc2bce
ILT
726 protected:
727 // Write out the data--the actual data must be written out
728 // elsewhere.
ead1e424
ILT
729 void
730 do_write(Output_file*)
731 { }
732};
733
a3ad94ed
ILT
734// A string table which goes into an output section.
735
736class Output_data_strtab : public Output_section_data
737{
738 public:
739 Output_data_strtab(Stringpool* strtab)
740 : Output_section_data(1), strtab_(strtab)
741 { }
742
27bc2bce 743 protected:
a3ad94ed
ILT
744 // This is called to set the address and file offset. Here we make
745 // sure that the Stringpool is finalized.
746 void
27bc2bce 747 set_final_data_size();
a3ad94ed
ILT
748
749 // Write out the data.
750 void
751 do_write(Output_file*);
752
96803768
ILT
753 // Write the data to a buffer.
754 void
755 do_write_to_buffer(unsigned char* buffer)
756 { this->strtab_->write_to_buffer(buffer, this->data_size()); }
757
a3ad94ed
ILT
758 private:
759 Stringpool* strtab_;
760};
761
c06b7b0b
ILT
762// This POD class is used to represent a single reloc in the output
763// file. This could be a private class within Output_data_reloc, but
764// the templatization is complex enough that I broke it out into a
765// separate class. The class is templatized on either elfcpp::SHT_REL
766// or elfcpp::SHT_RELA, and also on whether this is a dynamic
767// relocation or an ordinary relocation.
768
dceae3c1
ILT
769// A relocation can be against a global symbol, a local symbol, a
770// local section symbol, an output section, or the undefined symbol at
771// index 0. We represent the latter by using a NULL global symbol.
c06b7b0b
ILT
772
773template<int sh_type, bool dynamic, int size, bool big_endian>
774class Output_reloc;
775
776template<bool dynamic, int size, bool big_endian>
777class Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>
778{
779 public:
780 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
624f8810 781 typedef typename elfcpp::Elf_types<size>::Elf_Addr Addend;
c06b7b0b
ILT
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
624f8810
ILT
838 // section within the output section. ADDEND is the addend being
839 // applied to the input section.
dceae3c1 840 section_offset_type
624f8810 841 local_section_offset(Addend addend) const;
dceae3c1 842
d1f003c6
ILT
843 // Get the value of the symbol referred to by a Rel relocation when
844 // we are adding the given ADDEND.
e8c846c3 845 Address
624f8810 846 symbol_value(Addend addend) const;
e8c846c3 847
c06b7b0b
ILT
848 // Write the reloc entry to an output view.
849 void
850 write(unsigned char* pov) const;
851
852 // Write the offset and info fields to Write_rel.
853 template<typename Write_rel>
854 void write_rel(Write_rel*) const;
855
856 private:
dceae3c1
ILT
857 // Record that we need a dynamic symbol index.
858 void
859 set_needs_dynsym_index();
860
861 // Return the symbol index.
c06b7b0b
ILT
862 unsigned int
863 get_symbol_index() const;
864
865 // Codes for local_sym_index_.
866 enum
867 {
868 // Global symbol.
869 GSYM_CODE = -1U,
870 // Output section.
871 SECTION_CODE = -2U,
872 // Invalid uninitialized entry.
873 INVALID_CODE = -3U
874 };
875
876 union
877 {
dceae3c1
ILT
878 // For a local symbol or local section symbol
879 // (this->local_sym_index_ >= 0), the object. We will never
880 // generate a relocation against a local symbol in a dynamic
881 // object; that doesn't make sense. And our callers will always
882 // be templatized, so we use Sized_relobj here.
5a6f7e2d 883 Sized_relobj<size, big_endian>* relobj;
dceae3c1
ILT
884 // For a global symbol (this->local_sym_index_ == GSYM_CODE, the
885 // symbol. If this is NULL, it indicates a relocation against the
886 // undefined 0 symbol.
c06b7b0b 887 Symbol* gsym;
dceae3c1
ILT
888 // For a relocation against an output section
889 // (this->local_sym_index_ == SECTION_CODE), the output section.
c06b7b0b 890 Output_section* os;
5a6f7e2d
ILT
891 } u1_;
892 union
893 {
dceae3c1
ILT
894 // If this->shndx_ is not INVALID CODE, the object which holds the
895 // input section being used to specify the reloc address.
5a6f7e2d 896 Relobj* relobj;
dceae3c1 897 // If this->shndx_ is INVALID_CODE, the output data being used to
5a6f7e2d
ILT
898 // specify the reloc address. This may be NULL if the reloc
899 // address is absolute.
900 Output_data* od;
901 } u2_;
902 // The address offset within the input section or the Output_data.
903 Address address_;
dceae3c1
ILT
904 // This is GSYM_CODE for a global symbol, or SECTION_CODE for a
905 // relocation against an output section, or INVALID_CODE for an
906 // uninitialized value. Otherwise, for a local symbol
907 // (this->is_section_symbol_ is false), the local symbol index. For
908 // a local section symbol (this->is_section_symbol_ is true), the
909 // section index in the input file.
c06b7b0b 910 unsigned int local_sym_index_;
a3ad94ed 911 // The reloc type--a processor specific code.
dceae3c1 912 unsigned int type_ : 30;
e8c846c3
ILT
913 // True if the relocation is a RELATIVE relocation.
914 bool is_relative_ : 1;
dceae3c1
ILT
915 // True if the relocation is against a section symbol.
916 bool is_section_symbol_ : 1;
5a6f7e2d
ILT
917 // If the reloc address is an input section in an object, the
918 // section index. This is INVALID_CODE if the reloc address is
919 // specified in some other way.
920 unsigned int shndx_;
c06b7b0b
ILT
921};
922
923// The SHT_RELA version of Output_reloc<>. This is just derived from
924// the SHT_REL version of Output_reloc, but it adds an addend.
925
926template<bool dynamic, int size, bool big_endian>
927class Output_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>
928{
929 public:
930 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
931 typedef typename elfcpp::Elf_types<size>::Elf_Addr Addend;
932
933 // An uninitialized entry.
934 Output_reloc()
935 : rel_()
936 { }
937
938 // A reloc against a global symbol.
5a6f7e2d 939
a3ad94ed 940 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od,
e8c846c3
ILT
941 Address address, Addend addend, bool is_relative)
942 : rel_(gsym, type, od, address, is_relative), addend_(addend)
c06b7b0b
ILT
943 { }
944
5a6f7e2d 945 Output_reloc(Symbol* gsym, unsigned int type, Relobj* relobj,
e8c846c3
ILT
946 unsigned int shndx, Address address, Addend addend,
947 bool is_relative)
948 : rel_(gsym, type, relobj, shndx, address, is_relative), addend_(addend)
5a6f7e2d
ILT
949 { }
950
c06b7b0b 951 // A reloc against a local symbol.
5a6f7e2d
ILT
952
953 Output_reloc(Sized_relobj<size, big_endian>* relobj,
e8c846c3
ILT
954 unsigned int local_sym_index, unsigned int type,
955 Output_data* od, Address address,
dceae3c1
ILT
956 Addend addend, bool is_relative, bool is_section_symbol)
957 : rel_(relobj, local_sym_index, type, od, address, is_relative,
958 is_section_symbol),
e8c846c3 959 addend_(addend)
5a6f7e2d
ILT
960 { }
961
962 Output_reloc(Sized_relobj<size, big_endian>* relobj,
e8c846c3
ILT
963 unsigned int local_sym_index, unsigned int type,
964 unsigned int shndx, Address address,
dceae3c1
ILT
965 Addend addend, bool is_relative, bool is_section_symbol)
966 : rel_(relobj, local_sym_index, type, shndx, address, is_relative,
967 is_section_symbol),
5a6f7e2d 968 addend_(addend)
c06b7b0b
ILT
969 { }
970
971 // A reloc against the STT_SECTION symbol of an output section.
5a6f7e2d 972
a3ad94ed
ILT
973 Output_reloc(Output_section* os, unsigned int type, Output_data* od,
974 Address address, Addend addend)
975 : rel_(os, type, od, address), addend_(addend)
c06b7b0b
ILT
976 { }
977
5a6f7e2d
ILT
978 Output_reloc(Output_section* os, unsigned int type, Relobj* relobj,
979 unsigned int shndx, Address address, Addend addend)
980 : rel_(os, type, relobj, shndx, address), addend_(addend)
981 { }
982
c06b7b0b
ILT
983 // Write the reloc entry to an output view.
984 void
985 write(unsigned char* pov) const;
986
987 private:
988 // The basic reloc.
989 Output_reloc<elfcpp::SHT_REL, dynamic, size, big_endian> rel_;
990 // The addend.
991 Addend addend_;
992};
993
994// Output_data_reloc is used to manage a section containing relocs.
995// SH_TYPE is either elfcpp::SHT_REL or elfcpp::SHT_RELA. DYNAMIC
996// indicates whether this is a dynamic relocation or a normal
997// relocation. Output_data_reloc_base is a base class.
998// Output_data_reloc is the real class, which we specialize based on
999// the reloc type.
1000
1001template<int sh_type, bool dynamic, int size, bool big_endian>
27bc2bce 1002class Output_data_reloc_base : public Output_section_data_build
c06b7b0b
ILT
1003{
1004 public:
1005 typedef Output_reloc<sh_type, dynamic, size, big_endian> Output_reloc_type;
1006 typedef typename Output_reloc_type::Address Address;
1007 static const int reloc_size =
1008 Reloc_types<sh_type, size, big_endian>::reloc_size;
1009
1010 // Construct the section.
1011 Output_data_reloc_base()
27bc2bce 1012 : Output_section_data_build(Output_data::default_alignment_for_size(size))
c06b7b0b
ILT
1013 { }
1014
27bc2bce 1015 protected:
c06b7b0b
ILT
1016 // Write out the data.
1017 void
1018 do_write(Output_file*);
1019
16649710
ILT
1020 // Set the entry size and the link.
1021 void
1022 do_adjust_output_section(Output_section *os);
1023
c06b7b0b
ILT
1024 // Add a relocation entry.
1025 void
4f4c5f80 1026 add(Output_data *od, const Output_reloc_type& reloc)
c06b7b0b
ILT
1027 {
1028 this->relocs_.push_back(reloc);
27bc2bce 1029 this->set_current_data_size(this->relocs_.size() * reloc_size);
4f4c5f80 1030 od->add_dynamic_reloc();
c06b7b0b
ILT
1031 }
1032
1033 private:
1034 typedef std::vector<Output_reloc_type> Relocs;
1035
1036 Relocs relocs_;
1037};
1038
1039// The class which callers actually create.
1040
1041template<int sh_type, bool dynamic, int size, bool big_endian>
1042class Output_data_reloc;
1043
1044// The SHT_REL version of Output_data_reloc.
1045
1046template<bool dynamic, int size, bool big_endian>
1047class Output_data_reloc<elfcpp::SHT_REL, dynamic, size, big_endian>
1048 : public Output_data_reloc_base<elfcpp::SHT_REL, dynamic, size, big_endian>
1049{
dceae3c1 1050 private:
c06b7b0b
ILT
1051 typedef Output_data_reloc_base<elfcpp::SHT_REL, dynamic, size,
1052 big_endian> Base;
1053
1054 public:
1055 typedef typename Base::Output_reloc_type Output_reloc_type;
1056 typedef typename Output_reloc_type::Address Address;
1057
1058 Output_data_reloc()
1059 : Output_data_reloc_base<elfcpp::SHT_REL, dynamic, size, big_endian>()
1060 { }
1061
1062 // Add a reloc against a global symbol.
5a6f7e2d 1063
c06b7b0b 1064 void
a3ad94ed 1065 add_global(Symbol* gsym, unsigned int type, Output_data* od, Address address)
e8c846c3 1066 { this->add(od, Output_reloc_type(gsym, type, od, address, false)); }
c06b7b0b 1067
5a6f7e2d 1068 void
4f4c5f80 1069 add_global(Symbol* gsym, unsigned int type, Output_data* od, Relobj* relobj,
5a6f7e2d 1070 unsigned int shndx, Address address)
e8c846c3
ILT
1071 { this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1072 false)); }
1073
12c0daef
ILT
1074 // These are to simplify the Copy_relocs class.
1075
1076 void
1077 add_global(Symbol* gsym, unsigned int type, Output_data* od, Address address,
1078 Address addend)
1079 {
1080 gold_assert(addend == 0);
1081 this->add_global(gsym, type, od, address);
1082 }
1083
1084 void
1085 add_global(Symbol* gsym, unsigned int type, Output_data* od, Relobj* relobj,
1086 unsigned int shndx, Address address, Address addend)
1087 {
1088 gold_assert(addend == 0);
1089 this->add_global(gsym, type, od, relobj, shndx, address);
1090 }
1091
e8c846c3
ILT
1092 // Add a RELATIVE reloc against a global symbol. The final relocation
1093 // will not reference the symbol.
1094
1095 void
1096 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
1097 Address address)
1098 { this->add(od, Output_reloc_type(gsym, type, od, address, true)); }
1099
1100 void
1101 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
1102 Relobj* relobj, unsigned int shndx, Address address)
dceae3c1
ILT
1103 {
1104 this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1105 true));
1106 }
5a6f7e2d 1107
c06b7b0b 1108 // Add a reloc against a local symbol.
5a6f7e2d 1109
c06b7b0b 1110 void
5a6f7e2d 1111 add_local(Sized_relobj<size, big_endian>* relobj,
a3ad94ed
ILT
1112 unsigned int local_sym_index, unsigned int type,
1113 Output_data* od, Address address)
dceae3c1
ILT
1114 {
1115 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od,
1116 address, false, false));
1117 }
5a6f7e2d
ILT
1118
1119 void
1120 add_local(Sized_relobj<size, big_endian>* relobj,
1121 unsigned int local_sym_index, unsigned int type,
4f4c5f80 1122 Output_data* od, unsigned int shndx, Address address)
dceae3c1
ILT
1123 {
1124 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
1125 address, false, false));
1126 }
e8c846c3
ILT
1127
1128 // Add a RELATIVE reloc against a local symbol.
5a6f7e2d 1129
e8c846c3
ILT
1130 void
1131 add_local_relative(Sized_relobj<size, big_endian>* relobj,
1132 unsigned int local_sym_index, unsigned int type,
1133 Output_data* od, Address address)
dceae3c1
ILT
1134 {
1135 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od,
1136 address, true, false));
1137 }
e8c846c3
ILT
1138
1139 void
1140 add_local_relative(Sized_relobj<size, big_endian>* relobj,
1141 unsigned int local_sym_index, unsigned int type,
1142 Output_data* od, unsigned int shndx, Address address)
dceae3c1
ILT
1143 {
1144 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
1145 address, true, false));
1146 }
1147
1148 // Add a reloc against a local section symbol. This will be
1149 // converted into a reloc against the STT_SECTION symbol of the
1150 // output section.
1151
1152 void
1153 add_local_section(Sized_relobj<size, big_endian>* relobj,
1154 unsigned int input_shndx, unsigned int type,
1155 Output_data* od, Address address)
1156 {
1157 this->add(od, Output_reloc_type(relobj, input_shndx, type, od,
1158 address, false, true));
1159 }
1160
1161 void
1162 add_local_section(Sized_relobj<size, big_endian>* relobj,
1163 unsigned int input_shndx, unsigned int type,
1164 Output_data* od, unsigned int shndx, Address address)
1165 {
1166 this->add(od, Output_reloc_type(relobj, input_shndx, type, shndx,
1167 address, false, true));
1168 }
c06b7b0b
ILT
1169
1170 // A reloc against the STT_SECTION symbol of an output section.
4f4c5f80
ILT
1171 // OS is the Output_section that the relocation refers to; OD is
1172 // the Output_data object being relocated.
5a6f7e2d 1173
c06b7b0b 1174 void
a3ad94ed
ILT
1175 add_output_section(Output_section* os, unsigned int type,
1176 Output_data* od, Address address)
4f4c5f80 1177 { this->add(od, Output_reloc_type(os, type, od, address)); }
5a6f7e2d
ILT
1178
1179 void
4f4c5f80 1180 add_output_section(Output_section* os, unsigned int type, Output_data* od,
5a6f7e2d 1181 Relobj* relobj, unsigned int shndx, Address address)
4f4c5f80 1182 { this->add(od, Output_reloc_type(os, type, relobj, shndx, address)); }
c06b7b0b
ILT
1183};
1184
1185// The SHT_RELA version of Output_data_reloc.
1186
1187template<bool dynamic, int size, bool big_endian>
1188class Output_data_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>
1189 : public Output_data_reloc_base<elfcpp::SHT_RELA, dynamic, size, big_endian>
1190{
dceae3c1 1191 private:
c06b7b0b
ILT
1192 typedef Output_data_reloc_base<elfcpp::SHT_RELA, dynamic, size,
1193 big_endian> Base;
1194
1195 public:
1196 typedef typename Base::Output_reloc_type Output_reloc_type;
1197 typedef typename Output_reloc_type::Address Address;
1198 typedef typename Output_reloc_type::Addend Addend;
1199
1200 Output_data_reloc()
1201 : Output_data_reloc_base<elfcpp::SHT_RELA, dynamic, size, big_endian>()
1202 { }
1203
1204 // Add a reloc against a global symbol.
5a6f7e2d 1205
c06b7b0b 1206 void
a3ad94ed
ILT
1207 add_global(Symbol* gsym, unsigned int type, Output_data* od,
1208 Address address, Addend addend)
e8c846c3
ILT
1209 { this->add(od, Output_reloc_type(gsym, type, od, address, addend,
1210 false)); }
c06b7b0b 1211
5a6f7e2d 1212 void
4f4c5f80
ILT
1213 add_global(Symbol* gsym, unsigned int type, Output_data* od, Relobj* relobj,
1214 unsigned int shndx, Address address,
1215 Addend addend)
1216 { this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
e8c846c3
ILT
1217 addend, false)); }
1218
1219 // Add a RELATIVE reloc against a global symbol. The final output
1220 // relocation will not reference the symbol, but we must keep the symbol
1221 // information long enough to set the addend of the relocation correctly
1222 // when it is written.
1223
1224 void
1225 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
1226 Address address, Addend addend)
1227 { this->add(od, Output_reloc_type(gsym, type, od, address, addend, true)); }
1228
1229 void
1230 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od,
1231 Relobj* relobj, unsigned int shndx, Address address,
1232 Addend addend)
1233 { this->add(od, Output_reloc_type(gsym, type, relobj, shndx, address,
1234 addend, true)); }
5a6f7e2d 1235
c06b7b0b 1236 // Add a reloc against a local symbol.
5a6f7e2d 1237
c06b7b0b 1238 void
5a6f7e2d 1239 add_local(Sized_relobj<size, big_endian>* relobj,
c06b7b0b 1240 unsigned int local_sym_index, unsigned int type,
a3ad94ed 1241 Output_data* od, Address address, Addend addend)
c06b7b0b 1242 {
4f4c5f80 1243 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od, address,
dceae3c1 1244 addend, false, false));
5a6f7e2d
ILT
1245 }
1246
1247 void
1248 add_local(Sized_relobj<size, big_endian>* relobj,
1249 unsigned int local_sym_index, unsigned int type,
4f4c5f80
ILT
1250 Output_data* od, unsigned int shndx, Address address,
1251 Addend addend)
5a6f7e2d 1252 {
4f4c5f80 1253 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
dceae3c1 1254 address, addend, false, false));
e8c846c3
ILT
1255 }
1256
1257 // Add a RELATIVE reloc against a local symbol.
1258
1259 void
1260 add_local_relative(Sized_relobj<size, big_endian>* relobj,
1261 unsigned int local_sym_index, unsigned int type,
1262 Output_data* od, Address address, Addend addend)
1263 {
1264 this->add(od, Output_reloc_type(relobj, local_sym_index, type, od, address,
dceae3c1 1265 addend, true, false));
e8c846c3
ILT
1266 }
1267
1268 void
1269 add_local_relative(Sized_relobj<size, big_endian>* relobj,
1270 unsigned int local_sym_index, unsigned int type,
1271 Output_data* od, unsigned int shndx, Address address,
1272 Addend addend)
1273 {
1274 this->add(od, Output_reloc_type(relobj, local_sym_index, type, shndx,
dceae3c1
ILT
1275 address, addend, true, false));
1276 }
1277
1278 // Add a reloc against a local section symbol. This will be
1279 // converted into a reloc against the STT_SECTION symbol of the
1280 // output section.
1281
1282 void
1283 add_local_section(Sized_relobj<size, big_endian>* relobj,
1284 unsigned int input_shndx, unsigned int type,
1285 Output_data* od, Address address, Addend addend)
1286 {
1287 this->add(od, Output_reloc_type(relobj, input_shndx, type, od, address,
1288 addend, false, true));
1289 }
1290
1291 void
1292 add_local_section(Sized_relobj<size, big_endian>* relobj,
1293 unsigned int input_shndx, unsigned int type,
1294 Output_data* od, unsigned int shndx, Address address,
1295 Addend addend)
1296 {
1297 this->add(od, Output_reloc_type(relobj, input_shndx, type, shndx,
1298 address, addend, false, true));
c06b7b0b
ILT
1299 }
1300
1301 // A reloc against the STT_SECTION symbol of an output section.
5a6f7e2d 1302
c06b7b0b 1303 void
a3ad94ed
ILT
1304 add_output_section(Output_section* os, unsigned int type, Output_data* od,
1305 Address address, Addend addend)
4f4c5f80 1306 { this->add(os, Output_reloc_type(os, type, od, address, addend)); }
5a6f7e2d
ILT
1307
1308 void
1309 add_output_section(Output_section* os, unsigned int type, Relobj* relobj,
1310 unsigned int shndx, Address address, Addend addend)
4f4c5f80
ILT
1311 { this->add(os, Output_reloc_type(os, type, relobj, shndx, address,
1312 addend)); }
c06b7b0b
ILT
1313};
1314
6a74a719
ILT
1315// Output_relocatable_relocs represents a relocation section in a
1316// relocatable link. The actual data is written out in the target
1317// hook relocate_for_relocatable. This just saves space for it.
1318
1319template<int sh_type, int size, bool big_endian>
1320class Output_relocatable_relocs : public Output_section_data
1321{
1322 public:
1323 Output_relocatable_relocs(Relocatable_relocs* rr)
1324 : Output_section_data(Output_data::default_alignment_for_size(size)),
1325 rr_(rr)
1326 { }
1327
1328 void
1329 set_final_data_size();
1330
1331 // Write out the data. There is nothing to do here.
1332 void
1333 do_write(Output_file*)
1334 { }
1335
1336 private:
1337 // The relocs associated with this input section.
1338 Relocatable_relocs* rr_;
1339};
1340
1341// Handle a GROUP section.
1342
1343template<int size, bool big_endian>
1344class Output_data_group : public Output_section_data
1345{
1346 public:
1347 Output_data_group(Sized_relobj<size, big_endian>* relobj,
1348 section_size_type entry_count,
1349 const elfcpp::Elf_Word* contents);
1350
1351 void
1352 do_write(Output_file*);
1353
1354 private:
1355 // The input object.
1356 Sized_relobj<size, big_endian>* relobj_;
1357 // The group flag word.
1358 elfcpp::Elf_Word flags_;
1359 // The section indexes of the input sections in this group.
1360 std::vector<unsigned int> input_sections_;
1361};
1362
dbe717ef
ILT
1363// Output_data_got is used to manage a GOT. Each entry in the GOT is
1364// for one symbol--either a global symbol or a local symbol in an
ead1e424 1365// object. The target specific code adds entries to the GOT as
dbe717ef 1366// needed.
ead1e424
ILT
1367
1368template<int size, bool big_endian>
27bc2bce 1369class Output_data_got : public Output_section_data_build
ead1e424
ILT
1370{
1371 public:
1372 typedef typename elfcpp::Elf_types<size>::Elf_Addr Valtype;
7bf1f802
ILT
1373 typedef Output_data_reloc<elfcpp::SHT_REL, true, size, big_endian> Rel_dyn;
1374 typedef Output_data_reloc<elfcpp::SHT_RELA, true, size, big_endian> Rela_dyn;
ead1e424 1375
7e1edb90 1376 Output_data_got()
27bc2bce 1377 : Output_section_data_build(Output_data::default_alignment_for_size(size)),
730cdc88 1378 entries_()
ead1e424
ILT
1379 { }
1380
dbe717ef
ILT
1381 // Add an entry for a global symbol to the GOT. Return true if this
1382 // is a new GOT entry, false if the symbol was already in the GOT.
1383 bool
0a65a3a7 1384 add_global(Symbol* gsym, unsigned int got_type);
ead1e424 1385
7bf1f802
ILT
1386 // Add an entry for a global symbol to the GOT, and add a dynamic
1387 // relocation of type R_TYPE for the GOT entry.
1388 void
0a65a3a7
CC
1389 add_global_with_rel(Symbol* gsym, unsigned int got_type,
1390 Rel_dyn* rel_dyn, unsigned int r_type);
7bf1f802
ILT
1391
1392 void
0a65a3a7
CC
1393 add_global_with_rela(Symbol* gsym, unsigned int got_type,
1394 Rela_dyn* rela_dyn, unsigned int r_type);
1395
1396 // Add a pair of entries for a global symbol to the GOT, and add
1397 // dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
1398 void
1399 add_global_pair_with_rel(Symbol* gsym, unsigned int got_type,
1400 Rel_dyn* rel_dyn, unsigned int r_type_1,
1401 unsigned int r_type_2);
1402
1403 void
1404 add_global_pair_with_rela(Symbol* gsym, unsigned int got_type,
1405 Rela_dyn* rela_dyn, unsigned int r_type_1,
1406 unsigned int r_type_2);
7bf1f802 1407
e727fa71
ILT
1408 // Add an entry for a local symbol to the GOT. This returns true if
1409 // this is a new GOT entry, false if the symbol already has a GOT
1410 // entry.
1411 bool
0a65a3a7
CC
1412 add_local(Sized_relobj<size, big_endian>* object, unsigned int sym_index,
1413 unsigned int got_type);
ead1e424 1414
0a65a3a7 1415 // Add an entry for a local symbol to the GOT, and add a dynamic
7bf1f802
ILT
1416 // relocation of type R_TYPE for the GOT entry.
1417 void
1418 add_local_with_rel(Sized_relobj<size, big_endian>* object,
0a65a3a7
CC
1419 unsigned int sym_index, unsigned int got_type,
1420 Rel_dyn* rel_dyn, unsigned int r_type);
7bf1f802
ILT
1421
1422 void
1423 add_local_with_rela(Sized_relobj<size, big_endian>* object,
0a65a3a7
CC
1424 unsigned int sym_index, unsigned int got_type,
1425 Rela_dyn* rela_dyn, unsigned int r_type);
07f397ab 1426
0a65a3a7
CC
1427 // Add a pair of entries for a local symbol to the GOT, and add
1428 // dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
7bf1f802 1429 void
0a65a3a7
CC
1430 add_local_pair_with_rel(Sized_relobj<size, big_endian>* object,
1431 unsigned int sym_index, unsigned int shndx,
1432 unsigned int got_type, Rel_dyn* rel_dyn,
1433 unsigned int r_type_1, unsigned int r_type_2);
7bf1f802
ILT
1434
1435 void
0a65a3a7
CC
1436 add_local_pair_with_rela(Sized_relobj<size, big_endian>* object,
1437 unsigned int sym_index, unsigned int shndx,
1438 unsigned int got_type, Rela_dyn* rela_dyn,
1439 unsigned int r_type_1, unsigned int r_type_2);
7bf1f802 1440
ead1e424
ILT
1441 // Add a constant to the GOT. This returns the offset of the new
1442 // entry from the start of the GOT.
1443 unsigned int
1444 add_constant(Valtype constant)
1445 {
1446 this->entries_.push_back(Got_entry(constant));
1447 this->set_got_size();
1448 return this->last_got_offset();
1449 }
1450
27bc2bce 1451 protected:
ead1e424
ILT
1452 // Write out the GOT table.
1453 void
1454 do_write(Output_file*);
1455
1456 private:
1457 // This POD class holds a single GOT entry.
1458 class Got_entry
1459 {
1460 public:
1461 // Create a zero entry.
1462 Got_entry()
1463 : local_sym_index_(CONSTANT_CODE)
1464 { this->u_.constant = 0; }
1465
1466 // Create a global symbol entry.
a3ad94ed 1467 explicit Got_entry(Symbol* gsym)
ead1e424
ILT
1468 : local_sym_index_(GSYM_CODE)
1469 { this->u_.gsym = gsym; }
1470
1471 // Create a local symbol entry.
e727fa71
ILT
1472 Got_entry(Sized_relobj<size, big_endian>* object,
1473 unsigned int local_sym_index)
ead1e424
ILT
1474 : local_sym_index_(local_sym_index)
1475 {
a3ad94ed
ILT
1476 gold_assert(local_sym_index != GSYM_CODE
1477 && local_sym_index != CONSTANT_CODE);
ead1e424
ILT
1478 this->u_.object = object;
1479 }
1480
1481 // Create a constant entry. The constant is a host value--it will
1482 // be swapped, if necessary, when it is written out.
a3ad94ed 1483 explicit Got_entry(Valtype constant)
ead1e424
ILT
1484 : local_sym_index_(CONSTANT_CODE)
1485 { this->u_.constant = constant; }
1486
1487 // Write the GOT entry to an output view.
1488 void
7e1edb90 1489 write(unsigned char* pov) const;
ead1e424
ILT
1490
1491 private:
1492 enum
1493 {
1494 GSYM_CODE = -1U,
1495 CONSTANT_CODE = -2U
1496 };
1497
1498 union
1499 {
1500 // For a local symbol, the object.
e727fa71 1501 Sized_relobj<size, big_endian>* object;
ead1e424
ILT
1502 // For a global symbol, the symbol.
1503 Symbol* gsym;
1504 // For a constant, the constant.
1505 Valtype constant;
1506 } u_;
c06b7b0b
ILT
1507 // For a local symbol, the local symbol index. This is GSYM_CODE
1508 // for a global symbol, or CONSTANT_CODE for a constant.
ead1e424
ILT
1509 unsigned int local_sym_index_;
1510 };
1511
1512 typedef std::vector<Got_entry> Got_entries;
1513
1514 // Return the offset into the GOT of GOT entry I.
1515 unsigned int
1516 got_offset(unsigned int i) const
1517 { return i * (size / 8); }
1518
1519 // Return the offset into the GOT of the last entry added.
1520 unsigned int
1521 last_got_offset() const
1522 { return this->got_offset(this->entries_.size() - 1); }
1523
1524 // Set the size of the section.
1525 void
1526 set_got_size()
27bc2bce 1527 { this->set_current_data_size(this->got_offset(this->entries_.size())); }
ead1e424
ILT
1528
1529 // The list of GOT entries.
1530 Got_entries entries_;
1531};
1532
a3ad94ed
ILT
1533// Output_data_dynamic is used to hold the data in SHT_DYNAMIC
1534// section.
1535
1536class Output_data_dynamic : public Output_section_data
1537{
1538 public:
9025d29d 1539 Output_data_dynamic(Stringpool* pool)
730cdc88 1540 : Output_section_data(Output_data::default_alignment()),
9025d29d 1541 entries_(), pool_(pool)
a3ad94ed
ILT
1542 { }
1543
1544 // Add a new dynamic entry with a fixed numeric value.
1545 void
1546 add_constant(elfcpp::DT tag, unsigned int val)
1547 { this->add_entry(Dynamic_entry(tag, val)); }
1548
16649710 1549 // Add a new dynamic entry with the address of output data.
a3ad94ed 1550 void
16649710
ILT
1551 add_section_address(elfcpp::DT tag, const Output_data* od)
1552 { this->add_entry(Dynamic_entry(tag, od, false)); }
a3ad94ed 1553
c2b45e22
CC
1554 // Add a new dynamic entry with the address of output data
1555 // plus a constant offset.
1556 void
1557 add_section_plus_offset(elfcpp::DT tag, const Output_data* od,
1558 unsigned int offset)
1559 { this->add_entry(Dynamic_entry(tag, od, offset)); }
1560
16649710 1561 // Add a new dynamic entry with the size of output data.
a3ad94ed 1562 void
16649710
ILT
1563 add_section_size(elfcpp::DT tag, const Output_data* od)
1564 { this->add_entry(Dynamic_entry(tag, od, true)); }
a3ad94ed
ILT
1565
1566 // Add a new dynamic entry with the address of a symbol.
1567 void
16649710 1568 add_symbol(elfcpp::DT tag, const Symbol* sym)
a3ad94ed
ILT
1569 { this->add_entry(Dynamic_entry(tag, sym)); }
1570
1571 // Add a new dynamic entry with a string.
1572 void
1573 add_string(elfcpp::DT tag, const char* str)
cfd73a4e 1574 { this->add_entry(Dynamic_entry(tag, this->pool_->add(str, true, NULL))); }
a3ad94ed 1575
41f542e7
ILT
1576 void
1577 add_string(elfcpp::DT tag, const std::string& str)
1578 { this->add_string(tag, str.c_str()); }
1579
27bc2bce
ILT
1580 protected:
1581 // Adjust the output section to set the entry size.
1582 void
1583 do_adjust_output_section(Output_section*);
1584
a3ad94ed
ILT
1585 // Set the final data size.
1586 void
27bc2bce 1587 set_final_data_size();
a3ad94ed
ILT
1588
1589 // Write out the dynamic entries.
1590 void
1591 do_write(Output_file*);
1592
1593 private:
1594 // This POD class holds a single dynamic entry.
1595 class Dynamic_entry
1596 {
1597 public:
1598 // Create an entry with a fixed numeric value.
1599 Dynamic_entry(elfcpp::DT tag, unsigned int val)
c2b45e22 1600 : tag_(tag), offset_(DYNAMIC_NUMBER)
a3ad94ed
ILT
1601 { this->u_.val = val; }
1602
1603 // Create an entry with the size or address of a section.
16649710 1604 Dynamic_entry(elfcpp::DT tag, const Output_data* od, bool section_size)
a3ad94ed 1605 : tag_(tag),
c2b45e22
CC
1606 offset_(section_size
1607 ? DYNAMIC_SECTION_SIZE
1608 : DYNAMIC_SECTION_ADDRESS)
1609 { this->u_.od = od; }
1610
1611 // Create an entry with the address of a section plus a constant offset.
1612 Dynamic_entry(elfcpp::DT tag, const Output_data* od, unsigned int offset)
1613 : tag_(tag),
1614 offset_(offset)
16649710 1615 { this->u_.od = od; }
a3ad94ed
ILT
1616
1617 // Create an entry with the address of a symbol.
16649710 1618 Dynamic_entry(elfcpp::DT tag, const Symbol* sym)
c2b45e22 1619 : tag_(tag), offset_(DYNAMIC_SYMBOL)
a3ad94ed
ILT
1620 { this->u_.sym = sym; }
1621
1622 // Create an entry with a string.
1623 Dynamic_entry(elfcpp::DT tag, const char* str)
c2b45e22 1624 : tag_(tag), offset_(DYNAMIC_STRING)
a3ad94ed
ILT
1625 { this->u_.str = str; }
1626
1627 // Write the dynamic entry to an output view.
1628 template<int size, bool big_endian>
1629 void
7d1a9ebb 1630 write(unsigned char* pov, const Stringpool*) const;
a3ad94ed
ILT
1631
1632 private:
c2b45e22 1633 // Classification is encoded in the OFFSET field.
a3ad94ed
ILT
1634 enum Classification
1635 {
a3ad94ed 1636 // Section address.
c2b45e22
CC
1637 DYNAMIC_SECTION_ADDRESS = 0,
1638 // Number.
1639 DYNAMIC_NUMBER = -1U,
a3ad94ed 1640 // Section size.
c2b45e22 1641 DYNAMIC_SECTION_SIZE = -2U,
a3ad94ed 1642 // Symbol adress.
c2b45e22 1643 DYNAMIC_SYMBOL = -3U,
a3ad94ed 1644 // String.
c2b45e22
CC
1645 DYNAMIC_STRING = -4U
1646 // Any other value indicates a section address plus OFFSET.
a3ad94ed
ILT
1647 };
1648
1649 union
1650 {
1651 // For DYNAMIC_NUMBER.
1652 unsigned int val;
c2b45e22 1653 // For DYNAMIC_SECTION_SIZE and section address plus OFFSET.
16649710 1654 const Output_data* od;
a3ad94ed 1655 // For DYNAMIC_SYMBOL.
16649710 1656 const Symbol* sym;
a3ad94ed
ILT
1657 // For DYNAMIC_STRING.
1658 const char* str;
1659 } u_;
1660 // The dynamic tag.
1661 elfcpp::DT tag_;
c2b45e22
CC
1662 // The type of entry (Classification) or offset within a section.
1663 unsigned int offset_;
a3ad94ed
ILT
1664 };
1665
1666 // Add an entry to the list.
1667 void
1668 add_entry(const Dynamic_entry& entry)
1669 { this->entries_.push_back(entry); }
1670
1671 // Sized version of write function.
1672 template<int size, bool big_endian>
1673 void
1674 sized_write(Output_file* of);
1675
1676 // The type of the list of entries.
1677 typedef std::vector<Dynamic_entry> Dynamic_entries;
1678
a3ad94ed
ILT
1679 // The entries.
1680 Dynamic_entries entries_;
1681 // The pool used for strings.
1682 Stringpool* pool_;
1683};
1684
a2fb1b05
ILT
1685// An output section. We don't expect to have too many output
1686// sections, so we don't bother to do a template on the size.
1687
54dc6425 1688class Output_section : public Output_data
a2fb1b05
ILT
1689{
1690 public:
1691 // Create an output section, giving the name, type, and flags.
96803768 1692 Output_section(const char* name, elfcpp::Elf_Word, elfcpp::Elf_Xword);
54dc6425 1693 virtual ~Output_section();
a2fb1b05 1694
ead1e424 1695 // Add a new input section SHNDX, named NAME, with header SHDR, from
730cdc88
ILT
1696 // object OBJECT. RELOC_SHNDX is the index of a relocation section
1697 // which applies to this section, or 0 if none, or -1U if more than
a445fddf
ILT
1698 // one. HAVE_SECTIONS_SCRIPT is true if we have a SECTIONS clause
1699 // in a linker script; in that case we need to keep track of input
1700 // sections associated with an output section. Return the offset
1701 // within the output section.
a2fb1b05
ILT
1702 template<int size, bool big_endian>
1703 off_t
730cdc88
ILT
1704 add_input_section(Sized_relobj<size, big_endian>* object, unsigned int shndx,
1705 const char *name,
1706 const elfcpp::Shdr<size, big_endian>& shdr,
a445fddf 1707 unsigned int reloc_shndx, bool have_sections_script);
a2fb1b05 1708
b8e6aad9 1709 // Add generated data POSD to this output section.
c06b7b0b 1710 void
ead1e424
ILT
1711 add_output_section_data(Output_section_data* posd);
1712
a2fb1b05
ILT
1713 // Return the section name.
1714 const char*
1715 name() const
1716 { return this->name_; }
1717
1718 // Return the section type.
1719 elfcpp::Elf_Word
1720 type() const
1721 { return this->type_; }
1722
1723 // Return the section flags.
1724 elfcpp::Elf_Xword
1725 flags() const
1726 { return this->flags_; }
1727
1650c4ff
ILT
1728 // Set the section flags. This may only be used with the Layout
1729 // code when it is prepared to move the section to a different
1730 // segment.
1731 void
1732 set_flags(elfcpp::Elf_Xword flags)
1733 { this->flags_ = flags; }
1734
154e0e9a
ILT
1735 // Update the output section flags based on input section flags.
1736 void
1737 update_flags_for_input_section(elfcpp::Elf_Xword flags)
1738 {
1739 this->flags_ |= (flags
1740 & (elfcpp::SHF_WRITE
1741 | elfcpp::SHF_ALLOC
1742 | elfcpp::SHF_EXECINSTR));
1743 }
1744
a3ad94ed
ILT
1745 // Return the entsize field.
1746 uint64_t
1747 entsize() const
1748 { return this->entsize_; }
1749
61ba1cf9
ILT
1750 // Set the entsize field.
1751 void
16649710 1752 set_entsize(uint64_t v);
61ba1cf9 1753
a445fddf
ILT
1754 // Set the load address.
1755 void
1756 set_load_address(uint64_t load_address)
1757 {
1758 this->load_address_ = load_address;
1759 this->has_load_address_ = true;
1760 }
1761
16649710
ILT
1762 // Set the link field to the output section index of a section.
1763 void
14b31740 1764 set_link_section(const Output_data* od)
16649710
ILT
1765 {
1766 gold_assert(this->link_ == 0
1767 && !this->should_link_to_symtab_
1768 && !this->should_link_to_dynsym_);
1769 this->link_section_ = od;
1770 }
1771
1772 // Set the link field to a constant.
61ba1cf9
ILT
1773 void
1774 set_link(unsigned int v)
16649710
ILT
1775 {
1776 gold_assert(this->link_section_ == NULL
1777 && !this->should_link_to_symtab_
1778 && !this->should_link_to_dynsym_);
1779 this->link_ = v;
1780 }
61ba1cf9 1781
16649710
ILT
1782 // Record that this section should link to the normal symbol table.
1783 void
1784 set_should_link_to_symtab()
1785 {
1786 gold_assert(this->link_section_ == NULL
1787 && this->link_ == 0
1788 && !this->should_link_to_dynsym_);
1789 this->should_link_to_symtab_ = true;
1790 }
1791
1792 // Record that this section should link to the dynamic symbol table.
1793 void
1794 set_should_link_to_dynsym()
1795 {
1796 gold_assert(this->link_section_ == NULL
1797 && this->link_ == 0
1798 && !this->should_link_to_symtab_);
1799 this->should_link_to_dynsym_ = true;
1800 }
1801
1802 // Return the info field.
1803 unsigned int
1804 info() const
1805 {
755ab8af
ILT
1806 gold_assert(this->info_section_ == NULL
1807 && this->info_symndx_ == NULL);
16649710
ILT
1808 return this->info_;
1809 }
1810
1811 // Set the info field to the output section index of a section.
1812 void
755ab8af 1813 set_info_section(const Output_section* os)
16649710 1814 {
755ab8af
ILT
1815 gold_assert((this->info_section_ == NULL
1816 || (this->info_section_ == os
1817 && this->info_uses_section_index_))
1818 && this->info_symndx_ == NULL
1819 && this->info_ == 0);
1820 this->info_section_ = os;
1821 this->info_uses_section_index_= true;
16649710
ILT
1822 }
1823
6a74a719
ILT
1824 // Set the info field to the symbol table index of a symbol.
1825 void
1826 set_info_symndx(const Symbol* sym)
1827 {
755ab8af
ILT
1828 gold_assert(this->info_section_ == NULL
1829 && (this->info_symndx_ == NULL
1830 || this->info_symndx_ == sym)
1831 && this->info_ == 0);
6a74a719
ILT
1832 this->info_symndx_ = sym;
1833 }
1834
755ab8af
ILT
1835 // Set the info field to the symbol table index of a section symbol.
1836 void
1837 set_info_section_symndx(const Output_section* os)
1838 {
1839 gold_assert((this->info_section_ == NULL
1840 || (this->info_section_ == os
1841 && !this->info_uses_section_index_))
1842 && this->info_symndx_ == NULL
1843 && this->info_ == 0);
1844 this->info_section_ = os;
1845 this->info_uses_section_index_ = false;
1846 }
1847
16649710 1848 // Set the info field to a constant.
61ba1cf9
ILT
1849 void
1850 set_info(unsigned int v)
16649710 1851 {
755ab8af
ILT
1852 gold_assert(this->info_section_ == NULL
1853 && this->info_symndx_ == NULL
1854 && (this->info_ == 0
1855 || this->info_ == v));
16649710
ILT
1856 this->info_ = v;
1857 }
61ba1cf9
ILT
1858
1859 // Set the addralign field.
1860 void
1861 set_addralign(uint64_t v)
1862 { this->addralign_ = v; }
1863
c06b7b0b
ILT
1864 // Indicate that we need a symtab index.
1865 void
1866 set_needs_symtab_index()
1867 { this->needs_symtab_index_ = true; }
1868
1869 // Return whether we need a symtab index.
1870 bool
1871 needs_symtab_index() const
1872 { return this->needs_symtab_index_; }
1873
1874 // Get the symtab index.
1875 unsigned int
1876 symtab_index() const
1877 {
a3ad94ed 1878 gold_assert(this->symtab_index_ != 0);
c06b7b0b
ILT
1879 return this->symtab_index_;
1880 }
1881
1882 // Set the symtab index.
1883 void
1884 set_symtab_index(unsigned int index)
1885 {
a3ad94ed 1886 gold_assert(index != 0);
c06b7b0b
ILT
1887 this->symtab_index_ = index;
1888 }
1889
1890 // Indicate that we need a dynsym index.
1891 void
1892 set_needs_dynsym_index()
1893 { this->needs_dynsym_index_ = true; }
1894
1895 // Return whether we need a dynsym index.
1896 bool
1897 needs_dynsym_index() const
1898 { return this->needs_dynsym_index_; }
1899
1900 // Get the dynsym index.
1901 unsigned int
1902 dynsym_index() const
1903 {
a3ad94ed 1904 gold_assert(this->dynsym_index_ != 0);
c06b7b0b
ILT
1905 return this->dynsym_index_;
1906 }
1907
1908 // Set the dynsym index.
1909 void
1910 set_dynsym_index(unsigned int index)
1911 {
a3ad94ed 1912 gold_assert(index != 0);
c06b7b0b
ILT
1913 this->dynsym_index_ = index;
1914 }
1915
2fd32231
ILT
1916 // Return whether the input sections sections attachd to this output
1917 // section may require sorting. This is used to handle constructor
1918 // priorities compatibly with GNU ld.
1919 bool
1920 may_sort_attached_input_sections() const
1921 { return this->may_sort_attached_input_sections_; }
1922
1923 // Record that the input sections attached to this output section
1924 // may require sorting.
1925 void
1926 set_may_sort_attached_input_sections()
1927 { this->may_sort_attached_input_sections_ = true; }
1928
1929 // Return whether the input sections attached to this output section
1930 // require sorting. This is used to handle constructor priorities
1931 // compatibly with GNU ld.
1932 bool
1933 must_sort_attached_input_sections() const
1934 { return this->must_sort_attached_input_sections_; }
1935
1936 // Record that the input sections attached to this output section
1937 // require sorting.
1938 void
1939 set_must_sort_attached_input_sections()
1940 { this->must_sort_attached_input_sections_ = true; }
1941
730cdc88
ILT
1942 // Return whether this section should be written after all the input
1943 // sections are complete.
1944 bool
1945 after_input_sections() const
1946 { return this->after_input_sections_; }
1947
1948 // Record that this section should be written after all the input
1949 // sections are complete.
1950 void
1951 set_after_input_sections()
1952 { this->after_input_sections_ = true; }
1953
27bc2bce
ILT
1954 // Return whether this section requires postprocessing after all
1955 // relocations have been applied.
1956 bool
1957 requires_postprocessing() const
1958 { return this->requires_postprocessing_; }
1959
96803768
ILT
1960 // If a section requires postprocessing, return the buffer to use.
1961 unsigned char*
1962 postprocessing_buffer() const
1963 {
1964 gold_assert(this->postprocessing_buffer_ != NULL);
1965 return this->postprocessing_buffer_;
1966 }
1967
1968 // If a section requires postprocessing, create the buffer to use.
27bc2bce 1969 void
96803768
ILT
1970 create_postprocessing_buffer();
1971
1972 // If a section requires postprocessing, this is the size of the
1973 // buffer to which relocations should be applied.
1974 off_t
1975 postprocessing_buffer_size() const
1976 { return this->current_data_size_for_child(); }
27bc2bce 1977
755ab8af
ILT
1978 // Modify the section name. This is only permitted for an
1979 // unallocated section, and only before the size has been finalized.
1980 // Otherwise the name will not get into Layout::namepool_.
1981 void
1982 set_name(const char* newname)
1983 {
1984 gold_assert((this->flags_ & elfcpp::SHF_ALLOC) == 0);
1985 gold_assert(!this->is_data_size_valid());
1986 this->name_ = newname;
1987 }
1988
730cdc88
ILT
1989 // Return whether the offset OFFSET in the input section SHNDX in
1990 // object OBJECT is being included in the link.
1991 bool
1992 is_input_address_mapped(const Relobj* object, unsigned int shndx,
1993 off_t offset) const;
1994
1995 // Return the offset within the output section of OFFSET relative to
1996 // the start of input section SHNDX in object OBJECT.
8383303e
ILT
1997 section_offset_type
1998 output_offset(const Relobj* object, unsigned int shndx,
1999 section_offset_type offset) const;
730cdc88 2000
b8e6aad9
ILT
2001 // Return the output virtual address of OFFSET relative to the start
2002 // of input section SHNDX in object OBJECT.
2003 uint64_t
2004 output_address(const Relobj* object, unsigned int shndx,
2005 off_t offset) const;
2006
a9a60db6
ILT
2007 // Return the output address of the start of the merged section for
2008 // input section SHNDX in object OBJECT. This is not necessarily
2009 // the offset corresponding to input offset 0 in the section, since
2010 // the section may be mapped arbitrarily.
2011 uint64_t
2012 starting_output_address(const Relobj* object, unsigned int shndx) const;
2013
a445fddf
ILT
2014 // Record that this output section was found in the SECTIONS clause
2015 // of a linker script.
2016 void
2017 set_found_in_sections_clause()
2018 { this->found_in_sections_clause_ = true; }
2019
2020 // Return whether this output section was found in the SECTIONS
2021 // clause of a linker script.
2022 bool
2023 found_in_sections_clause() const
2024 { return this->found_in_sections_clause_; }
2025
27bc2bce
ILT
2026 // Write the section header into *OPHDR.
2027 template<int size, bool big_endian>
2028 void
2029 write_header(const Layout*, const Stringpool*,
2030 elfcpp::Shdr_write<size, big_endian>*) const;
2031
a445fddf
ILT
2032 // The next few calls are for linker script support.
2033
2034 // Store the list of input sections for this Output_section into the
2035 // list passed in. This removes the input sections, leaving only
2036 // any Output_section_data elements. This returns the size of those
2037 // Output_section_data elements. ADDRESS is the address of this
2038 // output section. FILL is the fill value to use, in case there are
2039 // any spaces between the remaining Output_section_data elements.
2040 uint64_t
2041 get_input_sections(uint64_t address, const std::string& fill,
2042 std::list<std::pair<Relobj*, unsigned int > >*);
2043
2044 // Add an input section from a script.
2045 void
2046 add_input_section_for_script(Relobj* object, unsigned int shndx,
2047 off_t data_size, uint64_t addralign);
2048
2049 // Set the current size of the output section.
2050 void
2051 set_current_data_size(off_t size)
2052 { this->set_current_data_size_for_child(size); }
2053
2054 // Get the current size of the output section.
2055 off_t
2056 current_data_size() const
2057 { return this->current_data_size_for_child(); }
2058
2059 // End of linker script support.
2060
38c5e8b4
ILT
2061 // Print merge statistics to stderr.
2062 void
2063 print_merge_stats();
2064
27bc2bce 2065 protected:
77e65537
ILT
2066 // Return the output section--i.e., the object itself.
2067 Output_section*
2068 do_output_section()
2069 { return this; }
2070
27bc2bce
ILT
2071 // Return the section index in the output file.
2072 unsigned int
2073 do_out_shndx() const
2074 {
2075 gold_assert(this->out_shndx_ != -1U);
2076 return this->out_shndx_;
2077 }
2078
2079 // Set the output section index.
2080 void
2081 do_set_out_shndx(unsigned int shndx)
2082 {
a445fddf 2083 gold_assert(this->out_shndx_ == -1U || this->out_shndx_ == shndx);
27bc2bce
ILT
2084 this->out_shndx_ = shndx;
2085 }
2086
2087 // Set the final data size of the Output_section. For a typical
ead1e424 2088 // Output_section, there is nothing to do, but if there are any
27bc2bce 2089 // Output_section_data objects we need to set their final addresses
ead1e424 2090 // here.
96803768 2091 virtual void
27bc2bce 2092 set_final_data_size();
ead1e424 2093
a445fddf
ILT
2094 // Reset the address and file offset.
2095 void
2096 do_reset_address_and_file_offset();
2097
54dc6425 2098 // Write the data to the file. For a typical Output_section, this
ead1e424
ILT
2099 // does nothing: the data is written out by calling Object::Relocate
2100 // on each input object. But if there are any Output_section_data
2101 // objects we do need to write them out here.
96803768 2102 virtual void
ead1e424 2103 do_write(Output_file*);
54dc6425 2104
75f65a3e
ILT
2105 // Return the address alignment--function required by parent class.
2106 uint64_t
2107 do_addralign() const
2108 { return this->addralign_; }
2109
a445fddf
ILT
2110 // Return whether there is a load address.
2111 bool
2112 do_has_load_address() const
2113 { return this->has_load_address_; }
2114
2115 // Return the load address.
2116 uint64_t
2117 do_load_address() const
2118 {
2119 gold_assert(this->has_load_address_);
2120 return this->load_address_;
2121 }
2122
75f65a3e
ILT
2123 // Return whether this is an Output_section.
2124 bool
2125 do_is_section() const
2126 { return true; }
2127
54dc6425
ILT
2128 // Return whether this is a section of the specified type.
2129 bool
75f65a3e 2130 do_is_section_type(elfcpp::Elf_Word type) const
54dc6425
ILT
2131 { return this->type_ == type; }
2132
2133 // Return whether the specified section flag is set.
2134 bool
75f65a3e 2135 do_is_section_flag_set(elfcpp::Elf_Xword flag) const
54dc6425
ILT
2136 { return (this->flags_ & flag) != 0; }
2137
7bf1f802
ILT
2138 // Set the TLS offset. Called only for SHT_TLS sections.
2139 void
2140 do_set_tls_offset(uint64_t tls_base);
2141
2142 // Return the TLS offset, relative to the base of the TLS segment.
2143 // Valid only for SHT_TLS sections.
2144 uint64_t
2145 do_tls_offset() const
2146 { return this->tls_offset_; }
2147
96803768
ILT
2148 // This may be implemented by a child class.
2149 virtual void
2150 do_finalize_name(Layout*)
2151 { }
2152
2153 // Record that this section requires postprocessing after all
2154 // relocations have been applied. This is called by a child class.
2155 void
2156 set_requires_postprocessing()
2157 {
2158 this->requires_postprocessing_ = true;
2159 this->after_input_sections_ = true;
2160 }
2161
2162 // Write all the data of an Output_section into the postprocessing
2163 // buffer.
2164 void
2165 write_to_postprocessing_buffer();
2166
a2fb1b05 2167 private:
ead1e424
ILT
2168 // In some cases we need to keep a list of the input sections
2169 // associated with this output section. We only need the list if we
2170 // might have to change the offsets of the input section within the
2171 // output section after we add the input section. The ordinary
2172 // input sections will be written out when we process the object
2173 // file, and as such we don't need to track them here. We do need
2174 // to track Output_section_data objects here. We store instances of
2175 // this structure in a std::vector, so it must be a POD. There can
2176 // be many instances of this structure, so we use a union to save
2177 // some space.
2178 class Input_section
2179 {
2180 public:
2181 Input_section()
b8e6aad9
ILT
2182 : shndx_(0), p2align_(0)
2183 {
2184 this->u1_.data_size = 0;
2185 this->u2_.object = NULL;
2186 }
ead1e424 2187
b8e6aad9 2188 // For an ordinary input section.
f6ce93d6 2189 Input_section(Relobj* object, unsigned int shndx, off_t data_size,
ead1e424
ILT
2190 uint64_t addralign)
2191 : shndx_(shndx),
b8e6aad9 2192 p2align_(ffsll(static_cast<long long>(addralign)))
ead1e424 2193 {
b8e6aad9
ILT
2194 gold_assert(shndx != OUTPUT_SECTION_CODE
2195 && shndx != MERGE_DATA_SECTION_CODE
2196 && shndx != MERGE_STRING_SECTION_CODE);
2197 this->u1_.data_size = data_size;
2198 this->u2_.object = object;
ead1e424
ILT
2199 }
2200
b8e6aad9 2201 // For a non-merge output section.
ead1e424 2202 Input_section(Output_section_data* posd)
b8e6aad9
ILT
2203 : shndx_(OUTPUT_SECTION_CODE),
2204 p2align_(ffsll(static_cast<long long>(posd->addralign())))
2205 {
2206 this->u1_.data_size = 0;
2207 this->u2_.posd = posd;
2208 }
2209
2210 // For a merge section.
2211 Input_section(Output_section_data* posd, bool is_string, uint64_t entsize)
2212 : shndx_(is_string
2213 ? MERGE_STRING_SECTION_CODE
2214 : MERGE_DATA_SECTION_CODE),
2215 p2align_(ffsll(static_cast<long long>(posd->addralign())))
2216 {
2217 this->u1_.entsize = entsize;
2218 this->u2_.posd = posd;
2219 }
ead1e424
ILT
2220
2221 // The required alignment.
2222 uint64_t
2223 addralign() const
a3ad94ed
ILT
2224 {
2225 return (this->p2align_ == 0
2226 ? 0
2227 : static_cast<uint64_t>(1) << (this->p2align_ - 1));
2228 }
ead1e424
ILT
2229
2230 // Return the required size.
2231 off_t
2232 data_size() const;
2233
a445fddf
ILT
2234 // Whether this is an input section.
2235 bool
2236 is_input_section() const
2237 {
2238 return (this->shndx_ != OUTPUT_SECTION_CODE
2239 && this->shndx_ != MERGE_DATA_SECTION_CODE
2240 && this->shndx_ != MERGE_STRING_SECTION_CODE);
2241 }
2242
b8e6aad9
ILT
2243 // Return whether this is a merge section which matches the
2244 // parameters.
2245 bool
87f95776
ILT
2246 is_merge_section(bool is_string, uint64_t entsize,
2247 uint64_t addralign) const
b8e6aad9
ILT
2248 {
2249 return (this->shndx_ == (is_string
2250 ? MERGE_STRING_SECTION_CODE
2251 : MERGE_DATA_SECTION_CODE)
87f95776
ILT
2252 && this->u1_.entsize == entsize
2253 && this->addralign() == addralign);
b8e6aad9
ILT
2254 }
2255
a445fddf
ILT
2256 // Return the object for an input section.
2257 Relobj*
2258 relobj() const
2259 {
2260 gold_assert(this->is_input_section());
2261 return this->u2_.object;
2262 }
2263
2264 // Return the input section index for an input section.
2265 unsigned int
2266 shndx() const
2267 {
2268 gold_assert(this->is_input_section());
2269 return this->shndx_;
2270 }
2271
b8e6aad9
ILT
2272 // Set the output section.
2273 void
2274 set_output_section(Output_section* os)
2275 {
2276 gold_assert(!this->is_input_section());
2277 this->u2_.posd->set_output_section(os);
2278 }
2279
ead1e424 2280 // Set the address and file offset. This is called during
96803768
ILT
2281 // Layout::finalize. SECTION_FILE_OFFSET is the file offset of
2282 // the enclosing section.
ead1e424 2283 void
96803768
ILT
2284 set_address_and_file_offset(uint64_t address, off_t file_offset,
2285 off_t section_file_offset);
ead1e424 2286
a445fddf
ILT
2287 // Reset the address and file offset.
2288 void
2289 reset_address_and_file_offset();
2290
96803768
ILT
2291 // Finalize the data size.
2292 void
2293 finalize_data_size();
9a0910c3 2294
b8e6aad9
ILT
2295 // Add an input section, for SHF_MERGE sections.
2296 bool
2297 add_input_section(Relobj* object, unsigned int shndx)
2298 {
2299 gold_assert(this->shndx_ == MERGE_DATA_SECTION_CODE
2300 || this->shndx_ == MERGE_STRING_SECTION_CODE);
2301 return this->u2_.posd->add_input_section(object, shndx);
2302 }
2303
2304 // Given an input OBJECT, an input section index SHNDX within that
2305 // object, and an OFFSET relative to the start of that input
730cdc88 2306 // section, return whether or not the output offset is known. If
1e983657
ILT
2307 // this function returns true, it sets *POUTPUT to the offset in
2308 // the output section, relative to the start of the input section
2309 // in the output section. *POUTPUT may be different from OFFSET
2310 // for a merged section.
b8e6aad9 2311 bool
8383303e
ILT
2312 output_offset(const Relobj* object, unsigned int shndx,
2313 section_offset_type offset,
2314 section_offset_type *poutput) const;
b8e6aad9 2315
a9a60db6
ILT
2316 // Return whether this is the merge section for the input section
2317 // SHNDX in OBJECT.
2318 bool
2319 is_merge_section_for(const Relobj* object, unsigned int shndx) const;
2320
ead1e424
ILT
2321 // Write out the data. This does nothing for an input section.
2322 void
2323 write(Output_file*);
2324
96803768
ILT
2325 // Write the data to a buffer. This does nothing for an input
2326 // section.
2327 void
2328 write_to_buffer(unsigned char*);
2329
38c5e8b4
ILT
2330 // Print statistics about merge sections to stderr.
2331 void
2332 print_merge_stats(const char* section_name)
2333 {
2334 if (this->shndx_ == MERGE_DATA_SECTION_CODE
2335 || this->shndx_ == MERGE_STRING_SECTION_CODE)
2336 this->u2_.posd->print_merge_stats(section_name);
2337 }
2338
ead1e424 2339 private:
b8e6aad9
ILT
2340 // Code values which appear in shndx_. If the value is not one of
2341 // these codes, it is the input section index in the object file.
2342 enum
2343 {
2344 // An Output_section_data.
2345 OUTPUT_SECTION_CODE = -1U,
2346 // An Output_section_data for an SHF_MERGE section with
2347 // SHF_STRINGS not set.
2348 MERGE_DATA_SECTION_CODE = -2U,
2349 // An Output_section_data for an SHF_MERGE section with
2350 // SHF_STRINGS set.
2351 MERGE_STRING_SECTION_CODE = -3U
2352 };
2353
b8e6aad9
ILT
2354 // For an ordinary input section, this is the section index in the
2355 // input file. For an Output_section_data, this is
2356 // OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
2357 // MERGE_STRING_SECTION_CODE.
ead1e424
ILT
2358 unsigned int shndx_;
2359 // The required alignment, stored as a power of 2.
2360 unsigned int p2align_;
ead1e424
ILT
2361 union
2362 {
b8e6aad9
ILT
2363 // For an ordinary input section, the section size.
2364 off_t data_size;
2365 // For OUTPUT_SECTION_CODE, this is not used. For
2366 // MERGE_DATA_SECTION_CODE or MERGE_STRING_SECTION_CODE, the
2367 // entity size.
2368 uint64_t entsize;
2369 } u1_;
2370 union
2371 {
2372 // For an ordinary input section, the object which holds the
ead1e424 2373 // input section.
f6ce93d6 2374 Relobj* object;
b8e6aad9
ILT
2375 // For OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
2376 // MERGE_STRING_SECTION_CODE, the data.
ead1e424 2377 Output_section_data* posd;
b8e6aad9 2378 } u2_;
ead1e424
ILT
2379 };
2380
2381 typedef std::vector<Input_section> Input_section_list;
2382
2fd32231
ILT
2383 // This class is used to sort the input sections.
2384 class Input_section_sort_entry;
2385
2386 // This is the sort comparison function.
2387 struct Input_section_sort_compare
2388 {
2389 bool
2390 operator()(const Input_section_sort_entry&,
2391 const Input_section_sort_entry&) const;
2392 };
2393
c51e6221 2394 // Fill data. This is used to fill in data between input sections.
a445fddf
ILT
2395 // It is also used for data statements (BYTE, WORD, etc.) in linker
2396 // scripts. When we have to keep track of the input sections, we
2397 // can use an Output_data_const, but we don't want to have to keep
2398 // track of input sections just to implement fills.
c51e6221
ILT
2399 class Fill
2400 {
2401 public:
2402 Fill(off_t section_offset, off_t length)
a445fddf
ILT
2403 : section_offset_(section_offset),
2404 length_(convert_to_section_size_type(length))
c51e6221
ILT
2405 { }
2406
2407 // Return section offset.
2408 off_t
2409 section_offset() const
2410 { return this->section_offset_; }
2411
2412 // Return fill length.
a445fddf 2413 section_size_type
c51e6221
ILT
2414 length() const
2415 { return this->length_; }
2416
2417 private:
2418 // The offset within the output section.
2419 off_t section_offset_;
2420 // The length of the space to fill.
a445fddf 2421 section_size_type length_;
c51e6221
ILT
2422 };
2423
2424 typedef std::vector<Fill> Fill_list;
2425
b8e6aad9
ILT
2426 // Add a new output section by Input_section.
2427 void
2428 add_output_section_data(Input_section*);
2429
2430 // Add an SHF_MERGE input section. Returns true if the section was
2431 // handled.
2432 bool
2433 add_merge_input_section(Relobj* object, unsigned int shndx, uint64_t flags,
96803768 2434 uint64_t entsize, uint64_t addralign);
b8e6aad9
ILT
2435
2436 // Add an output SHF_MERGE section POSD to this output section.
2437 // IS_STRING indicates whether it is a SHF_STRINGS section, and
2438 // ENTSIZE is the entity size. This returns the entry added to
2439 // input_sections_.
2440 void
2441 add_output_merge_section(Output_section_data* posd, bool is_string,
2442 uint64_t entsize);
2443
2fd32231
ILT
2444 // Sort the attached input sections.
2445 void
2446 sort_attached_input_sections();
2447
a2fb1b05
ILT
2448 // Most of these fields are only valid after layout.
2449
2450 // The name of the section. This will point into a Stringpool.
9a0910c3 2451 const char* name_;
75f65a3e 2452 // The section address is in the parent class.
a2fb1b05
ILT
2453 // The section alignment.
2454 uint64_t addralign_;
2455 // The section entry size.
2456 uint64_t entsize_;
a445fddf
ILT
2457 // The load address. This is only used when using a linker script
2458 // with a SECTIONS clause. The has_load_address_ field indicates
2459 // whether this field is valid.
2460 uint64_t load_address_;
75f65a3e 2461 // The file offset is in the parent class.
16649710 2462 // Set the section link field to the index of this section.
14b31740 2463 const Output_data* link_section_;
16649710 2464 // If link_section_ is NULL, this is the link field.
a2fb1b05 2465 unsigned int link_;
16649710 2466 // Set the section info field to the index of this section.
755ab8af 2467 const Output_section* info_section_;
6a74a719
ILT
2468 // If info_section_ is NULL, set the info field to the symbol table
2469 // index of this symbol.
2470 const Symbol* info_symndx_;
2471 // If info_section_ and info_symndx_ are NULL, this is the section
2472 // info field.
a2fb1b05
ILT
2473 unsigned int info_;
2474 // The section type.
27bc2bce 2475 const elfcpp::Elf_Word type_;
a2fb1b05 2476 // The section flags.
a445fddf 2477 elfcpp::Elf_Xword flags_;
61ba1cf9 2478 // The section index.
ead1e424 2479 unsigned int out_shndx_;
c06b7b0b
ILT
2480 // If there is a STT_SECTION for this output section in the normal
2481 // symbol table, this is the symbol index. This starts out as zero.
2482 // It is initialized in Layout::finalize() to be the index, or -1U
2483 // if there isn't one.
2484 unsigned int symtab_index_;
2485 // If there is a STT_SECTION for this output section in the dynamic
2486 // symbol table, this is the symbol index. This starts out as zero.
2487 // It is initialized in Layout::finalize() to be the index, or -1U
2488 // if there isn't one.
2489 unsigned int dynsym_index_;
ead1e424
ILT
2490 // The input sections. This will be empty in cases where we don't
2491 // need to keep track of them.
2492 Input_section_list input_sections_;
2493 // The offset of the first entry in input_sections_.
2494 off_t first_input_offset_;
c51e6221
ILT
2495 // The fill data. This is separate from input_sections_ because we
2496 // often will need fill sections without needing to keep track of
2497 // input sections.
2498 Fill_list fills_;
96803768
ILT
2499 // If the section requires postprocessing, this buffer holds the
2500 // section contents during relocation.
2501 unsigned char* postprocessing_buffer_;
c06b7b0b
ILT
2502 // Whether this output section needs a STT_SECTION symbol in the
2503 // normal symbol table. This will be true if there is a relocation
2504 // which needs it.
2505 bool needs_symtab_index_ : 1;
2506 // Whether this output section needs a STT_SECTION symbol in the
2507 // dynamic symbol table. This will be true if there is a dynamic
2508 // relocation which needs it.
2509 bool needs_dynsym_index_ : 1;
16649710
ILT
2510 // Whether the link field of this output section should point to the
2511 // normal symbol table.
2512 bool should_link_to_symtab_ : 1;
2513 // Whether the link field of this output section should point to the
2514 // dynamic symbol table.
2515 bool should_link_to_dynsym_ : 1;
730cdc88
ILT
2516 // Whether this section should be written after all the input
2517 // sections are complete.
2518 bool after_input_sections_ : 1;
27bc2bce
ILT
2519 // Whether this section requires post processing after all
2520 // relocations have been applied.
2521 bool requires_postprocessing_ : 1;
a445fddf
ILT
2522 // Whether an input section was mapped to this output section
2523 // because of a SECTIONS clause in a linker script.
2524 bool found_in_sections_clause_ : 1;
2525 // Whether this section has an explicitly specified load address.
2526 bool has_load_address_ : 1;
755ab8af
ILT
2527 // True if the info_section_ field means the section index of the
2528 // section, false if it means the symbol index of the corresponding
2529 // section symbol.
2530 bool info_uses_section_index_ : 1;
2fd32231
ILT
2531 // True if the input sections attached to this output section may
2532 // need sorting.
2533 bool may_sort_attached_input_sections_ : 1;
2534 // True if the input sections attached to this output section must
2535 // be sorted.
2536 bool must_sort_attached_input_sections_ : 1;
2537 // True if the input sections attached to this output section have
2538 // already been sorted.
2539 bool attached_input_sections_are_sorted_ : 1;
7bf1f802
ILT
2540 // For SHT_TLS sections, the offset of this section relative to the base
2541 // of the TLS segment.
2542 uint64_t tls_offset_;
a2fb1b05
ILT
2543};
2544
2545// An output segment. PT_LOAD segments are built from collections of
2546// output sections. Other segments typically point within PT_LOAD
2547// segments, and are built directly as needed.
2548
2549class Output_segment
2550{
2551 public:
2552 // Create an output segment, specifying the type and flags.
2553 Output_segment(elfcpp::Elf_Word, elfcpp::Elf_Word);
2554
2555 // Return the virtual address.
2556 uint64_t
2557 vaddr() const
2558 { return this->vaddr_; }
2559
2560 // Return the physical address.
2561 uint64_t
2562 paddr() const
2563 { return this->paddr_; }
2564
2565 // Return the segment type.
2566 elfcpp::Elf_Word
2567 type() const
2568 { return this->type_; }
2569
2570 // Return the segment flags.
2571 elfcpp::Elf_Word
2572 flags() const
2573 { return this->flags_; }
2574
92e059d8
ILT
2575 // Return the memory size.
2576 uint64_t
2577 memsz() const
2578 { return this->memsz_; }
2579
ead1e424
ILT
2580 // Return the file size.
2581 off_t
2582 filesz() const
2583 { return this->filesz_; }
2584
516cb3d0
ILT
2585 // Return the file offset.
2586 off_t
2587 offset() const
2588 { return this->offset_; }
2589
75f65a3e
ILT
2590 // Return the maximum alignment of the Output_data.
2591 uint64_t
a445fddf 2592 maximum_alignment();
75f65a3e 2593
a2fb1b05
ILT
2594 // Add an Output_section to this segment.
2595 void
dbe717ef
ILT
2596 add_output_section(Output_section* os, elfcpp::Elf_Word seg_flags)
2597 { this->add_output_section(os, seg_flags, false); }
2598
2599 // Add an Output_section to the start of this segment.
2600 void
2601 add_initial_output_section(Output_section* os, elfcpp::Elf_Word seg_flags)
2602 { this->add_output_section(os, seg_flags, true); }
75f65a3e 2603
1650c4ff
ILT
2604 // Remove an Output_section from this segment. It is an error if it
2605 // is not present.
2606 void
2607 remove_output_section(Output_section* os);
2608
75f65a3e
ILT
2609 // Add an Output_data (which is not an Output_section) to the start
2610 // of this segment.
2611 void
2612 add_initial_output_data(Output_data*);
2613
756ac4a8
ILT
2614 // Return true if this segment has any sections which hold actual
2615 // data, rather than being a BSS section.
2616 bool
2617 has_any_data_sections() const
2618 { return !this->output_data_.empty(); }
2619
4f4c5f80
ILT
2620 // Return the number of dynamic relocations applied to this segment.
2621 unsigned int
2622 dynamic_reloc_count() const;
2623
a445fddf
ILT
2624 // Return the address of the first section.
2625 uint64_t
2626 first_section_load_address() const;
2627
2628 // Return whether the addresses have been set already.
2629 bool
2630 are_addresses_set() const
2631 { return this->are_addresses_set_; }
2632
2633 // Set the addresses.
2634 void
2635 set_addresses(uint64_t vaddr, uint64_t paddr)
2636 {
2637 this->vaddr_ = vaddr;
2638 this->paddr_ = paddr;
2639 this->are_addresses_set_ = true;
2640 }
2641
1c4f3631
ILT
2642 // Set the segment flags. This is only used if we have a PHDRS
2643 // clause which explicitly specifies the flags.
2644 void
2645 set_flags(elfcpp::Elf_Word flags)
2646 { this->flags_ = flags; }
2647
75f65a3e 2648 // Set the address of the segment to ADDR and the offset to *POFF
a445fddf
ILT
2649 // and set the addresses and offsets of all contained output
2650 // sections accordingly. Set the section indexes of all contained
2651 // output sections starting with *PSHNDX. If RESET is true, first
2652 // reset the addresses of the contained sections. Return the
2653 // address of the immediately following segment. Update *POFF and
2654 // *PSHNDX. This should only be called for a PT_LOAD segment.
75f65a3e 2655 uint64_t
96a2b4e4 2656 set_section_addresses(const Layout*, bool reset, uint64_t addr, off_t* poff,
a445fddf 2657 unsigned int* pshndx);
75f65a3e 2658
0496d5e5
ILT
2659 // Set the minimum alignment of this segment. This may be adjusted
2660 // upward based on the section alignments.
2661 void
a445fddf
ILT
2662 set_minimum_p_align(uint64_t align)
2663 { this->min_p_align_ = align; }
0496d5e5 2664
75f65a3e
ILT
2665 // Set the offset of this segment based on the section. This should
2666 // only be called for a non-PT_LOAD segment.
2667 void
2668 set_offset();
2669
7bf1f802
ILT
2670 // Set the TLS offsets of the sections contained in the PT_TLS segment.
2671 void
2672 set_tls_offsets();
2673
75f65a3e
ILT
2674 // Return the number of output sections.
2675 unsigned int
2676 output_section_count() const;
a2fb1b05 2677
1c4f3631
ILT
2678 // Return the section attached to the list segment with the lowest
2679 // load address. This is used when handling a PHDRS clause in a
2680 // linker script.
2681 Output_section*
2682 section_with_lowest_load_address() const;
2683
61ba1cf9
ILT
2684 // Write the segment header into *OPHDR.
2685 template<int size, bool big_endian>
2686 void
ead1e424 2687 write_header(elfcpp::Phdr_write<size, big_endian>*);
61ba1cf9
ILT
2688
2689 // Write the section headers of associated sections into V.
2690 template<int size, bool big_endian>
2691 unsigned char*
16649710 2692 write_section_headers(const Layout*, const Stringpool*, unsigned char* v,
7d1a9ebb 2693 unsigned int* pshndx) const;
61ba1cf9 2694
a2fb1b05
ILT
2695 private:
2696 Output_segment(const Output_segment&);
2697 Output_segment& operator=(const Output_segment&);
2698
54dc6425 2699 typedef std::list<Output_data*> Output_data_list;
a2fb1b05 2700
dbe717ef
ILT
2701 // Add an Output_section to this segment, specifying front or back.
2702 void
2703 add_output_section(Output_section*, elfcpp::Elf_Word seg_flags,
2704 bool front);
2705
ead1e424
ILT
2706 // Find the maximum alignment in an Output_data_list.
2707 static uint64_t
a445fddf 2708 maximum_alignment_list(const Output_data_list*);
ead1e424 2709
75f65a3e
ILT
2710 // Set the section addresses in an Output_data_list.
2711 uint64_t
96a2b4e4
ILT
2712 set_section_list_addresses(const Layout*, bool reset, Output_data_list*,
2713 uint64_t addr, off_t* poff, unsigned int* pshndx,
2714 bool* in_tls);
75f65a3e
ILT
2715
2716 // Return the number of Output_sections in an Output_data_list.
2717 unsigned int
2718 output_section_count_list(const Output_data_list*) const;
2719
4f4c5f80
ILT
2720 // Return the number of dynamic relocs in an Output_data_list.
2721 unsigned int
2722 dynamic_reloc_count_list(const Output_data_list*) const;
2723
1c4f3631
ILT
2724 // Find the section with the lowest load address in an
2725 // Output_data_list.
2726 void
2727 lowest_load_address_in_list(const Output_data_list* pdl,
2728 Output_section** found,
2729 uint64_t* found_lma) const;
2730
61ba1cf9
ILT
2731 // Write the section headers in the list into V.
2732 template<int size, bool big_endian>
2733 unsigned char*
16649710
ILT
2734 write_section_headers_list(const Layout*, const Stringpool*,
2735 const Output_data_list*, unsigned char* v,
7d1a9ebb 2736 unsigned int* pshdx) const;
61ba1cf9 2737
75f65a3e 2738 // The list of output data with contents attached to this segment.
54dc6425 2739 Output_data_list output_data_;
75f65a3e
ILT
2740 // The list of output data without contents attached to this segment.
2741 Output_data_list output_bss_;
a2fb1b05
ILT
2742 // The segment virtual address.
2743 uint64_t vaddr_;
2744 // The segment physical address.
2745 uint64_t paddr_;
2746 // The size of the segment in memory.
2747 uint64_t memsz_;
a445fddf
ILT
2748 // The maximum section alignment. The is_max_align_known_ field
2749 // indicates whether this has been finalized.
2750 uint64_t max_align_;
2751 // The required minimum value for the p_align field. This is used
2752 // for PT_LOAD segments. Note that this does not mean that
2753 // addresses should be aligned to this value; it means the p_paddr
2754 // and p_vaddr fields must be congruent modulo this value. For
2755 // non-PT_LOAD segments, the dynamic linker works more efficiently
2756 // if the p_align field has the more conventional value, although it
2757 // can align as needed.
2758 uint64_t min_p_align_;
a2fb1b05
ILT
2759 // The offset of the segment data within the file.
2760 off_t offset_;
2761 // The size of the segment data in the file.
2762 off_t filesz_;
2763 // The segment type;
2764 elfcpp::Elf_Word type_;
2765 // The segment flags.
2766 elfcpp::Elf_Word flags_;
a445fddf
ILT
2767 // Whether we have finalized max_align_.
2768 bool is_max_align_known_ : 1;
2769 // Whether vaddr and paddr were set by a linker script.
2770 bool are_addresses_set_ : 1;
a2fb1b05
ILT
2771};
2772
61ba1cf9 2773// This class represents the output file.
a2fb1b05
ILT
2774
2775class Output_file
2776{
2777 public:
14144f39 2778 Output_file(const char* name);
61ba1cf9 2779
516cb3d0
ILT
2780 // Indicate that this is a temporary file which should not be
2781 // output.
2782 void
2783 set_is_temporary()
2784 { this->is_temporary_ = true; }
2785
61ba1cf9
ILT
2786 // Open the output file. FILE_SIZE is the final size of the file.
2787 void
2788 open(off_t file_size);
2789
27bc2bce
ILT
2790 // Resize the output file.
2791 void
2792 resize(off_t file_size);
2793
c420411f
ILT
2794 // Close the output file (flushing all buffered data) and make sure
2795 // there are no errors.
61ba1cf9
ILT
2796 void
2797 close();
2798
2799 // We currently always use mmap which makes the view handling quite
2800 // simple. In the future we may support other approaches.
a2fb1b05
ILT
2801
2802 // Write data to the output file.
2803 void
fe8718a4 2804 write(off_t offset, const void* data, size_t len)
61ba1cf9
ILT
2805 { memcpy(this->base_ + offset, data, len); }
2806
2807 // Get a buffer to use to write to the file, given the offset into
2808 // the file and the size.
2809 unsigned char*
fe8718a4 2810 get_output_view(off_t start, size_t size)
61ba1cf9 2811 {
8d32f935
ILT
2812 gold_assert(start >= 0
2813 && start + static_cast<off_t>(size) <= this->file_size_);
61ba1cf9
ILT
2814 return this->base_ + start;
2815 }
2816
2817 // VIEW must have been returned by get_output_view. Write the
2818 // buffer to the file, passing in the offset and the size.
2819 void
fe8718a4 2820 write_output_view(off_t, size_t, unsigned char*)
61ba1cf9
ILT
2821 { }
2822
730cdc88
ILT
2823 // Get a read/write buffer. This is used when we want to write part
2824 // of the file, read it in, and write it again.
2825 unsigned char*
fe8718a4 2826 get_input_output_view(off_t start, size_t size)
730cdc88
ILT
2827 { return this->get_output_view(start, size); }
2828
2829 // Write a read/write buffer back to the file.
2830 void
fe8718a4 2831 write_input_output_view(off_t, size_t, unsigned char*)
730cdc88
ILT
2832 { }
2833
2834 // Get a read buffer. This is used when we just want to read part
2835 // of the file back it in.
2836 const unsigned char*
fe8718a4 2837 get_input_view(off_t start, size_t size)
730cdc88
ILT
2838 { return this->get_output_view(start, size); }
2839
2840 // Release a read bfufer.
2841 void
fe8718a4 2842 free_input_view(off_t, size_t, const unsigned char*)
730cdc88
ILT
2843 { }
2844
61ba1cf9 2845 private:
c420411f 2846 // Map the file into memory and return a pointer to the map.
27bc2bce
ILT
2847 void
2848 map();
2849
c420411f
ILT
2850 // Unmap the file from memory (and flush to disk buffers).
2851 void
2852 unmap();
2853
61ba1cf9
ILT
2854 // File name.
2855 const char* name_;
2856 // File descriptor.
2857 int o_;
2858 // File size.
2859 off_t file_size_;
2860 // Base of file mapped into memory.
2861 unsigned char* base_;
c420411f
ILT
2862 // True iff base_ points to a memory buffer rather than an output file.
2863 bool map_is_anonymous_;
516cb3d0
ILT
2864 // True if this is a temporary file which should not be output.
2865 bool is_temporary_;
a2fb1b05
ILT
2866};
2867
2868} // End namespace gold.
2869
2870#endif // !defined(GOLD_OUTPUT_H)
This page took 0.576484 seconds and 4 git commands to generate.