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