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