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