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