Update copyright years
[deliverable/binutils-gdb.git] / gold / object.h
1 // object.h -- support for an object file for linking in gold -*- C++ -*-
2
3 // Copyright (C) 2006-2014 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
5
6 // This file is part of gold.
7
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
12
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
17
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
22
23 #ifndef GOLD_OBJECT_H
24 #define GOLD_OBJECT_H
25
26 #include <string>
27 #include <vector>
28
29 #include "elfcpp.h"
30 #include "elfcpp_file.h"
31 #include "fileread.h"
32 #include "target.h"
33 #include "archive.h"
34
35 namespace gold
36 {
37
38 class General_options;
39 class Task;
40 class Cref;
41 class Layout;
42 class Output_data;
43 class Output_section;
44 class Output_file;
45 class Output_symtab_xindex;
46 class Pluginobj;
47 class Dynobj;
48 class Object_merge_map;
49 class Relocatable_relocs;
50 struct Symbols_data;
51
52 template<typename Stringpool_char>
53 class Stringpool_template;
54
55 // Data to pass from read_symbols() to add_symbols().
56
57 struct Read_symbols_data
58 {
59 Read_symbols_data()
60 : section_headers(NULL), section_names(NULL), symbols(NULL),
61 symbol_names(NULL), versym(NULL), verdef(NULL), verneed(NULL)
62 { }
63
64 ~Read_symbols_data();
65
66 // Section headers.
67 File_view* section_headers;
68 // Section names.
69 File_view* section_names;
70 // Size of section name data in bytes.
71 section_size_type section_names_size;
72 // Symbol data.
73 File_view* symbols;
74 // Size of symbol data in bytes.
75 section_size_type symbols_size;
76 // Offset of external symbols within symbol data. This structure
77 // sometimes contains only external symbols, in which case this will
78 // be zero. Sometimes it contains all symbols.
79 section_offset_type external_symbols_offset;
80 // Symbol names.
81 File_view* symbol_names;
82 // Size of symbol name data in bytes.
83 section_size_type symbol_names_size;
84
85 // Version information. This is only used on dynamic objects.
86 // Version symbol data (from SHT_GNU_versym section).
87 File_view* versym;
88 section_size_type versym_size;
89 // Version definition data (from SHT_GNU_verdef section).
90 File_view* verdef;
91 section_size_type verdef_size;
92 unsigned int verdef_info;
93 // Needed version data (from SHT_GNU_verneed section).
94 File_view* verneed;
95 section_size_type verneed_size;
96 unsigned int verneed_info;
97 };
98
99 // Information used to print error messages.
100
101 struct Symbol_location_info
102 {
103 std::string source_file;
104 std::string enclosing_symbol_name;
105 elfcpp::STT enclosing_symbol_type;
106 };
107
108 // Data about a single relocation section. This is read in
109 // read_relocs and processed in scan_relocs.
110
111 struct Section_relocs
112 {
113 Section_relocs()
114 : contents(NULL)
115 { }
116
117 ~Section_relocs()
118 { delete this->contents; }
119
120 // Index of reloc section.
121 unsigned int reloc_shndx;
122 // Index of section that relocs apply to.
123 unsigned int data_shndx;
124 // Contents of reloc section.
125 File_view* contents;
126 // Reloc section type.
127 unsigned int sh_type;
128 // Number of reloc entries.
129 size_t reloc_count;
130 // Output section.
131 Output_section* output_section;
132 // Whether this section has special handling for offsets.
133 bool needs_special_offset_handling;
134 // Whether the data section is allocated (has the SHF_ALLOC flag set).
135 bool is_data_section_allocated;
136 };
137
138 // Relocations in an object file. This is read in read_relocs and
139 // processed in scan_relocs.
140
141 struct Read_relocs_data
142 {
143 Read_relocs_data()
144 : local_symbols(NULL)
145 { }
146
147 ~Read_relocs_data()
148 { delete this->local_symbols; }
149
150 typedef std::vector<Section_relocs> Relocs_list;
151 // The relocations.
152 Relocs_list relocs;
153 // The local symbols.
154 File_view* local_symbols;
155 };
156
157 // The Xindex class manages section indexes for objects with more than
158 // 0xff00 sections.
159
160 class Xindex
161 {
162 public:
163 Xindex(int large_shndx_offset)
164 : large_shndx_offset_(large_shndx_offset), symtab_xindex_()
165 { }
166
167 // Initialize the symtab_xindex_ array, given the object and the
168 // section index of the symbol table to use.
169 template<int size, bool big_endian>
170 void
171 initialize_symtab_xindex(Object*, unsigned int symtab_shndx);
172
173 // Read in the symtab_xindex_ array, given its section index.
174 // PSHDRS may optionally point to the section headers.
175 template<int size, bool big_endian>
176 void
177 read_symtab_xindex(Object*, unsigned int xindex_shndx,
178 const unsigned char* pshdrs);
179
180 // Symbol SYMNDX in OBJECT has a section of SHN_XINDEX; return the
181 // real section index.
182 unsigned int
183 sym_xindex_to_shndx(Object* object, unsigned int symndx);
184
185 private:
186 // The type of the array giving the real section index for symbols
187 // whose st_shndx field holds SHN_XINDEX.
188 typedef std::vector<unsigned int> Symtab_xindex;
189
190 // Adjust a section index if necessary. This should only be called
191 // for ordinary section indexes.
192 unsigned int
193 adjust_shndx(unsigned int shndx)
194 {
195 if (shndx >= elfcpp::SHN_LORESERVE)
196 shndx += this->large_shndx_offset_;
197 return shndx;
198 }
199
200 // Adjust to apply to large section indexes.
201 int large_shndx_offset_;
202 // The data from the SHT_SYMTAB_SHNDX section.
203 Symtab_xindex symtab_xindex_;
204 };
205
206 // A GOT offset list. A symbol may have more than one GOT offset
207 // (e.g., when mixing modules compiled with two different TLS models),
208 // but will usually have at most one. GOT_TYPE identifies the type of
209 // GOT entry; its values are specific to each target.
210
211 class Got_offset_list
212 {
213 public:
214 Got_offset_list()
215 : got_type_(-1U), got_offset_(0), got_next_(NULL)
216 { }
217
218 Got_offset_list(unsigned int got_type, unsigned int got_offset)
219 : got_type_(got_type), got_offset_(got_offset), got_next_(NULL)
220 { }
221
222 ~Got_offset_list()
223 {
224 if (this->got_next_ != NULL)
225 {
226 delete this->got_next_;
227 this->got_next_ = NULL;
228 }
229 }
230
231 // Initialize the fields to their default values.
232 void
233 init()
234 {
235 this->got_type_ = -1U;
236 this->got_offset_ = 0;
237 this->got_next_ = NULL;
238 }
239
240 // Set the offset for the GOT entry of type GOT_TYPE.
241 void
242 set_offset(unsigned int got_type, unsigned int got_offset)
243 {
244 if (this->got_type_ == -1U)
245 {
246 this->got_type_ = got_type;
247 this->got_offset_ = got_offset;
248 }
249 else
250 {
251 for (Got_offset_list* g = this; g != NULL; g = g->got_next_)
252 {
253 if (g->got_type_ == got_type)
254 {
255 g->got_offset_ = got_offset;
256 return;
257 }
258 }
259 Got_offset_list* g = new Got_offset_list(got_type, got_offset);
260 g->got_next_ = this->got_next_;
261 this->got_next_ = g;
262 }
263 }
264
265 // Return the offset for a GOT entry of type GOT_TYPE.
266 unsigned int
267 get_offset(unsigned int got_type) const
268 {
269 for (const Got_offset_list* g = this; g != NULL; g = g->got_next_)
270 {
271 if (g->got_type_ == got_type)
272 return g->got_offset_;
273 }
274 return -1U;
275 }
276
277 // Return a pointer to the list, or NULL if the list is empty.
278 const Got_offset_list*
279 get_list() const
280 {
281 if (this->got_type_ == -1U)
282 return NULL;
283 return this;
284 }
285
286 // Abstract visitor class for iterating over GOT offsets.
287 class Visitor
288 {
289 public:
290 Visitor()
291 { }
292
293 virtual
294 ~Visitor()
295 { }
296
297 virtual void
298 visit(unsigned int, unsigned int) = 0;
299 };
300
301 // Loop over all GOT offset entries, calling a visitor class V for each.
302 void
303 for_all_got_offsets(Visitor* v) const
304 {
305 if (this->got_type_ == -1U)
306 return;
307 for (const Got_offset_list* g = this; g != NULL; g = g->got_next_)
308 v->visit(g->got_type_, g->got_offset_);
309 }
310
311 private:
312 unsigned int got_type_;
313 unsigned int got_offset_;
314 Got_offset_list* got_next_;
315 };
316
317 // Object is an abstract base class which represents either a 32-bit
318 // or a 64-bit input object. This can be a regular object file
319 // (ET_REL) or a shared object (ET_DYN).
320
321 class Object
322 {
323 public:
324 typedef std::vector<Symbol*> Symbols;
325
326 // NAME is the name of the object as we would report it to the user
327 // (e.g., libfoo.a(bar.o) if this is in an archive. INPUT_FILE is
328 // used to read the file. OFFSET is the offset within the input
329 // file--0 for a .o or .so file, something else for a .a file.
330 Object(const std::string& name, Input_file* input_file, bool is_dynamic,
331 off_t offset = 0)
332 : name_(name), input_file_(input_file), offset_(offset), shnum_(-1U),
333 is_dynamic_(is_dynamic), is_needed_(false), uses_split_stack_(false),
334 has_no_split_stack_(false), no_export_(false),
335 is_in_system_directory_(false), as_needed_(false), xindex_(NULL)
336 {
337 if (input_file != NULL)
338 {
339 input_file->file().add_object();
340 this->is_in_system_directory_ = input_file->is_in_system_directory();
341 this->as_needed_ = input_file->options().as_needed();
342 }
343 }
344
345 virtual ~Object()
346 {
347 if (this->input_file_ != NULL)
348 this->input_file_->file().remove_object();
349 }
350
351 // Return the name of the object as we would report it to the user.
352 const std::string&
353 name() const
354 { return this->name_; }
355
356 // Get the offset into the file.
357 off_t
358 offset() const
359 { return this->offset_; }
360
361 // Return whether this is a dynamic object.
362 bool
363 is_dynamic() const
364 { return this->is_dynamic_; }
365
366 // Return whether this object is needed--true if it is a dynamic
367 // object which defines some symbol referenced by a regular object.
368 // We keep the flag here rather than in Dynobj for convenience when
369 // setting it.
370 bool
371 is_needed() const
372 { return this->is_needed_; }
373
374 // Record that this object is needed.
375 void
376 set_is_needed()
377 { this->is_needed_ = true; }
378
379 // Return whether this object was compiled with -fsplit-stack.
380 bool
381 uses_split_stack() const
382 { return this->uses_split_stack_; }
383
384 // Return whether this object contains any functions compiled with
385 // the no_split_stack attribute.
386 bool
387 has_no_split_stack() const
388 { return this->has_no_split_stack_; }
389
390 // Returns NULL for Objects that are not dynamic objects. This method
391 // is overridden in the Dynobj class.
392 Dynobj*
393 dynobj()
394 { return this->do_dynobj(); }
395
396 // Returns NULL for Objects that are not plugin objects. This method
397 // is overridden in the Pluginobj class.
398 Pluginobj*
399 pluginobj()
400 { return this->do_pluginobj(); }
401
402 // Get the file. We pass on const-ness.
403 Input_file*
404 input_file()
405 {
406 gold_assert(this->input_file_ != NULL);
407 return this->input_file_;
408 }
409
410 const Input_file*
411 input_file() const
412 {
413 gold_assert(this->input_file_ != NULL);
414 return this->input_file_;
415 }
416
417 // Lock the underlying file.
418 void
419 lock(const Task* t)
420 {
421 if (this->input_file_ != NULL)
422 this->input_file_->file().lock(t);
423 }
424
425 // Unlock the underlying file.
426 void
427 unlock(const Task* t)
428 {
429 if (this->input_file_ != NULL)
430 this->input_file()->file().unlock(t);
431 }
432
433 // Return whether the underlying file is locked.
434 bool
435 is_locked() const
436 { return this->input_file_ != NULL && this->input_file_->file().is_locked(); }
437
438 // Return the token, so that the task can be queued.
439 Task_token*
440 token()
441 {
442 if (this->input_file_ == NULL)
443 return NULL;
444 return this->input_file()->file().token();
445 }
446
447 // Release the underlying file.
448 void
449 release()
450 {
451 if (this->input_file_ != NULL)
452 this->input_file()->file().release();
453 }
454
455 // Return whether we should just read symbols from this file.
456 bool
457 just_symbols() const
458 { return this->input_file()->just_symbols(); }
459
460 // Return whether this is an incremental object.
461 bool
462 is_incremental() const
463 { return this->do_is_incremental(); }
464
465 // Return the last modified time of the file.
466 Timespec
467 get_mtime()
468 { return this->do_get_mtime(); }
469
470 // Get the number of sections.
471 unsigned int
472 shnum() const
473 { return this->shnum_; }
474
475 // Return a view of the contents of a section. Set *PLEN to the
476 // size. CACHE is a hint as in File_read::get_view.
477 const unsigned char*
478 section_contents(unsigned int shndx, section_size_type* plen, bool cache);
479
480 // Adjust a symbol's section index as needed. SYMNDX is the index
481 // of the symbol and SHNDX is the symbol's section from
482 // get_st_shndx. This returns the section index. It sets
483 // *IS_ORDINARY to indicate whether this is a normal section index,
484 // rather than a special code between SHN_LORESERVE and
485 // SHN_HIRESERVE.
486 unsigned int
487 adjust_sym_shndx(unsigned int symndx, unsigned int shndx, bool* is_ordinary)
488 {
489 if (shndx < elfcpp::SHN_LORESERVE)
490 *is_ordinary = true;
491 else if (shndx == elfcpp::SHN_XINDEX)
492 {
493 if (this->xindex_ == NULL)
494 this->xindex_ = this->do_initialize_xindex();
495 shndx = this->xindex_->sym_xindex_to_shndx(this, symndx);
496 *is_ordinary = true;
497 }
498 else
499 *is_ordinary = false;
500 return shndx;
501 }
502
503 // Return the size of a section given a section index.
504 uint64_t
505 section_size(unsigned int shndx)
506 { return this->do_section_size(shndx); }
507
508 // Return the name of a section given a section index.
509 std::string
510 section_name(unsigned int shndx)
511 { return this->do_section_name(shndx); }
512
513 // Return the section flags given a section index.
514 uint64_t
515 section_flags(unsigned int shndx)
516 { return this->do_section_flags(shndx); }
517
518 // Return the section entsize given a section index.
519 uint64_t
520 section_entsize(unsigned int shndx)
521 { return this->do_section_entsize(shndx); }
522
523 // Return the section address given a section index.
524 uint64_t
525 section_address(unsigned int shndx)
526 { return this->do_section_address(shndx); }
527
528 // Return the section type given a section index.
529 unsigned int
530 section_type(unsigned int shndx)
531 { return this->do_section_type(shndx); }
532
533 // Return the section link field given a section index.
534 unsigned int
535 section_link(unsigned int shndx)
536 { return this->do_section_link(shndx); }
537
538 // Return the section info field given a section index.
539 unsigned int
540 section_info(unsigned int shndx)
541 { return this->do_section_info(shndx); }
542
543 // Return the required section alignment given a section index.
544 uint64_t
545 section_addralign(unsigned int shndx)
546 { return this->do_section_addralign(shndx); }
547
548 // Return the output section given a section index.
549 Output_section*
550 output_section(unsigned int shndx) const
551 { return this->do_output_section(shndx); }
552
553 // Given a section index, return its address.
554 // The return value will be -1U if the section is specially mapped,
555 // such as a merge section.
556 uint64_t
557 output_section_address(unsigned int shndx)
558 { return this->do_output_section_address(shndx); }
559
560 // Given a section index, return the offset in the Output_section.
561 // The return value will be -1U if the section is specially mapped,
562 // such as a merge section.
563 uint64_t
564 output_section_offset(unsigned int shndx) const
565 { return this->do_output_section_offset(shndx); }
566
567 // Read the symbol information.
568 void
569 read_symbols(Read_symbols_data* sd)
570 { return this->do_read_symbols(sd); }
571
572 // Pass sections which should be included in the link to the Layout
573 // object, and record where the sections go in the output file.
574 void
575 layout(Symbol_table* symtab, Layout* layout, Read_symbols_data* sd)
576 { this->do_layout(symtab, layout, sd); }
577
578 // Add symbol information to the global symbol table.
579 void
580 add_symbols(Symbol_table* symtab, Read_symbols_data* sd, Layout *layout)
581 { this->do_add_symbols(symtab, sd, layout); }
582
583 // Add symbol information to the global symbol table.
584 Archive::Should_include
585 should_include_member(Symbol_table* symtab, Layout* layout,
586 Read_symbols_data* sd, std::string* why)
587 { return this->do_should_include_member(symtab, layout, sd, why); }
588
589 // Iterate over global symbols, calling a visitor class V for each.
590 void
591 for_all_global_symbols(Read_symbols_data* sd,
592 Library_base::Symbol_visitor_base* v)
593 { return this->do_for_all_global_symbols(sd, v); }
594
595 // Iterate over local symbols, calling a visitor class V for each GOT offset
596 // associated with a local symbol.
597 void
598 for_all_local_got_entries(Got_offset_list::Visitor* v) const
599 { this->do_for_all_local_got_entries(v); }
600
601 // Functions and types for the elfcpp::Elf_file interface. This
602 // permit us to use Object as the File template parameter for
603 // elfcpp::Elf_file.
604
605 // The View class is returned by view. It must support a single
606 // method, data(). This is trivial, because get_view does what we
607 // need.
608 class View
609 {
610 public:
611 View(const unsigned char* p)
612 : p_(p)
613 { }
614
615 const unsigned char*
616 data() const
617 { return this->p_; }
618
619 private:
620 const unsigned char* p_;
621 };
622
623 // Return a View.
624 View
625 view(off_t file_offset, section_size_type data_size)
626 { return View(this->get_view(file_offset, data_size, true, true)); }
627
628 // Report an error.
629 void
630 error(const char* format, ...) const ATTRIBUTE_PRINTF_2;
631
632 // A location in the file.
633 struct Location
634 {
635 off_t file_offset;
636 off_t data_size;
637
638 Location(off_t fo, section_size_type ds)
639 : file_offset(fo), data_size(ds)
640 { }
641 };
642
643 // Get a View given a Location.
644 View view(Location loc)
645 { return View(this->get_view(loc.file_offset, loc.data_size, true, true)); }
646
647 // Get a view into the underlying file.
648 const unsigned char*
649 get_view(off_t start, section_size_type size, bool aligned, bool cache)
650 {
651 return this->input_file()->file().get_view(this->offset_, start, size,
652 aligned, cache);
653 }
654
655 // Get a lasting view into the underlying file.
656 File_view*
657 get_lasting_view(off_t start, section_size_type size, bool aligned,
658 bool cache)
659 {
660 return this->input_file()->file().get_lasting_view(this->offset_, start,
661 size, aligned, cache);
662 }
663
664 // Read data from the underlying file.
665 void
666 read(off_t start, section_size_type size, void* p)
667 { this->input_file()->file().read(start + this->offset_, size, p); }
668
669 // Read multiple data from the underlying file.
670 void
671 read_multiple(const File_read::Read_multiple& rm)
672 { this->input_file()->file().read_multiple(this->offset_, rm); }
673
674 // Stop caching views in the underlying file.
675 void
676 clear_view_cache_marks()
677 {
678 if (this->input_file_ != NULL)
679 this->input_file_->file().clear_view_cache_marks();
680 }
681
682 // Get the number of global symbols defined by this object, and the
683 // number of the symbols whose final definition came from this
684 // object.
685 void
686 get_global_symbol_counts(const Symbol_table* symtab, size_t* defined,
687 size_t* used) const
688 { this->do_get_global_symbol_counts(symtab, defined, used); }
689
690 // Get the symbols defined in this object.
691 const Symbols*
692 get_global_symbols() const
693 { return this->do_get_global_symbols(); }
694
695 // Set flag that this object was found in a system directory.
696 void
697 set_is_in_system_directory()
698 { this->is_in_system_directory_ = true; }
699
700 // Return whether this object was found in a system directory.
701 bool
702 is_in_system_directory() const
703 { return this->is_in_system_directory_; }
704
705 // Set flag that this object was linked with --as-needed.
706 void
707 set_as_needed()
708 { this->as_needed_ = true; }
709
710 // Return whether this object was linked with --as-needed.
711 bool
712 as_needed() const
713 { return this->as_needed_; }
714
715 // Return whether we found this object by searching a directory.
716 bool
717 searched_for() const
718 { return this->input_file()->will_search_for(); }
719
720 bool
721 no_export() const
722 { return this->no_export_; }
723
724 void
725 set_no_export(bool value)
726 { this->no_export_ = value; }
727
728 // Return TRUE if the section is a compressed debug section, and set
729 // *UNCOMPRESSED_SIZE to the size of the uncompressed data.
730 bool
731 section_is_compressed(unsigned int shndx,
732 section_size_type* uncompressed_size) const
733 { return this->do_section_is_compressed(shndx, uncompressed_size); }
734
735 // Return a view of the decompressed contents of a section. Set *PLEN
736 // to the size. Set *IS_NEW to true if the contents need to be freed
737 // by the caller.
738 const unsigned char*
739 decompressed_section_contents(unsigned int shndx, section_size_type* plen,
740 bool* is_cached)
741 { return this->do_decompressed_section_contents(shndx, plen, is_cached); }
742
743 // Discard any buffers of decompressed sections. This is done
744 // at the end of the Add_symbols task.
745 void
746 discard_decompressed_sections()
747 { this->do_discard_decompressed_sections(); }
748
749 // Return the index of the first incremental relocation for symbol SYMNDX.
750 unsigned int
751 get_incremental_reloc_base(unsigned int symndx) const
752 { return this->do_get_incremental_reloc_base(symndx); }
753
754 // Return the number of incremental relocations for symbol SYMNDX.
755 unsigned int
756 get_incremental_reloc_count(unsigned int symndx) const
757 { return this->do_get_incremental_reloc_count(symndx); }
758
759 protected:
760 // Returns NULL for Objects that are not dynamic objects. This method
761 // is overridden in the Dynobj class.
762 virtual Dynobj*
763 do_dynobj()
764 { return NULL; }
765
766 // Returns NULL for Objects that are not plugin objects. This method
767 // is overridden in the Pluginobj class.
768 virtual Pluginobj*
769 do_pluginobj()
770 { return NULL; }
771
772 // Return TRUE if this is an incremental (unchanged) input file.
773 // We return FALSE by default; the incremental object classes
774 // override this method.
775 virtual bool
776 do_is_incremental() const
777 { return false; }
778
779 // Return the last modified time of the file. This method may be
780 // overridden for subclasses that don't use an actual file (e.g.,
781 // Incremental objects).
782 virtual Timespec
783 do_get_mtime()
784 { return this->input_file()->file().get_mtime(); }
785
786 // Read the symbols--implemented by child class.
787 virtual void
788 do_read_symbols(Read_symbols_data*) = 0;
789
790 // Lay out sections--implemented by child class.
791 virtual void
792 do_layout(Symbol_table*, Layout*, Read_symbols_data*) = 0;
793
794 // Add symbol information to the global symbol table--implemented by
795 // child class.
796 virtual void
797 do_add_symbols(Symbol_table*, Read_symbols_data*, Layout*) = 0;
798
799 virtual Archive::Should_include
800 do_should_include_member(Symbol_table* symtab, Layout*, Read_symbols_data*,
801 std::string* why) = 0;
802
803 // Iterate over global symbols, calling a visitor class V for each.
804 virtual void
805 do_for_all_global_symbols(Read_symbols_data* sd,
806 Library_base::Symbol_visitor_base* v) = 0;
807
808 // Iterate over local symbols, calling a visitor class V for each GOT offset
809 // associated with a local symbol.
810 virtual void
811 do_for_all_local_got_entries(Got_offset_list::Visitor* v) const = 0;
812
813 // Return the location of the contents of a section. Implemented by
814 // child class.
815 virtual const unsigned char*
816 do_section_contents(unsigned int shndx, section_size_type* plen,
817 bool cache) = 0;
818
819 // Get the size of a section--implemented by child class.
820 virtual uint64_t
821 do_section_size(unsigned int shndx) = 0;
822
823 // Get the name of a section--implemented by child class.
824 virtual std::string
825 do_section_name(unsigned int shndx) = 0;
826
827 // Get section flags--implemented by child class.
828 virtual uint64_t
829 do_section_flags(unsigned int shndx) = 0;
830
831 // Get section entsize--implemented by child class.
832 virtual uint64_t
833 do_section_entsize(unsigned int shndx) = 0;
834
835 // Get section address--implemented by child class.
836 virtual uint64_t
837 do_section_address(unsigned int shndx) = 0;
838
839 // Get section type--implemented by child class.
840 virtual unsigned int
841 do_section_type(unsigned int shndx) = 0;
842
843 // Get section link field--implemented by child class.
844 virtual unsigned int
845 do_section_link(unsigned int shndx) = 0;
846
847 // Get section info field--implemented by child class.
848 virtual unsigned int
849 do_section_info(unsigned int shndx) = 0;
850
851 // Get section alignment--implemented by child class.
852 virtual uint64_t
853 do_section_addralign(unsigned int shndx) = 0;
854
855 // Return the output section given a section index--implemented
856 // by child class.
857 virtual Output_section*
858 do_output_section(unsigned int) const
859 { gold_unreachable(); }
860
861 // Get the address of a section--implemented by child class.
862 virtual uint64_t
863 do_output_section_address(unsigned int)
864 { gold_unreachable(); }
865
866 // Get the offset of a section--implemented by child class.
867 virtual uint64_t
868 do_output_section_offset(unsigned int) const
869 { gold_unreachable(); }
870
871 // Return the Xindex structure to use.
872 virtual Xindex*
873 do_initialize_xindex() = 0;
874
875 // Implement get_global_symbol_counts--implemented by child class.
876 virtual void
877 do_get_global_symbol_counts(const Symbol_table*, size_t*, size_t*) const = 0;
878
879 virtual const Symbols*
880 do_get_global_symbols() const = 0;
881
882 // Set the number of sections.
883 void
884 set_shnum(int shnum)
885 { this->shnum_ = shnum; }
886
887 // Functions used by both Sized_relobj_file and Sized_dynobj.
888
889 // Read the section data into a Read_symbols_data object.
890 template<int size, bool big_endian>
891 void
892 read_section_data(elfcpp::Elf_file<size, big_endian, Object>*,
893 Read_symbols_data*);
894
895 // Find the section header with the given NAME. If HDR is non-NULL
896 // then it is a section header returned from a previous call to this
897 // function and the next section header with the same name will be
898 // returned.
899 template<int size, bool big_endian>
900 const unsigned char*
901 find_shdr(const unsigned char* pshdrs, const char* name,
902 const char* names, section_size_type names_size,
903 const unsigned char* hdr) const;
904
905 // Let the child class initialize the xindex object directly.
906 void
907 set_xindex(Xindex* xindex)
908 {
909 gold_assert(this->xindex_ == NULL);
910 this->xindex_ = xindex;
911 }
912
913 // If NAME is the name of a special .gnu.warning section, arrange
914 // for the warning to be issued. SHNDX is the section index.
915 // Return whether it is a warning section.
916 bool
917 handle_gnu_warning_section(const char* name, unsigned int shndx,
918 Symbol_table*);
919
920 // If NAME is the name of the special section which indicates that
921 // this object was compiled with -fsplit-stack, mark it accordingly,
922 // and return true. Otherwise return false.
923 bool
924 handle_split_stack_section(const char* name);
925
926 // Return TRUE if the section is a compressed debug section, and set
927 // *UNCOMPRESSED_SIZE to the size of the uncompressed data.
928 virtual bool
929 do_section_is_compressed(unsigned int, section_size_type*) const
930 { return false; }
931
932 // Return a view of the decompressed contents of a section. Set *PLEN
933 // to the size. This default implementation simply returns the
934 // raw section contents and sets *IS_NEW to false to indicate
935 // that the contents do not need to be freed by the caller.
936 // This function must be overridden for any types of object files
937 // that might contain compressed sections.
938 virtual const unsigned char*
939 do_decompressed_section_contents(unsigned int shndx,
940 section_size_type* plen,
941 bool* is_new)
942 {
943 *is_new = false;
944 return this->do_section_contents(shndx, plen, false);
945 }
946
947 // Discard any buffers of decompressed sections. This is done
948 // at the end of the Add_symbols task.
949 virtual void
950 do_discard_decompressed_sections()
951 { }
952
953 // Return the index of the first incremental relocation for symbol SYMNDX--
954 // implemented by child class.
955 virtual unsigned int
956 do_get_incremental_reloc_base(unsigned int) const
957 { gold_unreachable(); }
958
959 // Return the number of incremental relocations for symbol SYMNDX--
960 // implemented by child class.
961 virtual unsigned int
962 do_get_incremental_reloc_count(unsigned int) const
963 { gold_unreachable(); }
964
965 private:
966 // This class may not be copied.
967 Object(const Object&);
968 Object& operator=(const Object&);
969
970 // Name of object as printed to user.
971 std::string name_;
972 // For reading the file.
973 Input_file* input_file_;
974 // Offset within the file--0 for an object file, non-0 for an
975 // archive.
976 off_t offset_;
977 // Number of input sections.
978 unsigned int shnum_;
979 // Whether this is a dynamic object.
980 bool is_dynamic_ : 1;
981 // Whether this object is needed. This is only set for dynamic
982 // objects, and means that the object defined a symbol which was
983 // used by a reference from a regular object.
984 bool is_needed_ : 1;
985 // Whether this object was compiled with -fsplit-stack.
986 bool uses_split_stack_ : 1;
987 // Whether this object contains any functions compiled with the
988 // no_split_stack attribute.
989 bool has_no_split_stack_ : 1;
990 // True if exclude this object from automatic symbol export.
991 // This is used only for archive objects.
992 bool no_export_ : 1;
993 // True if the object was found in a system directory.
994 bool is_in_system_directory_ : 1;
995 // True if the object was linked with --as-needed.
996 bool as_needed_ : 1;
997 // Many sections for objects with more than SHN_LORESERVE sections.
998 Xindex* xindex_;
999 };
1000
1001 // A regular object (ET_REL). This is an abstract base class itself.
1002 // The implementation is the template class Sized_relobj_file.
1003
1004 class Relobj : public Object
1005 {
1006 public:
1007 Relobj(const std::string& name, Input_file* input_file, off_t offset = 0)
1008 : Object(name, input_file, false, offset),
1009 output_sections_(),
1010 map_to_relocatable_relocs_(NULL),
1011 object_merge_map_(NULL),
1012 relocs_must_follow_section_writes_(false),
1013 sd_(NULL),
1014 reloc_counts_(NULL),
1015 reloc_bases_(NULL),
1016 first_dyn_reloc_(0),
1017 dyn_reloc_count_(0)
1018 { }
1019
1020 // During garbage collection, the Read_symbols_data pass for
1021 // each object is stored as layout needs to be done after
1022 // reloc processing.
1023 Symbols_data*
1024 get_symbols_data()
1025 { return this->sd_; }
1026
1027 // Decides which section names have to be included in the worklist
1028 // as roots.
1029 bool
1030 is_section_name_included(const char* name);
1031
1032 void
1033 copy_symbols_data(Symbols_data* gc_sd, Read_symbols_data* sd,
1034 unsigned int section_header_size);
1035
1036 void
1037 set_symbols_data(Symbols_data* sd)
1038 { this->sd_ = sd; }
1039
1040 // During garbage collection, the Read_relocs pass for all objects
1041 // is done before scanning the relocs. In that case, this->rd_ is
1042 // used to store the information from Read_relocs for each object.
1043 // This data is also used to compute the list of relevant sections.
1044 Read_relocs_data*
1045 get_relocs_data()
1046 { return this->rd_; }
1047
1048 void
1049 set_relocs_data(Read_relocs_data* rd)
1050 { this->rd_ = rd; }
1051
1052 virtual bool
1053 is_output_section_offset_invalid(unsigned int shndx) const = 0;
1054
1055 // Read the relocs.
1056 void
1057 read_relocs(Read_relocs_data* rd)
1058 { return this->do_read_relocs(rd); }
1059
1060 // Process the relocs, during garbage collection only.
1061 void
1062 gc_process_relocs(Symbol_table* symtab, Layout* layout, Read_relocs_data* rd)
1063 { return this->do_gc_process_relocs(symtab, layout, rd); }
1064
1065 // Scan the relocs and adjust the symbol table.
1066 void
1067 scan_relocs(Symbol_table* symtab, Layout* layout, Read_relocs_data* rd)
1068 { return this->do_scan_relocs(symtab, layout, rd); }
1069
1070 // Return the value of the local symbol whose index is SYMNDX, plus
1071 // ADDEND. ADDEND is passed in so that we can correctly handle the
1072 // section symbol for a merge section.
1073 uint64_t
1074 local_symbol_value(unsigned int symndx, uint64_t addend) const
1075 { return this->do_local_symbol_value(symndx, addend); }
1076
1077 // Return the PLT offset for a local symbol. It is an error to call
1078 // this if it doesn't have one.
1079 unsigned int
1080 local_plt_offset(unsigned int symndx) const
1081 { return this->do_local_plt_offset(symndx); }
1082
1083 // Return whether the local symbol SYMNDX has a GOT offset of type
1084 // GOT_TYPE.
1085 bool
1086 local_has_got_offset(unsigned int symndx, unsigned int got_type) const
1087 { return this->do_local_has_got_offset(symndx, got_type); }
1088
1089 // Return the GOT offset of type GOT_TYPE of the local symbol
1090 // SYMNDX. It is an error to call this if the symbol does not have
1091 // a GOT offset of the specified type.
1092 unsigned int
1093 local_got_offset(unsigned int symndx, unsigned int got_type) const
1094 { return this->do_local_got_offset(symndx, got_type); }
1095
1096 // Set the GOT offset with type GOT_TYPE of the local symbol SYMNDX
1097 // to GOT_OFFSET.
1098 void
1099 set_local_got_offset(unsigned int symndx, unsigned int got_type,
1100 unsigned int got_offset)
1101 { this->do_set_local_got_offset(symndx, got_type, got_offset); }
1102
1103 // Return whether the local symbol SYMNDX is a TLS symbol.
1104 bool
1105 local_is_tls(unsigned int symndx) const
1106 { return this->do_local_is_tls(symndx); }
1107
1108 // The number of local symbols in the input symbol table.
1109 virtual unsigned int
1110 local_symbol_count() const
1111 { return this->do_local_symbol_count(); }
1112
1113 // The number of local symbols in the output symbol table.
1114 virtual unsigned int
1115 output_local_symbol_count() const
1116 { return this->do_output_local_symbol_count(); }
1117
1118 // The file offset for local symbols in the output symbol table.
1119 virtual off_t
1120 local_symbol_offset() const
1121 { return this->do_local_symbol_offset(); }
1122
1123 // Initial local symbol processing: count the number of local symbols
1124 // in the output symbol table and dynamic symbol table; add local symbol
1125 // names to *POOL and *DYNPOOL.
1126 void
1127 count_local_symbols(Stringpool_template<char>* pool,
1128 Stringpool_template<char>* dynpool)
1129 { return this->do_count_local_symbols(pool, dynpool); }
1130
1131 // Set the values of the local symbols, set the output symbol table
1132 // indexes for the local variables, and set the offset where local
1133 // symbol information will be stored. Returns the new local symbol index.
1134 unsigned int
1135 finalize_local_symbols(unsigned int index, off_t off, Symbol_table* symtab)
1136 { return this->do_finalize_local_symbols(index, off, symtab); }
1137
1138 // Set the output dynamic symbol table indexes for the local variables.
1139 unsigned int
1140 set_local_dynsym_indexes(unsigned int index)
1141 { return this->do_set_local_dynsym_indexes(index); }
1142
1143 // Set the offset where local dynamic symbol information will be stored.
1144 unsigned int
1145 set_local_dynsym_offset(off_t off)
1146 { return this->do_set_local_dynsym_offset(off); }
1147
1148 // Record a dynamic relocation against an input section from this object.
1149 void
1150 add_dyn_reloc(unsigned int index)
1151 {
1152 if (this->dyn_reloc_count_ == 0)
1153 this->first_dyn_reloc_ = index;
1154 ++this->dyn_reloc_count_;
1155 }
1156
1157 // Return the index of the first dynamic relocation.
1158 unsigned int
1159 first_dyn_reloc() const
1160 { return this->first_dyn_reloc_; }
1161
1162 // Return the count of dynamic relocations.
1163 unsigned int
1164 dyn_reloc_count() const
1165 { return this->dyn_reloc_count_; }
1166
1167 // Relocate the input sections and write out the local symbols.
1168 void
1169 relocate(const Symbol_table* symtab, const Layout* layout, Output_file* of)
1170 { return this->do_relocate(symtab, layout, of); }
1171
1172 // Return whether an input section is being included in the link.
1173 bool
1174 is_section_included(unsigned int shndx) const
1175 {
1176 gold_assert(shndx < this->output_sections_.size());
1177 return this->output_sections_[shndx] != NULL;
1178 }
1179
1180 // The output section of the input section with index SHNDX.
1181 // This is only used currently to remove a section from the link in
1182 // relaxation.
1183 void
1184 set_output_section(unsigned int shndx, Output_section* os)
1185 {
1186 gold_assert(shndx < this->output_sections_.size());
1187 this->output_sections_[shndx] = os;
1188 }
1189
1190 // Set the offset of an input section within its output section.
1191 void
1192 set_section_offset(unsigned int shndx, uint64_t off)
1193 { this->do_set_section_offset(shndx, off); }
1194
1195 // Return true if we need to wait for output sections to be written
1196 // before we can apply relocations. This is true if the object has
1197 // any relocations for sections which require special handling, such
1198 // as the exception frame section.
1199 bool
1200 relocs_must_follow_section_writes() const
1201 { return this->relocs_must_follow_section_writes_; }
1202
1203 // Return the object merge map.
1204 Object_merge_map*
1205 merge_map() const
1206 { return this->object_merge_map_; }
1207
1208 // Set the object merge map.
1209 void
1210 set_merge_map(Object_merge_map* object_merge_map)
1211 {
1212 gold_assert(this->object_merge_map_ == NULL);
1213 this->object_merge_map_ = object_merge_map;
1214 }
1215
1216 // Record the relocatable reloc info for an input reloc section.
1217 void
1218 set_relocatable_relocs(unsigned int reloc_shndx, Relocatable_relocs* rr)
1219 {
1220 gold_assert(reloc_shndx < this->shnum());
1221 (*this->map_to_relocatable_relocs_)[reloc_shndx] = rr;
1222 }
1223
1224 // Get the relocatable reloc info for an input reloc section.
1225 Relocatable_relocs*
1226 relocatable_relocs(unsigned int reloc_shndx)
1227 {
1228 gold_assert(reloc_shndx < this->shnum());
1229 return (*this->map_to_relocatable_relocs_)[reloc_shndx];
1230 }
1231
1232 // Layout sections whose layout was deferred while waiting for
1233 // input files from a plugin.
1234 void
1235 layout_deferred_sections(Layout* layout)
1236 { this->do_layout_deferred_sections(layout); }
1237
1238 // Return the index of the first incremental relocation for symbol SYMNDX.
1239 virtual unsigned int
1240 do_get_incremental_reloc_base(unsigned int symndx) const
1241 { return this->reloc_bases_[symndx]; }
1242
1243 // Return the number of incremental relocations for symbol SYMNDX.
1244 virtual unsigned int
1245 do_get_incremental_reloc_count(unsigned int symndx) const
1246 { return this->reloc_counts_[symndx]; }
1247
1248 // Return the word size of the object file.
1249 int
1250 elfsize() const
1251 { return this->do_elfsize(); }
1252
1253 // Return TRUE if this is a big-endian object file.
1254 bool
1255 is_big_endian() const
1256 { return this->do_is_big_endian(); }
1257
1258 protected:
1259 // The output section to be used for each input section, indexed by
1260 // the input section number. The output section is NULL if the
1261 // input section is to be discarded.
1262 typedef std::vector<Output_section*> Output_sections;
1263
1264 // Read the relocs--implemented by child class.
1265 virtual void
1266 do_read_relocs(Read_relocs_data*) = 0;
1267
1268 // Process the relocs--implemented by child class.
1269 virtual void
1270 do_gc_process_relocs(Symbol_table*, Layout*, Read_relocs_data*) = 0;
1271
1272 // Scan the relocs--implemented by child class.
1273 virtual void
1274 do_scan_relocs(Symbol_table*, Layout*, Read_relocs_data*) = 0;
1275
1276 // Return the value of a local symbol.
1277 virtual uint64_t
1278 do_local_symbol_value(unsigned int symndx, uint64_t addend) const = 0;
1279
1280 // Return the PLT offset of a local symbol.
1281 virtual unsigned int
1282 do_local_plt_offset(unsigned int symndx) const = 0;
1283
1284 // Return whether a local symbol has a GOT offset of a given type.
1285 virtual bool
1286 do_local_has_got_offset(unsigned int symndx,
1287 unsigned int got_type) const = 0;
1288
1289 // Return the GOT offset of a given type of a local symbol.
1290 virtual unsigned int
1291 do_local_got_offset(unsigned int symndx, unsigned int got_type) const = 0;
1292
1293 // Set the GOT offset with a given type for a local symbol.
1294 virtual void
1295 do_set_local_got_offset(unsigned int symndx, unsigned int got_type,
1296 unsigned int got_offset) = 0;
1297
1298 // Return whether local symbol SYMNDX is a TLS symbol.
1299 virtual bool
1300 do_local_is_tls(unsigned int symndx) const = 0;
1301
1302 // Return the number of local symbols--implemented by child class.
1303 virtual unsigned int
1304 do_local_symbol_count() const = 0;
1305
1306 // Return the number of output local symbols--implemented by child class.
1307 virtual unsigned int
1308 do_output_local_symbol_count() const = 0;
1309
1310 // Return the file offset for local symbols--implemented by child class.
1311 virtual off_t
1312 do_local_symbol_offset() const = 0;
1313
1314 // Count local symbols--implemented by child class.
1315 virtual void
1316 do_count_local_symbols(Stringpool_template<char>*,
1317 Stringpool_template<char>*) = 0;
1318
1319 // Finalize the local symbols. Set the output symbol table indexes
1320 // for the local variables, and set the offset where local symbol
1321 // information will be stored.
1322 virtual unsigned int
1323 do_finalize_local_symbols(unsigned int, off_t, Symbol_table*) = 0;
1324
1325 // Set the output dynamic symbol table indexes for the local variables.
1326 virtual unsigned int
1327 do_set_local_dynsym_indexes(unsigned int) = 0;
1328
1329 // Set the offset where local dynamic symbol information will be stored.
1330 virtual unsigned int
1331 do_set_local_dynsym_offset(off_t) = 0;
1332
1333 // Relocate the input sections and write out the local
1334 // symbols--implemented by child class.
1335 virtual void
1336 do_relocate(const Symbol_table* symtab, const Layout*, Output_file* of) = 0;
1337
1338 // Set the offset of a section--implemented by child class.
1339 virtual void
1340 do_set_section_offset(unsigned int shndx, uint64_t off) = 0;
1341
1342 // Layout sections whose layout was deferred while waiting for
1343 // input files from a plugin--implemented by child class.
1344 virtual void
1345 do_layout_deferred_sections(Layout*) = 0;
1346
1347 // Given a section index, return the corresponding Output_section.
1348 // The return value will be NULL if the section is not included in
1349 // the link.
1350 Output_section*
1351 do_output_section(unsigned int shndx) const
1352 {
1353 gold_assert(shndx < this->output_sections_.size());
1354 return this->output_sections_[shndx];
1355 }
1356
1357 // Return the vector mapping input sections to output sections.
1358 Output_sections&
1359 output_sections()
1360 { return this->output_sections_; }
1361
1362 const Output_sections&
1363 output_sections() const
1364 { return this->output_sections_; }
1365
1366 // Set the size of the relocatable relocs array.
1367 void
1368 size_relocatable_relocs()
1369 {
1370 this->map_to_relocatable_relocs_ =
1371 new std::vector<Relocatable_relocs*>(this->shnum());
1372 }
1373
1374 // Record that we must wait for the output sections to be written
1375 // before applying relocations.
1376 void
1377 set_relocs_must_follow_section_writes()
1378 { this->relocs_must_follow_section_writes_ = true; }
1379
1380 // Allocate the array for counting incremental relocations.
1381 void
1382 allocate_incremental_reloc_counts()
1383 {
1384 unsigned int nsyms = this->do_get_global_symbols()->size();
1385 this->reloc_counts_ = new unsigned int[nsyms];
1386 gold_assert(this->reloc_counts_ != NULL);
1387 memset(this->reloc_counts_, 0, nsyms * sizeof(unsigned int));
1388 }
1389
1390 // Record a relocation in this object referencing global symbol SYMNDX.
1391 // Used for tracking incremental link information.
1392 void
1393 count_incremental_reloc(unsigned int symndx)
1394 {
1395 unsigned int nsyms = this->do_get_global_symbols()->size();
1396 gold_assert(symndx < nsyms);
1397 gold_assert(this->reloc_counts_ != NULL);
1398 ++this->reloc_counts_[symndx];
1399 }
1400
1401 // Finalize the incremental relocation information.
1402 void
1403 finalize_incremental_relocs(Layout* layout, bool clear_counts);
1404
1405 // Return the index of the next relocation to be written for global symbol
1406 // SYMNDX. Only valid after finalize_incremental_relocs() has been called.
1407 unsigned int
1408 next_incremental_reloc_index(unsigned int symndx)
1409 {
1410 unsigned int nsyms = this->do_get_global_symbols()->size();
1411
1412 gold_assert(this->reloc_counts_ != NULL);
1413 gold_assert(this->reloc_bases_ != NULL);
1414 gold_assert(symndx < nsyms);
1415
1416 unsigned int counter = this->reloc_counts_[symndx]++;
1417 return this->reloc_bases_[symndx] + counter;
1418 }
1419
1420 // Return the word size of the object file--
1421 // implemented by child class.
1422 virtual int
1423 do_elfsize() const = 0;
1424
1425 // Return TRUE if this is a big-endian object file--
1426 // implemented by child class.
1427 virtual bool
1428 do_is_big_endian() const = 0;
1429
1430 private:
1431 // Mapping from input sections to output section.
1432 Output_sections output_sections_;
1433 // Mapping from input section index to the information recorded for
1434 // the relocations. This is only used for a relocatable link.
1435 std::vector<Relocatable_relocs*>* map_to_relocatable_relocs_;
1436 // Mappings for merge sections. This is managed by the code in the
1437 // Merge_map class.
1438 Object_merge_map* object_merge_map_;
1439 // Whether we need to wait for output sections to be written before
1440 // we can apply relocations.
1441 bool relocs_must_follow_section_writes_;
1442 // Used to store the relocs data computed by the Read_relocs pass.
1443 // Used during garbage collection of unused sections.
1444 Read_relocs_data* rd_;
1445 // Used to store the symbols data computed by the Read_symbols pass.
1446 // Again used during garbage collection when laying out referenced
1447 // sections.
1448 gold::Symbols_data* sd_;
1449 // Per-symbol counts of relocations, for incremental links.
1450 unsigned int* reloc_counts_;
1451 // Per-symbol base indexes of relocations, for incremental links.
1452 unsigned int* reloc_bases_;
1453 // Index of the first dynamic relocation for this object.
1454 unsigned int first_dyn_reloc_;
1455 // Count of dynamic relocations for this object.
1456 unsigned int dyn_reloc_count_;
1457 };
1458
1459 // This class is used to handle relocations against a section symbol
1460 // in an SHF_MERGE section. For such a symbol, we need to know the
1461 // addend of the relocation before we can determine the final value.
1462 // The addend gives us the location in the input section, and we can
1463 // determine how it is mapped to the output section. For a
1464 // non-section symbol, we apply the addend to the final value of the
1465 // symbol; that is done in finalize_local_symbols, and does not use
1466 // this class.
1467
1468 template<int size>
1469 class Merged_symbol_value
1470 {
1471 public:
1472 typedef typename elfcpp::Elf_types<size>::Elf_Addr Value;
1473
1474 // We use a hash table to map offsets in the input section to output
1475 // addresses.
1476 typedef Unordered_map<section_offset_type, Value> Output_addresses;
1477
1478 Merged_symbol_value(Value input_value, Value output_start_address)
1479 : input_value_(input_value), output_start_address_(output_start_address),
1480 output_addresses_()
1481 { }
1482
1483 // Initialize the hash table.
1484 void
1485 initialize_input_to_output_map(const Relobj*, unsigned int input_shndx);
1486
1487 // Release the hash table to save space.
1488 void
1489 free_input_to_output_map()
1490 { this->output_addresses_.clear(); }
1491
1492 // Get the output value corresponding to an addend. The object and
1493 // input section index are passed in because the caller will have
1494 // them; otherwise we could store them here.
1495 Value
1496 value(const Relobj* object, unsigned int input_shndx, Value addend) const
1497 {
1498 // This is a relocation against a section symbol. ADDEND is the
1499 // offset in the section. The result should be the start of some
1500 // merge area. If the object file wants something else, it should
1501 // use a regular symbol rather than a section symbol.
1502 // Unfortunately, PR 6658 shows a case in which the object file
1503 // refers to the section symbol, but uses a negative ADDEND to
1504 // compensate for a PC relative reloc. We can't handle the
1505 // general case. However, we can handle the special case of a
1506 // negative addend, by assuming that it refers to the start of the
1507 // section. Of course, that means that we have to guess when
1508 // ADDEND is negative. It is normal to see a 32-bit value here
1509 // even when the template parameter size is 64, as 64-bit object
1510 // file formats have 32-bit relocations. We know this is a merge
1511 // section, so we know it has to fit into memory. So we assume
1512 // that we won't see a value larger than a large 32-bit unsigned
1513 // value. This will break objects with very very large merge
1514 // sections; they probably break in other ways anyhow.
1515 Value input_offset = this->input_value_;
1516 if (addend < 0xffffff00)
1517 {
1518 input_offset += addend;
1519 addend = 0;
1520 }
1521 typename Output_addresses::const_iterator p =
1522 this->output_addresses_.find(input_offset);
1523 if (p != this->output_addresses_.end())
1524 return p->second + addend;
1525
1526 return (this->value_from_output_section(object, input_shndx, input_offset)
1527 + addend);
1528 }
1529
1530 private:
1531 // Get the output value for an input offset if we couldn't find it
1532 // in the hash table.
1533 Value
1534 value_from_output_section(const Relobj*, unsigned int input_shndx,
1535 Value input_offset) const;
1536
1537 // The value of the section symbol in the input file. This is
1538 // normally zero, but could in principle be something else.
1539 Value input_value_;
1540 // The start address of this merged section in the output file.
1541 Value output_start_address_;
1542 // A hash table which maps offsets in the input section to output
1543 // addresses. This only maps specific offsets, not all offsets.
1544 Output_addresses output_addresses_;
1545 };
1546
1547 // This POD class is holds the value of a symbol. This is used for
1548 // local symbols, and for all symbols during relocation processing.
1549 // For special sections, such as SHF_MERGE sections, this calls a
1550 // function to get the final symbol value.
1551
1552 template<int size>
1553 class Symbol_value
1554 {
1555 public:
1556 typedef typename elfcpp::Elf_types<size>::Elf_Addr Value;
1557
1558 Symbol_value()
1559 : output_symtab_index_(0), output_dynsym_index_(-1U), input_shndx_(0),
1560 is_ordinary_shndx_(false), is_section_symbol_(false),
1561 is_tls_symbol_(false), is_ifunc_symbol_(false), has_output_value_(true)
1562 { this->u_.value = 0; }
1563
1564 ~Symbol_value()
1565 {
1566 if (!this->has_output_value_)
1567 delete this->u_.merged_symbol_value;
1568 }
1569
1570 // Get the value of this symbol. OBJECT is the object in which this
1571 // symbol is defined, and ADDEND is an addend to add to the value.
1572 template<bool big_endian>
1573 Value
1574 value(const Sized_relobj_file<size, big_endian>* object, Value addend) const
1575 {
1576 if (this->has_output_value_)
1577 return this->u_.value + addend;
1578 else
1579 {
1580 gold_assert(this->is_ordinary_shndx_);
1581 return this->u_.merged_symbol_value->value(object, this->input_shndx_,
1582 addend);
1583 }
1584 }
1585
1586 // Set the value of this symbol in the output symbol table.
1587 void
1588 set_output_value(Value value)
1589 { this->u_.value = value; }
1590
1591 // For a section symbol in a merged section, we need more
1592 // information.
1593 void
1594 set_merged_symbol_value(Merged_symbol_value<size>* msv)
1595 {
1596 gold_assert(this->is_section_symbol_);
1597 this->has_output_value_ = false;
1598 this->u_.merged_symbol_value = msv;
1599 }
1600
1601 // Initialize the input to output map for a section symbol in a
1602 // merged section. We also initialize the value of a non-section
1603 // symbol in a merged section.
1604 void
1605 initialize_input_to_output_map(const Relobj* object)
1606 {
1607 if (!this->has_output_value_)
1608 {
1609 gold_assert(this->is_section_symbol_ && this->is_ordinary_shndx_);
1610 Merged_symbol_value<size>* msv = this->u_.merged_symbol_value;
1611 msv->initialize_input_to_output_map(object, this->input_shndx_);
1612 }
1613 }
1614
1615 // Free the input to output map for a section symbol in a merged
1616 // section.
1617 void
1618 free_input_to_output_map()
1619 {
1620 if (!this->has_output_value_)
1621 this->u_.merged_symbol_value->free_input_to_output_map();
1622 }
1623
1624 // Set the value of the symbol from the input file. This is only
1625 // called by count_local_symbols, to communicate the value to
1626 // finalize_local_symbols.
1627 void
1628 set_input_value(Value value)
1629 { this->u_.value = value; }
1630
1631 // Return the input value. This is only called by
1632 // finalize_local_symbols and (in special cases) relocate_section.
1633 Value
1634 input_value() const
1635 { return this->u_.value; }
1636
1637 // Return whether we have set the index in the output symbol table
1638 // yet.
1639 bool
1640 is_output_symtab_index_set() const
1641 {
1642 return (this->output_symtab_index_ != 0
1643 && this->output_symtab_index_ != -2U);
1644 }
1645
1646 // Return whether this symbol may be discarded from the normal
1647 // symbol table.
1648 bool
1649 may_be_discarded_from_output_symtab() const
1650 {
1651 gold_assert(!this->is_output_symtab_index_set());
1652 return this->output_symtab_index_ != -2U;
1653 }
1654
1655 // Return whether this symbol has an entry in the output symbol
1656 // table.
1657 bool
1658 has_output_symtab_entry() const
1659 {
1660 gold_assert(this->is_output_symtab_index_set());
1661 return this->output_symtab_index_ != -1U;
1662 }
1663
1664 // Return the index in the output symbol table.
1665 unsigned int
1666 output_symtab_index() const
1667 {
1668 gold_assert(this->is_output_symtab_index_set()
1669 && this->output_symtab_index_ != -1U);
1670 return this->output_symtab_index_;
1671 }
1672
1673 // Set the index in the output symbol table.
1674 void
1675 set_output_symtab_index(unsigned int i)
1676 {
1677 gold_assert(!this->is_output_symtab_index_set());
1678 gold_assert(i != 0 && i != -1U && i != -2U);
1679 this->output_symtab_index_ = i;
1680 }
1681
1682 // Record that this symbol should not go into the output symbol
1683 // table.
1684 void
1685 set_no_output_symtab_entry()
1686 {
1687 gold_assert(this->output_symtab_index_ == 0);
1688 this->output_symtab_index_ = -1U;
1689 }
1690
1691 // Record that this symbol must go into the output symbol table,
1692 // because it there is a relocation that uses it.
1693 void
1694 set_must_have_output_symtab_entry()
1695 {
1696 gold_assert(!this->is_output_symtab_index_set());
1697 this->output_symtab_index_ = -2U;
1698 }
1699
1700 // Set the index in the output dynamic symbol table.
1701 void
1702 set_needs_output_dynsym_entry()
1703 {
1704 gold_assert(!this->is_section_symbol());
1705 this->output_dynsym_index_ = 0;
1706 }
1707
1708 // Return whether this symbol should go into the dynamic symbol
1709 // table.
1710 bool
1711 needs_output_dynsym_entry() const
1712 {
1713 return this->output_dynsym_index_ != -1U;
1714 }
1715
1716 // Return whether this symbol has an entry in the dynamic symbol
1717 // table.
1718 bool
1719 has_output_dynsym_entry() const
1720 {
1721 gold_assert(this->output_dynsym_index_ != 0);
1722 return this->output_dynsym_index_ != -1U;
1723 }
1724
1725 // Record that this symbol should go into the dynamic symbol table.
1726 void
1727 set_output_dynsym_index(unsigned int i)
1728 {
1729 gold_assert(this->output_dynsym_index_ == 0);
1730 gold_assert(i != 0 && i != -1U);
1731 this->output_dynsym_index_ = i;
1732 }
1733
1734 // Return the index in the output dynamic symbol table.
1735 unsigned int
1736 output_dynsym_index() const
1737 {
1738 gold_assert(this->output_dynsym_index_ != 0
1739 && this->output_dynsym_index_ != -1U);
1740 return this->output_dynsym_index_;
1741 }
1742
1743 // Set the index of the input section in the input file.
1744 void
1745 set_input_shndx(unsigned int i, bool is_ordinary)
1746 {
1747 this->input_shndx_ = i;
1748 // input_shndx_ field is a bitfield, so make sure that the value
1749 // fits.
1750 gold_assert(this->input_shndx_ == i);
1751 this->is_ordinary_shndx_ = is_ordinary;
1752 }
1753
1754 // Return the index of the input section in the input file.
1755 unsigned int
1756 input_shndx(bool* is_ordinary) const
1757 {
1758 *is_ordinary = this->is_ordinary_shndx_;
1759 return this->input_shndx_;
1760 }
1761
1762 // Whether this is a section symbol.
1763 bool
1764 is_section_symbol() const
1765 { return this->is_section_symbol_; }
1766
1767 // Record that this is a section symbol.
1768 void
1769 set_is_section_symbol()
1770 {
1771 gold_assert(!this->needs_output_dynsym_entry());
1772 this->is_section_symbol_ = true;
1773 }
1774
1775 // Record that this is a TLS symbol.
1776 void
1777 set_is_tls_symbol()
1778 { this->is_tls_symbol_ = true; }
1779
1780 // Return true if this is a TLS symbol.
1781 bool
1782 is_tls_symbol() const
1783 { return this->is_tls_symbol_; }
1784
1785 // Record that this is an IFUNC symbol.
1786 void
1787 set_is_ifunc_symbol()
1788 { this->is_ifunc_symbol_ = true; }
1789
1790 // Return true if this is an IFUNC symbol.
1791 bool
1792 is_ifunc_symbol() const
1793 { return this->is_ifunc_symbol_; }
1794
1795 // Return true if this has output value.
1796 bool
1797 has_output_value() const
1798 { return this->has_output_value_; }
1799
1800 private:
1801 // The index of this local symbol in the output symbol table. This
1802 // will be 0 if no value has been assigned yet, and the symbol may
1803 // be omitted. This will be -1U if the symbol should not go into
1804 // the symbol table. This will be -2U if the symbol must go into
1805 // the symbol table, but no index has been assigned yet.
1806 unsigned int output_symtab_index_;
1807 // The index of this local symbol in the dynamic symbol table. This
1808 // will be -1U if the symbol should not go into the symbol table.
1809 unsigned int output_dynsym_index_;
1810 // The section index in the input file in which this symbol is
1811 // defined.
1812 unsigned int input_shndx_ : 27;
1813 // Whether the section index is an ordinary index, not a special
1814 // value.
1815 bool is_ordinary_shndx_ : 1;
1816 // Whether this is a STT_SECTION symbol.
1817 bool is_section_symbol_ : 1;
1818 // Whether this is a STT_TLS symbol.
1819 bool is_tls_symbol_ : 1;
1820 // Whether this is a STT_GNU_IFUNC symbol.
1821 bool is_ifunc_symbol_ : 1;
1822 // Whether this symbol has a value for the output file. This is
1823 // normally set to true during Layout::finalize, by
1824 // finalize_local_symbols. It will be false for a section symbol in
1825 // a merge section, as for such symbols we can not determine the
1826 // value to use in a relocation until we see the addend.
1827 bool has_output_value_ : 1;
1828 union
1829 {
1830 // This is used if has_output_value_ is true. Between
1831 // count_local_symbols and finalize_local_symbols, this is the
1832 // value in the input file. After finalize_local_symbols, it is
1833 // the value in the output file.
1834 Value value;
1835 // This is used if has_output_value_ is false. It points to the
1836 // information we need to get the value for a merge section.
1837 Merged_symbol_value<size>* merged_symbol_value;
1838 } u_;
1839 };
1840
1841 // This type is used to modify relocations for -fsplit-stack. It is
1842 // indexed by relocation index, and means that the relocation at that
1843 // index should use the symbol from the vector, rather than the one
1844 // indicated by the relocation.
1845
1846 class Reloc_symbol_changes
1847 {
1848 public:
1849 Reloc_symbol_changes(size_t count)
1850 : vec_(count, NULL)
1851 { }
1852
1853 void
1854 set(size_t i, Symbol* sym)
1855 { this->vec_[i] = sym; }
1856
1857 const Symbol*
1858 operator[](size_t i) const
1859 { return this->vec_[i]; }
1860
1861 private:
1862 std::vector<Symbol*> vec_;
1863 };
1864
1865 // Type for mapping section index to uncompressed size and contents.
1866
1867 struct Compressed_section_info
1868 {
1869 section_size_type size;
1870 const unsigned char* contents;
1871 };
1872 typedef std::map<unsigned int, Compressed_section_info> Compressed_section_map;
1873
1874 // Abstract base class for a regular object file, either a real object file
1875 // or an incremental (unchanged) object. This is size and endian specific.
1876
1877 template<int size, bool big_endian>
1878 class Sized_relobj : public Relobj
1879 {
1880 public:
1881 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
1882 typedef Relobj::Symbols Symbols;
1883
1884 static const Address invalid_address = static_cast<Address>(0) - 1;
1885
1886 Sized_relobj(const std::string& name, Input_file* input_file)
1887 : Relobj(name, input_file), local_got_offsets_(), section_offsets_()
1888 { }
1889
1890 Sized_relobj(const std::string& name, Input_file* input_file,
1891 off_t offset)
1892 : Relobj(name, input_file, offset), local_got_offsets_(), section_offsets_()
1893 { }
1894
1895 ~Sized_relobj()
1896 { }
1897
1898 // If this is a regular object, return a pointer to the Sized_relobj_file
1899 // object. Otherwise, return NULL.
1900 virtual Sized_relobj_file<size, big_endian>*
1901 sized_relobj()
1902 { return NULL; }
1903
1904 const virtual Sized_relobj_file<size, big_endian>*
1905 sized_relobj() const
1906 { return NULL; }
1907
1908 // Checks if the offset of input section SHNDX within its output
1909 // section is invalid.
1910 bool
1911 is_output_section_offset_invalid(unsigned int shndx) const
1912 { return this->get_output_section_offset(shndx) == invalid_address; }
1913
1914 // Get the offset of input section SHNDX within its output section.
1915 // This is -1 if the input section requires a special mapping, such
1916 // as a merge section. The output section can be found in the
1917 // output_sections_ field of the parent class Relobj.
1918 Address
1919 get_output_section_offset(unsigned int shndx) const
1920 {
1921 gold_assert(shndx < this->section_offsets_.size());
1922 return this->section_offsets_[shndx];
1923 }
1924
1925 // Iterate over local symbols, calling a visitor class V for each GOT offset
1926 // associated with a local symbol.
1927 void
1928 do_for_all_local_got_entries(Got_offset_list::Visitor* v) const;
1929
1930 protected:
1931 typedef Relobj::Output_sections Output_sections;
1932
1933 // Clear the local symbol information.
1934 void
1935 clear_got_offsets()
1936 { this->local_got_offsets_.clear(); }
1937
1938 // Return the vector of section offsets.
1939 std::vector<Address>&
1940 section_offsets()
1941 { return this->section_offsets_; }
1942
1943 // Get the address of an output section.
1944 uint64_t
1945 do_output_section_address(unsigned int shndx);
1946
1947 // Get the offset of a section.
1948 uint64_t
1949 do_output_section_offset(unsigned int shndx) const
1950 {
1951 Address off = this->get_output_section_offset(shndx);
1952 if (off == invalid_address)
1953 return -1ULL;
1954 return off;
1955 }
1956
1957 // Set the offset of a section.
1958 void
1959 do_set_section_offset(unsigned int shndx, uint64_t off)
1960 {
1961 gold_assert(shndx < this->section_offsets_.size());
1962 this->section_offsets_[shndx] =
1963 (off == static_cast<uint64_t>(-1)
1964 ? invalid_address
1965 : convert_types<Address, uint64_t>(off));
1966 }
1967
1968 // Return whether the local symbol SYMNDX has a GOT offset of type
1969 // GOT_TYPE.
1970 bool
1971 do_local_has_got_offset(unsigned int symndx, unsigned int got_type) const
1972 {
1973 Local_got_offsets::const_iterator p =
1974 this->local_got_offsets_.find(symndx);
1975 return (p != this->local_got_offsets_.end()
1976 && p->second->get_offset(got_type) != -1U);
1977 }
1978
1979 // Return the GOT offset of type GOT_TYPE of the local symbol
1980 // SYMNDX.
1981 unsigned int
1982 do_local_got_offset(unsigned int symndx, unsigned int got_type) const
1983 {
1984 Local_got_offsets::const_iterator p =
1985 this->local_got_offsets_.find(symndx);
1986 gold_assert(p != this->local_got_offsets_.end());
1987 unsigned int off = p->second->get_offset(got_type);
1988 gold_assert(off != -1U);
1989 return off;
1990 }
1991
1992 // Set the GOT offset with type GOT_TYPE of the local symbol SYMNDX
1993 // to GOT_OFFSET.
1994 void
1995 do_set_local_got_offset(unsigned int symndx, unsigned int got_type,
1996 unsigned int got_offset)
1997 {
1998 Local_got_offsets::const_iterator p =
1999 this->local_got_offsets_.find(symndx);
2000 if (p != this->local_got_offsets_.end())
2001 p->second->set_offset(got_type, got_offset);
2002 else
2003 {
2004 Got_offset_list* g = new Got_offset_list(got_type, got_offset);
2005 std::pair<Local_got_offsets::iterator, bool> ins =
2006 this->local_got_offsets_.insert(std::make_pair(symndx, g));
2007 gold_assert(ins.second);
2008 }
2009 }
2010
2011 // Return the word size of the object file.
2012 virtual int
2013 do_elfsize() const
2014 { return size; }
2015
2016 // Return TRUE if this is a big-endian object file.
2017 virtual bool
2018 do_is_big_endian() const
2019 { return big_endian; }
2020
2021 private:
2022 // The GOT offsets of local symbols. This map also stores GOT offsets
2023 // for tp-relative offsets for TLS symbols.
2024 typedef Unordered_map<unsigned int, Got_offset_list*> Local_got_offsets;
2025
2026 // GOT offsets for local non-TLS symbols, and tp-relative offsets
2027 // for TLS symbols, indexed by symbol number.
2028 Local_got_offsets local_got_offsets_;
2029 // For each input section, the offset of the input section in its
2030 // output section. This is INVALID_ADDRESS if the input section requires a
2031 // special mapping.
2032 std::vector<Address> section_offsets_;
2033 };
2034
2035 // A regular object file. This is size and endian specific.
2036
2037 template<int size, bool big_endian>
2038 class Sized_relobj_file : public Sized_relobj<size, big_endian>
2039 {
2040 public:
2041 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
2042 typedef typename Sized_relobj<size, big_endian>::Symbols Symbols;
2043 typedef std::vector<Symbol_value<size> > Local_values;
2044
2045 static const Address invalid_address = static_cast<Address>(0) - 1;
2046
2047 enum Compute_final_local_value_status
2048 {
2049 // No error.
2050 CFLV_OK,
2051 // An error occurred.
2052 CFLV_ERROR,
2053 // The local symbol has no output section.
2054 CFLV_DISCARDED
2055 };
2056
2057 Sized_relobj_file(const std::string& name,
2058 Input_file* input_file,
2059 off_t offset,
2060 const typename elfcpp::Ehdr<size, big_endian>&);
2061
2062 ~Sized_relobj_file();
2063
2064 // Set up the object file based on TARGET.
2065 void
2066 setup()
2067 { this->do_setup(); }
2068
2069 // Return a pointer to the Sized_relobj_file object.
2070 Sized_relobj_file<size, big_endian>*
2071 sized_relobj()
2072 { return this; }
2073
2074 const Sized_relobj_file<size, big_endian>*
2075 sized_relobj() const
2076 { return this; }
2077
2078 // Return the ELF file type.
2079 int
2080 e_type() const
2081 { return this->e_type_; }
2082
2083 // Return the number of symbols. This is only valid after
2084 // Object::add_symbols has been called.
2085 unsigned int
2086 symbol_count() const
2087 { return this->local_symbol_count_ + this->symbols_.size(); }
2088
2089 // If SYM is the index of a global symbol in the object file's
2090 // symbol table, return the Symbol object. Otherwise, return NULL.
2091 Symbol*
2092 global_symbol(unsigned int sym) const
2093 {
2094 if (sym >= this->local_symbol_count_)
2095 {
2096 gold_assert(sym - this->local_symbol_count_ < this->symbols_.size());
2097 return this->symbols_[sym - this->local_symbol_count_];
2098 }
2099 return NULL;
2100 }
2101
2102 // Return the section index of symbol SYM. Set *VALUE to its value
2103 // in the object file. Set *IS_ORDINARY if this is an ordinary
2104 // section index, not a special code between SHN_LORESERVE and
2105 // SHN_HIRESERVE. Note that for a symbol which is not defined in
2106 // this object file, this will set *VALUE to 0 and return SHN_UNDEF;
2107 // it will not return the final value of the symbol in the link.
2108 unsigned int
2109 symbol_section_and_value(unsigned int sym, Address* value, bool* is_ordinary);
2110
2111 // Return a pointer to the Symbol_value structure which holds the
2112 // value of a local symbol.
2113 const Symbol_value<size>*
2114 local_symbol(unsigned int sym) const
2115 {
2116 gold_assert(sym < this->local_values_.size());
2117 return &this->local_values_[sym];
2118 }
2119
2120 // Return the index of local symbol SYM in the ordinary symbol
2121 // table. A value of -1U means that the symbol is not being output.
2122 unsigned int
2123 symtab_index(unsigned int sym) const
2124 {
2125 gold_assert(sym < this->local_values_.size());
2126 return this->local_values_[sym].output_symtab_index();
2127 }
2128
2129 // Return the index of local symbol SYM in the dynamic symbol
2130 // table. A value of -1U means that the symbol is not being output.
2131 unsigned int
2132 dynsym_index(unsigned int sym) const
2133 {
2134 gold_assert(sym < this->local_values_.size());
2135 return this->local_values_[sym].output_dynsym_index();
2136 }
2137
2138 // Return the input section index of local symbol SYM.
2139 unsigned int
2140 local_symbol_input_shndx(unsigned int sym, bool* is_ordinary) const
2141 {
2142 gold_assert(sym < this->local_values_.size());
2143 return this->local_values_[sym].input_shndx(is_ordinary);
2144 }
2145
2146 // Record that local symbol SYM must be in the output symbol table.
2147 void
2148 set_must_have_output_symtab_entry(unsigned int sym)
2149 {
2150 gold_assert(sym < this->local_values_.size());
2151 this->local_values_[sym].set_must_have_output_symtab_entry();
2152 }
2153
2154 // Record that local symbol SYM needs a dynamic symbol entry.
2155 void
2156 set_needs_output_dynsym_entry(unsigned int sym)
2157 {
2158 gold_assert(sym < this->local_values_.size());
2159 this->local_values_[sym].set_needs_output_dynsym_entry();
2160 }
2161
2162 // Return whether the local symbol SYMNDX has a PLT offset.
2163 bool
2164 local_has_plt_offset(unsigned int symndx) const;
2165
2166 // Set the PLT offset of the local symbol SYMNDX.
2167 void
2168 set_local_plt_offset(unsigned int symndx, unsigned int plt_offset);
2169
2170 // Adjust this local symbol value. Return false if the symbol
2171 // should be discarded from the output file.
2172 bool
2173 adjust_local_symbol(Symbol_value<size>* lv) const
2174 { return this->do_adjust_local_symbol(lv); }
2175
2176 // Return the name of the symbol that spans the given offset in the
2177 // specified section in this object. This is used only for error
2178 // messages and is not particularly efficient.
2179 bool
2180 get_symbol_location_info(unsigned int shndx, off_t offset,
2181 Symbol_location_info* info);
2182
2183 // Look for a kept section corresponding to the given discarded section,
2184 // and return its output address. This is used only for relocations in
2185 // debugging sections.
2186 Address
2187 map_to_kept_section(unsigned int shndx, bool* found) const;
2188
2189 // Compute final local symbol value. R_SYM is the local symbol index.
2190 // LV_IN points to a local symbol value containing the input value.
2191 // LV_OUT points to a local symbol value storing the final output value,
2192 // which must not be a merged symbol value since before calling this
2193 // method to avoid memory leak. SYMTAB points to a symbol table.
2194 //
2195 // The method returns a status code at return. If the return status is
2196 // CFLV_OK, *LV_OUT contains the final value. If the return status is
2197 // CFLV_ERROR, *LV_OUT is 0. If the return status is CFLV_DISCARDED,
2198 // *LV_OUT is not modified.
2199 Compute_final_local_value_status
2200 compute_final_local_value(unsigned int r_sym,
2201 const Symbol_value<size>* lv_in,
2202 Symbol_value<size>* lv_out,
2203 const Symbol_table* symtab);
2204
2205 protected:
2206 typedef typename Sized_relobj<size, big_endian>::Output_sections
2207 Output_sections;
2208
2209 // Set up.
2210 virtual void
2211 do_setup();
2212
2213 // Read the symbols.
2214 void
2215 do_read_symbols(Read_symbols_data*);
2216
2217 // Return the value of a local symbol.
2218 uint64_t
2219 do_local_symbol_value(unsigned int symndx, uint64_t addend) const
2220 {
2221 const Symbol_value<size>* symval = this->local_symbol(symndx);
2222 return symval->value(this, addend);
2223 }
2224
2225 // Return the PLT offset for a local symbol. It is an error to call
2226 // this if it doesn't have one.
2227 unsigned int
2228 do_local_plt_offset(unsigned int symndx) const;
2229
2230 // Return whether local symbol SYMNDX is a TLS symbol.
2231 bool
2232 do_local_is_tls(unsigned int symndx) const
2233 { return this->local_symbol(symndx)->is_tls_symbol(); }
2234
2235 // Return the number of local symbols.
2236 unsigned int
2237 do_local_symbol_count() const
2238 { return this->local_symbol_count_; }
2239
2240 // Return the number of local symbols in the output symbol table.
2241 unsigned int
2242 do_output_local_symbol_count() const
2243 { return this->output_local_symbol_count_; }
2244
2245 // Return the number of local symbols in the output symbol table.
2246 off_t
2247 do_local_symbol_offset() const
2248 { return this->local_symbol_offset_; }
2249
2250 // Lay out the input sections.
2251 void
2252 do_layout(Symbol_table*, Layout*, Read_symbols_data*);
2253
2254 // Layout sections whose layout was deferred while waiting for
2255 // input files from a plugin.
2256 void
2257 do_layout_deferred_sections(Layout*);
2258
2259 // Add the symbols to the symbol table.
2260 void
2261 do_add_symbols(Symbol_table*, Read_symbols_data*, Layout*);
2262
2263 Archive::Should_include
2264 do_should_include_member(Symbol_table* symtab, Layout*, Read_symbols_data*,
2265 std::string* why);
2266
2267 // Iterate over global symbols, calling a visitor class V for each.
2268 void
2269 do_for_all_global_symbols(Read_symbols_data* sd,
2270 Library_base::Symbol_visitor_base* v);
2271
2272 // Read the relocs.
2273 void
2274 do_read_relocs(Read_relocs_data*);
2275
2276 // Process the relocs to find list of referenced sections. Used only
2277 // during garbage collection.
2278 void
2279 do_gc_process_relocs(Symbol_table*, Layout*, Read_relocs_data*);
2280
2281 // Scan the relocs and adjust the symbol table.
2282 void
2283 do_scan_relocs(Symbol_table*, Layout*, Read_relocs_data*);
2284
2285 // Count the local symbols.
2286 void
2287 do_count_local_symbols(Stringpool_template<char>*,
2288 Stringpool_template<char>*);
2289
2290 // Finalize the local symbols.
2291 unsigned int
2292 do_finalize_local_symbols(unsigned int, off_t, Symbol_table*);
2293
2294 // Set the offset where local dynamic symbol information will be stored.
2295 unsigned int
2296 do_set_local_dynsym_indexes(unsigned int);
2297
2298 // Set the offset where local dynamic symbol information will be stored.
2299 unsigned int
2300 do_set_local_dynsym_offset(off_t);
2301
2302 // Relocate the input sections and write out the local symbols.
2303 void
2304 do_relocate(const Symbol_table* symtab, const Layout*, Output_file* of);
2305
2306 // Get the size of a section.
2307 uint64_t
2308 do_section_size(unsigned int shndx)
2309 { return this->elf_file_.section_size(shndx); }
2310
2311 // Get the name of a section.
2312 std::string
2313 do_section_name(unsigned int shndx)
2314 { return this->elf_file_.section_name(shndx); }
2315
2316 // Return the location of the contents of a section.
2317 const unsigned char*
2318 do_section_contents(unsigned int shndx, section_size_type* plen,
2319 bool cache)
2320 {
2321 Object::Location loc(this->elf_file_.section_contents(shndx));
2322 *plen = convert_to_section_size_type(loc.data_size);
2323 if (*plen == 0)
2324 {
2325 static const unsigned char empty[1] = { '\0' };
2326 return empty;
2327 }
2328 return this->get_view(loc.file_offset, *plen, true, cache);
2329 }
2330
2331 // Return section flags.
2332 uint64_t
2333 do_section_flags(unsigned int shndx);
2334
2335 // Return section entsize.
2336 uint64_t
2337 do_section_entsize(unsigned int shndx);
2338
2339 // Return section address.
2340 uint64_t
2341 do_section_address(unsigned int shndx)
2342 { return this->elf_file_.section_addr(shndx); }
2343
2344 // Return section type.
2345 unsigned int
2346 do_section_type(unsigned int shndx)
2347 { return this->elf_file_.section_type(shndx); }
2348
2349 // Return the section link field.
2350 unsigned int
2351 do_section_link(unsigned int shndx)
2352 { return this->elf_file_.section_link(shndx); }
2353
2354 // Return the section info field.
2355 unsigned int
2356 do_section_info(unsigned int shndx)
2357 { return this->elf_file_.section_info(shndx); }
2358
2359 // Return the section alignment.
2360 uint64_t
2361 do_section_addralign(unsigned int shndx)
2362 { return this->elf_file_.section_addralign(shndx); }
2363
2364 // Return the Xindex structure to use.
2365 Xindex*
2366 do_initialize_xindex();
2367
2368 // Get symbol counts.
2369 void
2370 do_get_global_symbol_counts(const Symbol_table*, size_t*, size_t*) const;
2371
2372 // Get the global symbols.
2373 const Symbols*
2374 do_get_global_symbols() const
2375 { return &this->symbols_; }
2376
2377 // Adjust a section index if necessary.
2378 unsigned int
2379 adjust_shndx(unsigned int shndx)
2380 {
2381 if (shndx >= elfcpp::SHN_LORESERVE)
2382 shndx += this->elf_file_.large_shndx_offset();
2383 return shndx;
2384 }
2385
2386 // Initialize input to output maps for section symbols in merged
2387 // sections.
2388 void
2389 initialize_input_to_output_maps();
2390
2391 // Free the input to output maps for section symbols in merged
2392 // sections.
2393 void
2394 free_input_to_output_maps();
2395
2396 // Return symbol table section index.
2397 unsigned int
2398 symtab_shndx() const
2399 { return this->symtab_shndx_; }
2400
2401 // Allow a child class to access the ELF file.
2402 elfcpp::Elf_file<size, big_endian, Object>*
2403 elf_file()
2404 { return &this->elf_file_; }
2405
2406 // Allow a child class to access the local values.
2407 Local_values*
2408 local_values()
2409 { return &this->local_values_; }
2410
2411 // Views and sizes when relocating.
2412 struct View_size
2413 {
2414 unsigned char* view;
2415 typename elfcpp::Elf_types<size>::Elf_Addr address;
2416 off_t offset;
2417 section_size_type view_size;
2418 bool is_input_output_view;
2419 bool is_postprocessing_view;
2420 bool is_ctors_reverse_view;
2421 };
2422
2423 typedef std::vector<View_size> Views;
2424
2425 // Stash away info for a number of special sections.
2426 // Return true if any of the sections found require local symbols to be read.
2427 virtual bool
2428 do_find_special_sections(Read_symbols_data* sd);
2429
2430 // This may be overriden by a child class.
2431 virtual void
2432 do_relocate_sections(const Symbol_table* symtab, const Layout* layout,
2433 const unsigned char* pshdrs, Output_file* of,
2434 Views* pviews);
2435
2436 // Adjust this local symbol value. Return false if the symbol
2437 // should be discarded from the output file.
2438 virtual bool
2439 do_adjust_local_symbol(Symbol_value<size>*) const
2440 { return true; }
2441
2442 // Allow a child to set output local symbol count.
2443 void
2444 set_output_local_symbol_count(unsigned int value)
2445 { this->output_local_symbol_count_ = value; }
2446
2447 // Return TRUE if the section is a compressed debug section, and set
2448 // *UNCOMPRESSED_SIZE to the size of the uncompressed data.
2449 bool
2450 do_section_is_compressed(unsigned int shndx,
2451 section_size_type* uncompressed_size) const
2452 {
2453 if (this->compressed_sections_ == NULL)
2454 return false;
2455 Compressed_section_map::const_iterator p =
2456 this->compressed_sections_->find(shndx);
2457 if (p != this->compressed_sections_->end())
2458 {
2459 if (uncompressed_size != NULL)
2460 *uncompressed_size = p->second.size;
2461 return true;
2462 }
2463 return false;
2464 }
2465
2466 // Return a view of the uncompressed contents of a section. Set *PLEN
2467 // to the size. Set *IS_NEW to true if the contents need to be deleted
2468 // by the caller.
2469 const unsigned char*
2470 do_decompressed_section_contents(unsigned int shndx,
2471 section_size_type* plen,
2472 bool* is_new);
2473
2474 // Discard any buffers of decompressed sections. This is done
2475 // at the end of the Add_symbols task.
2476 void
2477 do_discard_decompressed_sections();
2478
2479 private:
2480 // For convenience.
2481 typedef Sized_relobj_file<size, big_endian> This;
2482 static const int ehdr_size = elfcpp::Elf_sizes<size>::ehdr_size;
2483 static const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
2484 static const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
2485 typedef elfcpp::Shdr<size, big_endian> Shdr;
2486
2487 // To keep track of discarded comdat sections, we need to map a member
2488 // section index to the object and section index of the corresponding
2489 // kept section.
2490 struct Kept_comdat_section
2491 {
2492 Kept_comdat_section(Relobj* a_object, unsigned int a_shndx)
2493 : object(a_object), shndx(a_shndx)
2494 { }
2495 Relobj* object;
2496 unsigned int shndx;
2497 };
2498 typedef std::map<unsigned int, Kept_comdat_section>
2499 Kept_comdat_section_table;
2500
2501 // Find the SHT_SYMTAB section, given the section headers.
2502 void
2503 find_symtab(const unsigned char* pshdrs);
2504
2505 // Return whether SHDR has the right flags for a GNU style exception
2506 // frame section.
2507 bool
2508 check_eh_frame_flags(const elfcpp::Shdr<size, big_endian>* shdr) const;
2509
2510 // Return whether there is a section named .eh_frame which might be
2511 // a GNU style exception frame section.
2512 bool
2513 find_eh_frame(const unsigned char* pshdrs, const char* names,
2514 section_size_type names_size) const;
2515
2516 // Whether to include a section group in the link.
2517 bool
2518 include_section_group(Symbol_table*, Layout*, unsigned int, const char*,
2519 const unsigned char*, const char*, section_size_type,
2520 std::vector<bool>*);
2521
2522 // Whether to include a linkonce section in the link.
2523 bool
2524 include_linkonce_section(Layout*, unsigned int, const char*,
2525 const elfcpp::Shdr<size, big_endian>&);
2526
2527 // Layout an input section.
2528 void
2529 layout_section(Layout* layout, unsigned int shndx, const char* name,
2530 const typename This::Shdr& shdr, unsigned int reloc_shndx,
2531 unsigned int reloc_type);
2532
2533 // Layout an input .eh_frame section.
2534 void
2535 layout_eh_frame_section(Layout* layout, const unsigned char* symbols_data,
2536 section_size_type symbols_size,
2537 const unsigned char* symbol_names_data,
2538 section_size_type symbol_names_size,
2539 unsigned int shndx, const typename This::Shdr&,
2540 unsigned int reloc_shndx, unsigned int reloc_type);
2541
2542 // Write section data to the output file. Record the views and
2543 // sizes in VIEWS for use when relocating.
2544 void
2545 write_sections(const Layout*, const unsigned char* pshdrs, Output_file*,
2546 Views*);
2547
2548 // Relocate the sections in the output file.
2549 void
2550 relocate_sections(const Symbol_table* symtab, const Layout* layout,
2551 const unsigned char* pshdrs, Output_file* of,
2552 Views* pviews)
2553 { this->do_relocate_sections(symtab, layout, pshdrs, of, pviews); }
2554
2555 // Reverse the words in a section. Used for .ctors sections mapped
2556 // to .init_array sections.
2557 void
2558 reverse_words(unsigned char*, section_size_type);
2559
2560 // Scan the input relocations for --emit-relocs.
2561 void
2562 emit_relocs_scan(Symbol_table*, Layout*, const unsigned char* plocal_syms,
2563 const Read_relocs_data::Relocs_list::iterator&);
2564
2565 // Scan the input relocations for --emit-relocs, templatized on the
2566 // type of the relocation section.
2567 template<int sh_type>
2568 void
2569 emit_relocs_scan_reltype(Symbol_table*, Layout*,
2570 const unsigned char* plocal_syms,
2571 const Read_relocs_data::Relocs_list::iterator&,
2572 Relocatable_relocs*);
2573
2574 // Scan the input relocations for --incremental.
2575 void
2576 incremental_relocs_scan(const Read_relocs_data::Relocs_list::iterator&);
2577
2578 // Scan the input relocations for --incremental, templatized on the
2579 // type of the relocation section.
2580 template<int sh_type>
2581 void
2582 incremental_relocs_scan_reltype(
2583 const Read_relocs_data::Relocs_list::iterator&);
2584
2585 void
2586 incremental_relocs_write(const Relocate_info<size, big_endian>*,
2587 unsigned int sh_type,
2588 const unsigned char* prelocs,
2589 size_t reloc_count,
2590 Output_section*,
2591 Address output_offset,
2592 Output_file*);
2593
2594 template<int sh_type>
2595 void
2596 incremental_relocs_write_reltype(const Relocate_info<size, big_endian>*,
2597 const unsigned char* prelocs,
2598 size_t reloc_count,
2599 Output_section*,
2600 Address output_offset,
2601 Output_file*);
2602
2603 // A type shared by split_stack_adjust_reltype and find_functions.
2604 typedef std::map<section_offset_type, section_size_type> Function_offsets;
2605
2606 // Check for -fsplit-stack routines calling non-split-stack routines.
2607 void
2608 split_stack_adjust(const Symbol_table*, const unsigned char* pshdrs,
2609 unsigned int sh_type, unsigned int shndx,
2610 const unsigned char* prelocs, size_t reloc_count,
2611 unsigned char* view, section_size_type view_size,
2612 Reloc_symbol_changes** reloc_map);
2613
2614 template<int sh_type>
2615 void
2616 split_stack_adjust_reltype(const Symbol_table*, const unsigned char* pshdrs,
2617 unsigned int shndx, const unsigned char* prelocs,
2618 size_t reloc_count, unsigned char* view,
2619 section_size_type view_size,
2620 Reloc_symbol_changes** reloc_map);
2621
2622 // Find all functions in a section.
2623 void
2624 find_functions(const unsigned char* pshdrs, unsigned int shndx,
2625 Function_offsets*);
2626
2627 // Write out the local symbols.
2628 void
2629 write_local_symbols(Output_file*,
2630 const Stringpool_template<char>*,
2631 const Stringpool_template<char>*,
2632 Output_symtab_xindex*,
2633 Output_symtab_xindex*,
2634 off_t);
2635
2636 // Record a mapping from discarded section SHNDX to the corresponding
2637 // kept section.
2638 void
2639 set_kept_comdat_section(unsigned int shndx, Relobj* kept_object,
2640 unsigned int kept_shndx)
2641 {
2642 Kept_comdat_section kept(kept_object, kept_shndx);
2643 this->kept_comdat_sections_.insert(std::make_pair(shndx, kept));
2644 }
2645
2646 // Find the kept section corresponding to the discarded section
2647 // SHNDX. Return true if found.
2648 bool
2649 get_kept_comdat_section(unsigned int shndx, Relobj** kept_object,
2650 unsigned int* kept_shndx) const
2651 {
2652 typename Kept_comdat_section_table::const_iterator p =
2653 this->kept_comdat_sections_.find(shndx);
2654 if (p == this->kept_comdat_sections_.end())
2655 return false;
2656 *kept_object = p->second.object;
2657 *kept_shndx = p->second.shndx;
2658 return true;
2659 }
2660
2661 // Compute final local symbol value. R_SYM is the local symbol index.
2662 // LV_IN points to a local symbol value containing the input value.
2663 // LV_OUT points to a local symbol value storing the final output value,
2664 // which must not be a merged symbol value since before calling this
2665 // method to avoid memory leak. RELOCATABLE indicates whether we are
2666 // linking a relocatable output. OUT_SECTIONS is an array of output
2667 // sections. OUT_OFFSETS is an array of offsets of the sections. SYMTAB
2668 // points to a symbol table.
2669 //
2670 // The method returns a status code at return. If the return status is
2671 // CFLV_OK, *LV_OUT contains the final value. If the return status is
2672 // CFLV_ERROR, *LV_OUT is 0. If the return status is CFLV_DISCARDED,
2673 // *LV_OUT is not modified.
2674 inline Compute_final_local_value_status
2675 compute_final_local_value_internal(unsigned int r_sym,
2676 const Symbol_value<size>* lv_in,
2677 Symbol_value<size>* lv_out,
2678 bool relocatable,
2679 const Output_sections& out_sections,
2680 const std::vector<Address>& out_offsets,
2681 const Symbol_table* symtab);
2682
2683 // The PLT offsets of local symbols.
2684 typedef Unordered_map<unsigned int, unsigned int> Local_plt_offsets;
2685
2686 // Saved information for sections whose layout was deferred.
2687 struct Deferred_layout
2688 {
2689 static const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
2690 Deferred_layout(unsigned int shndx, const char* name,
2691 const unsigned char* pshdr,
2692 unsigned int reloc_shndx, unsigned int reloc_type)
2693 : shndx_(shndx), name_(name), reloc_shndx_(reloc_shndx),
2694 reloc_type_(reloc_type)
2695 {
2696 memcpy(this->shdr_data_, pshdr, shdr_size);
2697 }
2698 unsigned int shndx_;
2699 std::string name_;
2700 unsigned int reloc_shndx_;
2701 unsigned int reloc_type_;
2702 unsigned char shdr_data_[shdr_size];
2703 };
2704
2705 // General access to the ELF file.
2706 elfcpp::Elf_file<size, big_endian, Object> elf_file_;
2707 // Type of ELF file (ET_REL or ET_EXEC). ET_EXEC files are allowed
2708 // as input files only for the --just-symbols option.
2709 int e_type_;
2710 // Index of SHT_SYMTAB section.
2711 unsigned int symtab_shndx_;
2712 // The number of local symbols.
2713 unsigned int local_symbol_count_;
2714 // The number of local symbols which go into the output file.
2715 unsigned int output_local_symbol_count_;
2716 // The number of local symbols which go into the output file's dynamic
2717 // symbol table.
2718 unsigned int output_local_dynsym_count_;
2719 // The entries in the symbol table for the external symbols.
2720 Symbols symbols_;
2721 // Number of symbols defined in object file itself.
2722 size_t defined_count_;
2723 // File offset for local symbols (relative to start of symbol table).
2724 off_t local_symbol_offset_;
2725 // File offset for local dynamic symbols (absolute).
2726 off_t local_dynsym_offset_;
2727 // Values of local symbols.
2728 Local_values local_values_;
2729 // PLT offsets for local symbols.
2730 Local_plt_offsets local_plt_offsets_;
2731 // Table mapping discarded comdat sections to corresponding kept sections.
2732 Kept_comdat_section_table kept_comdat_sections_;
2733 // Whether this object has a GNU style .eh_frame section.
2734 bool has_eh_frame_;
2735 // If this object has a GNU style .eh_frame section that is discarded in
2736 // output, record the index here. Otherwise it is -1U.
2737 unsigned int discarded_eh_frame_shndx_;
2738 // The list of sections whose layout was deferred.
2739 std::vector<Deferred_layout> deferred_layout_;
2740 // The list of relocation sections whose layout was deferred.
2741 std::vector<Deferred_layout> deferred_layout_relocs_;
2742 // For compressed debug sections, map section index to uncompressed size
2743 // and contents.
2744 Compressed_section_map* compressed_sections_;
2745 };
2746
2747 // A class to manage the list of all objects.
2748
2749 class Input_objects
2750 {
2751 public:
2752 Input_objects()
2753 : relobj_list_(), dynobj_list_(), sonames_(), cref_(NULL)
2754 { }
2755
2756 // The type of the list of input relocateable objects.
2757 typedef std::vector<Relobj*> Relobj_list;
2758 typedef Relobj_list::const_iterator Relobj_iterator;
2759
2760 // The type of the list of input dynamic objects.
2761 typedef std::vector<Dynobj*> Dynobj_list;
2762 typedef Dynobj_list::const_iterator Dynobj_iterator;
2763
2764 // Add an object to the list. Return true if all is well, or false
2765 // if this object should be ignored.
2766 bool
2767 add_object(Object*);
2768
2769 // Start processing an archive.
2770 void
2771 archive_start(Archive*);
2772
2773 // Stop processing an archive.
2774 void
2775 archive_stop(Archive*);
2776
2777 // For each dynamic object, check whether we've seen all of its
2778 // explicit dependencies.
2779 void
2780 check_dynamic_dependencies() const;
2781
2782 // Return whether an object was found in the system library
2783 // directory.
2784 bool
2785 found_in_system_library_directory(const Object*) const;
2786
2787 // Print symbol counts.
2788 void
2789 print_symbol_counts(const Symbol_table*) const;
2790
2791 // Print a cross reference table.
2792 void
2793 print_cref(const Symbol_table*, FILE*) const;
2794
2795 // Iterate over all regular objects.
2796
2797 Relobj_iterator
2798 relobj_begin() const
2799 { return this->relobj_list_.begin(); }
2800
2801 Relobj_iterator
2802 relobj_end() const
2803 { return this->relobj_list_.end(); }
2804
2805 // Iterate over all dynamic objects.
2806
2807 Dynobj_iterator
2808 dynobj_begin() const
2809 { return this->dynobj_list_.begin(); }
2810
2811 Dynobj_iterator
2812 dynobj_end() const
2813 { return this->dynobj_list_.end(); }
2814
2815 // Return whether we have seen any dynamic objects.
2816 bool
2817 any_dynamic() const
2818 { return !this->dynobj_list_.empty(); }
2819
2820 // Return the number of non dynamic objects.
2821 int
2822 number_of_relobjs() const
2823 { return this->relobj_list_.size(); }
2824
2825 // Return the number of input objects.
2826 int
2827 number_of_input_objects() const
2828 { return this->relobj_list_.size() + this->dynobj_list_.size(); }
2829
2830 private:
2831 Input_objects(const Input_objects&);
2832 Input_objects& operator=(const Input_objects&);
2833
2834 // The list of ordinary objects included in the link.
2835 Relobj_list relobj_list_;
2836 // The list of dynamic objects included in the link.
2837 Dynobj_list dynobj_list_;
2838 // SONAMEs that we have seen.
2839 Unordered_set<std::string> sonames_;
2840 // Manage cross-references if requested.
2841 Cref* cref_;
2842 };
2843
2844 // Some of the information we pass to the relocation routines. We
2845 // group this together to avoid passing a dozen different arguments.
2846
2847 template<int size, bool big_endian>
2848 struct Relocate_info
2849 {
2850 // Symbol table.
2851 const Symbol_table* symtab;
2852 // Layout.
2853 const Layout* layout;
2854 // Object being relocated.
2855 Sized_relobj_file<size, big_endian>* object;
2856 // Section index of relocation section.
2857 unsigned int reloc_shndx;
2858 // Section header of relocation section.
2859 const unsigned char* reloc_shdr;
2860 // Section index of section being relocated.
2861 unsigned int data_shndx;
2862 // Section header of data section.
2863 const unsigned char* data_shdr;
2864
2865 // Return a string showing the location of a relocation. This is
2866 // only used for error messages.
2867 std::string
2868 location(size_t relnum, off_t reloffset) const;
2869 };
2870
2871 // This is used to represent a section in an object and is used as the
2872 // key type for various section maps.
2873 typedef std::pair<Object*, unsigned int> Section_id;
2874
2875 // This is similar to Section_id but is used when the section
2876 // pointers are const.
2877 typedef std::pair<const Object*, unsigned int> Const_section_id;
2878
2879 // The hash value is based on the address of an object in memory during
2880 // linking. It is okay to use this for looking up sections but never use
2881 // this in an unordered container that we want to traverse in a repeatable
2882 // manner.
2883
2884 struct Section_id_hash
2885 {
2886 size_t operator()(const Section_id& loc) const
2887 { return reinterpret_cast<uintptr_t>(loc.first) ^ loc.second; }
2888 };
2889
2890 struct Const_section_id_hash
2891 {
2892 size_t operator()(const Const_section_id& loc) const
2893 { return reinterpret_cast<uintptr_t>(loc.first) ^ loc.second; }
2894 };
2895
2896 // Return whether INPUT_FILE contains an ELF object start at file
2897 // offset OFFSET. This sets *START to point to a view of the start of
2898 // the file. It sets *READ_SIZE to the number of bytes in the view.
2899
2900 extern bool
2901 is_elf_object(Input_file* input_file, off_t offset,
2902 const unsigned char** start, int* read_size);
2903
2904 // Return an Object appropriate for the input file. P is BYTES long,
2905 // and holds the ELF header. If PUNCONFIGURED is not NULL, then if
2906 // this sees an object the linker is not configured to support, it
2907 // sets *PUNCONFIGURED to true and returns NULL without giving an
2908 // error message.
2909
2910 extern Object*
2911 make_elf_object(const std::string& name, Input_file*,
2912 off_t offset, const unsigned char* p,
2913 section_offset_type bytes, bool* punconfigured);
2914
2915 } // end namespace gold
2916
2917 #endif // !defined(GOLD_OBJECT_H)
This page took 0.09374 seconds and 4 git commands to generate.