OSDN Git Service

439431819469b7bc54d7a235be52e407039ee3ed
[pf3gnuchains/pf3gnuchains3x.git] / gold / object.h
1 // object.h -- support for an object file for linking in gold  -*- C++ -*-
2
3 // Copyright 2006, 2007, 2008, 2009 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
34 namespace gold
35 {
36
37 class General_options;
38 class Task;
39 class Cref;
40 class Archive;
41 class Layout;
42 class Output_section;
43 class Output_file;
44 class Output_symtab_xindex;
45 class Pluginobj;
46 class Dynobj;
47 class Object_merge_map;
48 class Relocatable_relocs;
49 class Symbols_data;
50
51 template<typename Stringpool_char>
52 class Stringpool_template;
53
54 // Data to pass from read_symbols() to add_symbols().
55
56 struct Read_symbols_data
57 {
58   // Section headers.
59   File_view* section_headers;
60   // Section names.
61   File_view* section_names;
62   // Size of section name data in bytes.
63   section_size_type section_names_size;
64   // Symbol data.
65   File_view* symbols;
66   // Size of symbol data in bytes.
67   section_size_type symbols_size;
68   // Offset of external symbols within symbol data.  This structure
69   // sometimes contains only external symbols, in which case this will
70   // be zero.  Sometimes it contains all symbols.
71   section_offset_type external_symbols_offset;
72   // Symbol names.
73   File_view* symbol_names;
74   // Size of symbol name data in bytes.
75   section_size_type symbol_names_size;
76
77   // Version information.  This is only used on dynamic objects.
78   // Version symbol data (from SHT_GNU_versym section).
79   File_view* versym;
80   section_size_type versym_size;
81   // Version definition data (from SHT_GNU_verdef section).
82   File_view* verdef;
83   section_size_type verdef_size;
84   unsigned int verdef_info;
85   // Needed version data  (from SHT_GNU_verneed section).
86   File_view* verneed;
87   section_size_type verneed_size;
88   unsigned int verneed_info;
89 };
90
91 // Information used to print error messages.
92
93 struct Symbol_location_info
94 {
95   std::string source_file;
96   std::string enclosing_symbol_name;
97   int line_number;
98 };
99
100 // Data about a single relocation section.  This is read in
101 // read_relocs and processed in scan_relocs.
102
103 struct Section_relocs
104 {
105   // Index of reloc section.
106   unsigned int reloc_shndx;
107   // Index of section that relocs apply to.
108   unsigned int data_shndx;
109   // Contents of reloc section.
110   File_view* contents;
111   // Reloc section type.
112   unsigned int sh_type;
113   // Number of reloc entries.
114   size_t reloc_count;
115   // Output section.
116   Output_section* output_section;
117   // Whether this section has special handling for offsets.
118   bool needs_special_offset_handling;
119   // Whether the data section is allocated (has the SHF_ALLOC flag set).
120   bool is_data_section_allocated;
121 };
122
123 // Relocations in an object file.  This is read in read_relocs and
124 // processed in scan_relocs.
125
126 struct Read_relocs_data
127 {
128   typedef std::vector<Section_relocs> Relocs_list;
129   // The relocations.
130   Relocs_list relocs;
131   // The local symbols.
132   File_view* local_symbols;
133 };
134
135 // The Xindex class manages section indexes for objects with more than
136 // 0xff00 sections.
137
138 class Xindex
139 {
140  public:
141   Xindex(int large_shndx_offset)
142     : large_shndx_offset_(large_shndx_offset), symtab_xindex_()
143   { }
144
145   // Initialize the symtab_xindex_ array, given the object and the
146   // section index of the symbol table to use.
147   template<int size, bool big_endian>
148   void
149   initialize_symtab_xindex(Object*, unsigned int symtab_shndx);
150
151   // Read in the symtab_xindex_ array, given its section index.
152   // PSHDRS may optionally point to the section headers.
153   template<int size, bool big_endian>
154   void
155   read_symtab_xindex(Object*, unsigned int xindex_shndx,
156                      const unsigned char* pshdrs);
157
158   // Symbol SYMNDX in OBJECT has a section of SHN_XINDEX; return the
159   // real section index.
160   unsigned int
161   sym_xindex_to_shndx(Object* object, unsigned int symndx);
162
163  private:
164   // The type of the array giving the real section index for symbols
165   // whose st_shndx field holds SHN_XINDEX.
166   typedef std::vector<unsigned int> Symtab_xindex;
167
168   // Adjust a section index if necessary.  This should only be called
169   // for ordinary section indexes.
170   unsigned int
171   adjust_shndx(unsigned int shndx)
172   {
173     if (shndx >= elfcpp::SHN_LORESERVE)
174       shndx += this->large_shndx_offset_;
175     return shndx;
176   }
177
178   // Adjust to apply to large section indexes.
179   int large_shndx_offset_;
180   // The data from the SHT_SYMTAB_SHNDX section.
181   Symtab_xindex symtab_xindex_;
182 };
183
184 // Object is an abstract base class which represents either a 32-bit
185 // or a 64-bit input object.  This can be a regular object file
186 // (ET_REL) or a shared object (ET_DYN).
187
188 class Object
189 {
190  public:
191   // NAME is the name of the object as we would report it to the user
192   // (e.g., libfoo.a(bar.o) if this is in an archive.  INPUT_FILE is
193   // used to read the file.  OFFSET is the offset within the input
194   // file--0 for a .o or .so file, something else for a .a file.
195   Object(const std::string& name, Input_file* input_file, bool is_dynamic,
196          off_t offset = 0)
197     : name_(name), input_file_(input_file), offset_(offset), shnum_(-1U),
198       is_dynamic_(is_dynamic), target_(NULL), xindex_(NULL), no_export_(false)
199   { input_file->file().add_object(); }
200
201   virtual ~Object()
202   { this->input_file_->file().remove_object(); }
203
204   // Return the name of the object as we would report it to the tuser.
205   const std::string&
206   name() const
207   { return this->name_; }
208
209   // Get the offset into the file.
210   off_t
211   offset() const
212   { return this->offset_; }
213
214   // Return whether this is a dynamic object.
215   bool
216   is_dynamic() const
217   { return this->is_dynamic_; }
218
219   // Returns NULL for Objects that are not plugin objects.  This method
220   // is overridden in the Pluginobj class.
221   Pluginobj*
222   pluginobj()
223   { return this->do_pluginobj(); }
224
225   // Return the target structure associated with this object.
226   Target*
227   target() const
228   { return this->target_; }
229
230   // Get the file.  We pass on const-ness.
231   Input_file*
232   input_file()
233   { return this->input_file_; }
234
235   const Input_file*
236   input_file() const
237   { return this->input_file_; }
238
239   // Lock the underlying file.
240   void
241   lock(const Task* t)
242   { this->input_file()->file().lock(t); }
243
244   // Unlock the underlying file.
245   void
246   unlock(const Task* t)
247   { this->input_file()->file().unlock(t); }
248
249   // Return whether the underlying file is locked.
250   bool
251   is_locked() const
252   { return this->input_file()->file().is_locked(); }
253
254   // Return the token, so that the task can be queued.
255   Task_token*
256   token()
257   { return this->input_file()->file().token(); }
258
259   // Release the underlying file.
260   void
261   release()
262   { this->input_file_->file().release(); }
263
264   // Return whether we should just read symbols from this file.
265   bool
266   just_symbols() const
267   { return this->input_file()->just_symbols(); }
268
269   // Return the sized target structure associated with this object.
270   // This is like the target method but it returns a pointer of
271   // appropriate checked type.
272   template<int size, bool big_endian>
273   Sized_target<size, big_endian>*
274   sized_target() const;
275
276   // Get the number of sections.
277   unsigned int
278   shnum() const
279   { return this->shnum_; }
280
281   // Return a view of the contents of a section.  Set *PLEN to the
282   // size.  CACHE is a hint as in File_read::get_view.
283   const unsigned char*
284   section_contents(unsigned int shndx, section_size_type* plen, bool cache);
285
286   // Adjust a symbol's section index as needed.  SYMNDX is the index
287   // of the symbol and SHNDX is the symbol's section from
288   // get_st_shndx.  This returns the section index.  It sets
289   // *IS_ORDINARY to indicate whether this is a normal section index,
290   // rather than a special code between SHN_LORESERVE and
291   // SHN_HIRESERVE.
292   unsigned int
293   adjust_sym_shndx(unsigned int symndx, unsigned int shndx, bool* is_ordinary)
294   {
295     if (shndx < elfcpp::SHN_LORESERVE)
296       *is_ordinary = true;
297     else if (shndx == elfcpp::SHN_XINDEX)
298       {
299         if (this->xindex_ == NULL)
300           this->xindex_ = this->do_initialize_xindex();
301         shndx = this->xindex_->sym_xindex_to_shndx(this, symndx);
302         *is_ordinary = true;
303       }
304     else
305       *is_ordinary = false;
306     return shndx;
307   }
308
309   // Return the size of a section given a section index.
310   uint64_t
311   section_size(unsigned int shndx)
312   { return this->do_section_size(shndx); }
313
314   // Return the name of a section given a section index.
315   std::string
316   section_name(unsigned int shndx)
317   { return this->do_section_name(shndx); }
318
319   // Return the section flags given a section index.
320   uint64_t
321   section_flags(unsigned int shndx)
322   { return this->do_section_flags(shndx); }
323
324   // Return the section entsize given a section index.
325   uint64_t
326   section_entsize(unsigned int shndx)
327   { return this->do_section_entsize(shndx); }
328
329   // Return the section address given a section index.
330   uint64_t
331   section_address(unsigned int shndx)
332   { return this->do_section_address(shndx); }
333
334   // Return the section type given a section index.
335   unsigned int
336   section_type(unsigned int shndx)
337   { return this->do_section_type(shndx); }
338
339   // Return the section link field given a section index.
340   unsigned int
341   section_link(unsigned int shndx)
342   { return this->do_section_link(shndx); }
343
344   // Return the section info field given a section index.
345   unsigned int
346   section_info(unsigned int shndx)
347   { return this->do_section_info(shndx); }
348
349   // Return the required section alignment given a section index.
350   uint64_t
351   section_addralign(unsigned int shndx)
352   { return this->do_section_addralign(shndx); }
353
354   // Read the symbol information.
355   void
356   read_symbols(Read_symbols_data* sd)
357   { return this->do_read_symbols(sd); }
358
359   // Pass sections which should be included in the link to the Layout
360   // object, and record where the sections go in the output file.
361   void
362   layout(Symbol_table* symtab, Layout* layout, Read_symbols_data* sd)
363   { this->do_layout(symtab, layout, sd); }
364
365   // Add symbol information to the global symbol table.
366   void
367   add_symbols(Symbol_table* symtab, Read_symbols_data* sd, Layout *layout)
368   { this->do_add_symbols(symtab, sd, layout); }
369
370   // Functions and types for the elfcpp::Elf_file interface.  This
371   // permit us to use Object as the File template parameter for
372   // elfcpp::Elf_file.
373
374   // The View class is returned by view.  It must support a single
375   // method, data().  This is trivial, because get_view does what we
376   // need.
377   class View
378   {
379    public:
380     View(const unsigned char* p)
381       : p_(p)
382     { }
383
384     const unsigned char*
385     data() const
386     { return this->p_; }
387
388    private:
389     const unsigned char* p_;
390   };
391
392   // Return a View.
393   View
394   view(off_t file_offset, section_size_type data_size)
395   { return View(this->get_view(file_offset, data_size, true, true)); }
396
397   // Report an error.
398   void
399   error(const char* format, ...) const ATTRIBUTE_PRINTF_2;
400
401   // A location in the file.
402   struct Location
403   {
404     off_t file_offset;
405     off_t data_size;
406
407     Location(off_t fo, section_size_type ds)
408       : file_offset(fo), data_size(ds)
409     { }
410   };
411
412   // Get a View given a Location.
413   View view(Location loc)
414   { return View(this->get_view(loc.file_offset, loc.data_size, true, true)); }
415
416   // Get a view into the underlying file.
417   const unsigned char*
418   get_view(off_t start, section_size_type size, bool aligned, bool cache)
419   {
420     return this->input_file()->file().get_view(this->offset_, start, size,
421                                                aligned, cache);
422   }
423
424   // Get a lasting view into the underlying file.
425   File_view*
426   get_lasting_view(off_t start, section_size_type size, bool aligned,
427                    bool cache)
428   {
429     return this->input_file()->file().get_lasting_view(this->offset_, start,
430                                                        size, aligned, cache);
431   }
432
433   // Read data from the underlying file.
434   void
435   read(off_t start, section_size_type size, void* p)
436   { this->input_file()->file().read(start + this->offset_, size, p); }
437
438   // Read multiple data from the underlying file.
439   void
440   read_multiple(const File_read::Read_multiple& rm)
441   { this->input_file()->file().read_multiple(this->offset_, rm); }
442
443   // Stop caching views in the underlying file.
444   void
445   clear_view_cache_marks()
446   { this->input_file()->file().clear_view_cache_marks(); }
447
448   // Get the number of global symbols defined by this object, and the
449   // number of the symbols whose final definition came from this
450   // object.
451   void
452   get_global_symbol_counts(const Symbol_table* symtab, size_t* defined,
453                            size_t* used) const
454   { this->do_get_global_symbol_counts(symtab, defined, used); }
455
456   // Set the target.
457   void
458   set_target(Target* target)
459   { this->target_ = target; }
460
461   // Return whether this object was found in a system directory.
462   bool
463   is_in_system_directory() const
464   { return this->input_file()->is_in_system_directory(); }
465
466   // Return whether we found this object by searching a directory.
467   bool
468   searched_for() const
469   { return this->input_file()->will_search_for(); }
470
471   bool
472   no_export() const
473   { return this->no_export_; }
474
475   void
476   set_no_export(bool value)
477   { this->no_export_ = value; }
478
479  protected:
480   // Returns NULL for Objects that are not plugin objects.  This method
481   // is overridden in the Pluginobj class.
482   virtual Pluginobj*
483   do_pluginobj()
484   { return NULL; }
485
486   // Read the symbols--implemented by child class.
487   virtual void
488   do_read_symbols(Read_symbols_data*) = 0;
489
490   // Lay out sections--implemented by child class.
491   virtual void
492   do_layout(Symbol_table*, Layout*, Read_symbols_data*) = 0;
493
494   // Add symbol information to the global symbol table--implemented by
495   // child class.
496   virtual void
497   do_add_symbols(Symbol_table*, Read_symbols_data*, Layout*) = 0;
498
499   // Return the location of the contents of a section.  Implemented by
500   // child class.
501   virtual Location
502   do_section_contents(unsigned int shndx) = 0;
503
504   // Get the size of a section--implemented by child class.
505   virtual uint64_t
506   do_section_size(unsigned int shndx) = 0;
507
508   // Get the name of a section--implemented by child class.
509   virtual std::string
510   do_section_name(unsigned int shndx) = 0;
511
512   // Get section flags--implemented by child class.
513   virtual uint64_t
514   do_section_flags(unsigned int shndx) = 0;
515
516   // Get section entsize--implemented by child class.
517   virtual uint64_t
518   do_section_entsize(unsigned int shndx) = 0;
519
520   // Get section address--implemented by child class.
521   virtual uint64_t
522   do_section_address(unsigned int shndx) = 0;
523
524   // Get section type--implemented by child class.
525   virtual unsigned int
526   do_section_type(unsigned int shndx) = 0;
527
528   // Get section link field--implemented by child class.
529   virtual unsigned int
530   do_section_link(unsigned int shndx) = 0;
531
532   // Get section info field--implemented by child class.
533   virtual unsigned int
534   do_section_info(unsigned int shndx) = 0;
535
536   // Get section alignment--implemented by child class.
537   virtual uint64_t
538   do_section_addralign(unsigned int shndx) = 0;
539
540   // Return the Xindex structure to use.
541   virtual Xindex*
542   do_initialize_xindex() = 0;
543
544   // Implement get_global_symbol_counts--implemented by child class.
545   virtual void
546   do_get_global_symbol_counts(const Symbol_table*, size_t*, size_t*) const = 0;
547
548   // Set the number of sections.
549   void
550   set_shnum(int shnum)
551   { this->shnum_ = shnum; }
552
553   // Functions used by both Sized_relobj and Sized_dynobj.
554
555   // Read the section data into a Read_symbols_data object.
556   template<int size, bool big_endian>
557   void
558   read_section_data(elfcpp::Elf_file<size, big_endian, Object>*,
559                     Read_symbols_data*);
560
561   // Let the child class initialize the xindex object directly.
562   void
563   set_xindex(Xindex* xindex)
564   {
565     gold_assert(this->xindex_ == NULL);
566     this->xindex_ = xindex;
567   }
568
569   // If NAME is the name of a special .gnu.warning section, arrange
570   // for the warning to be issued.  SHNDX is the section index.
571   // Return whether it is a warning section.
572   bool
573   handle_gnu_warning_section(const char* name, unsigned int shndx,
574                              Symbol_table*);
575
576  private:
577   // This class may not be copied.
578   Object(const Object&);
579   Object& operator=(const Object&);
580
581   // Name of object as printed to user.
582   std::string name_;
583   // For reading the file.
584   Input_file* input_file_;
585   // Offset within the file--0 for an object file, non-0 for an
586   // archive.
587   off_t offset_;
588   // Number of input sections.
589   unsigned int shnum_;
590   // Whether this is a dynamic object.
591   bool is_dynamic_;
592   // Target functions--may be NULL if the target is not known.
593   Target* target_;
594   // Many sections for objects with more than SHN_LORESERVE sections.
595   Xindex* xindex_;
596   // True if exclude this object from automatic symbol export.
597   // This is used only for archive objects.
598   bool no_export_;
599 };
600
601 // Implement sized_target inline for efficiency.  This approach breaks
602 // static type checking, but is made safe using asserts.
603
604 template<int size, bool big_endian>
605 inline Sized_target<size, big_endian>*
606 Object::sized_target() const
607 {
608   gold_assert(this->target_->get_size() == size);
609   gold_assert(this->target_->is_big_endian() ? big_endian : !big_endian);
610   return static_cast<Sized_target<size, big_endian>*>(this->target_);
611 }
612
613 // A regular object (ET_REL).  This is an abstract base class itself.
614 // The implementation is the template class Sized_relobj.
615
616 class Relobj : public Object
617 {
618  public:
619   Relobj(const std::string& name, Input_file* input_file, off_t offset = 0)
620     : Object(name, input_file, false, offset),
621       output_sections_(),
622       map_to_relocatable_relocs_(NULL),
623       object_merge_map_(NULL),
624       relocs_must_follow_section_writes_(false),
625       sd_(NULL)
626   { }
627
628   // During garbage collection, the Read_symbols_data pass for 
629   // each object is stored as layout needs to be done after 
630   // reloc processing.
631   Symbols_data* 
632   get_symbols_data()
633   { return this->sd_; }
634
635   // Decides which section names have to be included in the worklist
636   // as roots.
637   bool
638   is_section_name_included(const char *name);
639  
640   void
641   copy_symbols_data(Symbols_data* gc_sd, Read_symbols_data* sd,
642                     unsigned int section_header_size);
643
644   void
645   set_symbols_data(Symbols_data* sd)
646   { this->sd_ = sd; }
647
648   // During garbage collection, the Read_relocs pass for all objects 
649   // is done before scanning the relocs.  In that case, this->rd_ is
650   // used to store the information from Read_relocs for each object.
651   // This data is also used to compute the list of relevant sections.
652   Read_relocs_data*
653   get_relocs_data()
654   { return this->rd_; }
655
656   void
657   set_relocs_data(Read_relocs_data* rd)
658   { this->rd_ = rd; }
659
660   virtual bool
661   is_output_section_offset_invalid(unsigned int shndx) const = 0;
662
663   // Read the relocs.
664   void
665   read_relocs(Read_relocs_data* rd)
666   { return this->do_read_relocs(rd); }
667
668   // Process the relocs, during garbage collection only.
669   void
670   gc_process_relocs(const General_options& options, Symbol_table* symtab,
671                     Layout* layout, Read_relocs_data* rd)
672   { return this->do_gc_process_relocs(options, symtab, layout, rd); }
673
674   // Scan the relocs and adjust the symbol table.
675   void
676   scan_relocs(const General_options& options, Symbol_table* symtab,
677               Layout* layout, Read_relocs_data* rd)
678   { return this->do_scan_relocs(options, symtab, layout, rd); }
679
680   // The number of local symbols in the input symbol table.
681   virtual unsigned int
682   local_symbol_count() const
683   { return this->do_local_symbol_count(); }
684
685   // Initial local symbol processing: count the number of local symbols
686   // in the output symbol table and dynamic symbol table; add local symbol
687   // names to *POOL and *DYNPOOL.
688   void
689   count_local_symbols(Stringpool_template<char>* pool,
690                       Stringpool_template<char>* dynpool)
691   { return this->do_count_local_symbols(pool, dynpool); }
692
693   // Set the values of the local symbols, set the output symbol table
694   // indexes for the local variables, and set the offset where local
695   // symbol information will be stored. Returns the new local symbol index.
696   unsigned int
697   finalize_local_symbols(unsigned int index, off_t off, Symbol_table* symtab)
698   { return this->do_finalize_local_symbols(index, off, symtab); }
699
700   // Set the output dynamic symbol table indexes for the local variables.
701   unsigned int
702   set_local_dynsym_indexes(unsigned int index)
703   { return this->do_set_local_dynsym_indexes(index); }
704
705   // Set the offset where local dynamic symbol information will be stored.
706   unsigned int
707   set_local_dynsym_offset(off_t off)
708   { return this->do_set_local_dynsym_offset(off); }
709
710   // Relocate the input sections and write out the local symbols.
711   void
712   relocate(const General_options& options, const Symbol_table* symtab,
713            const Layout* layout, Output_file* of)
714   { return this->do_relocate(options, symtab, layout, of); }
715
716   // Return whether an input section is being included in the link.
717   bool
718   is_section_included(unsigned int shndx) const
719   {
720     gold_assert(shndx < this->output_sections_.size());
721     return this->output_sections_[shndx] != NULL;
722   }
723
724   // Given a section index, return the corresponding Output_section.
725   // The return value will be NULL if the section is not included in
726   // the link.
727   Output_section*
728   output_section(unsigned int shndx) const
729   {
730     gold_assert(shndx < this->output_sections_.size());
731     return this->output_sections_[shndx];
732   }
733
734   // Given a section index, return the offset in the Output_section.
735   // The return value will be -1U if the section is specially mapped,
736   // such as a merge section.
737   uint64_t
738   output_section_offset(unsigned int shndx) const
739   { return this->do_output_section_offset(shndx); }
740
741   // Set the offset of an input section within its output section.
742   void
743   set_section_offset(unsigned int shndx, uint64_t off)
744   { this->do_set_section_offset(shndx, off); }
745
746   // Return true if we need to wait for output sections to be written
747   // before we can apply relocations.  This is true if the object has
748   // any relocations for sections which require special handling, such
749   // as the exception frame section.
750   bool
751   relocs_must_follow_section_writes() const
752   { return this->relocs_must_follow_section_writes_; }
753
754   // Return the object merge map.
755   Object_merge_map*
756   merge_map() const
757   { return this->object_merge_map_; }
758
759   // Set the object merge map.
760   void
761   set_merge_map(Object_merge_map* object_merge_map)
762   {
763     gold_assert(this->object_merge_map_ == NULL);
764     this->object_merge_map_ = object_merge_map;
765   }
766
767   // Record the relocatable reloc info for an input reloc section.
768   void
769   set_relocatable_relocs(unsigned int reloc_shndx, Relocatable_relocs* rr)
770   {
771     gold_assert(reloc_shndx < this->shnum());
772     (*this->map_to_relocatable_relocs_)[reloc_shndx] = rr;
773   }
774
775   // Get the relocatable reloc info for an input reloc section.
776   Relocatable_relocs*
777   relocatable_relocs(unsigned int reloc_shndx)
778   {
779     gold_assert(reloc_shndx < this->shnum());
780     return (*this->map_to_relocatable_relocs_)[reloc_shndx];
781   }
782
783   // Layout sections whose layout was deferred while waiting for
784   // input files from a plugin.
785   void
786   layout_deferred_sections(Layout* layout)
787   { this->do_layout_deferred_sections(layout); }
788
789  protected:
790   // The output section to be used for each input section, indexed by
791   // the input section number.  The output section is NULL if the
792   // input section is to be discarded.
793   typedef std::vector<Output_section*> Output_sections;
794
795   // Read the relocs--implemented by child class.
796   virtual void
797   do_read_relocs(Read_relocs_data*) = 0;
798
799   // Process the relocs--implemented by child class.
800   virtual void
801   do_gc_process_relocs(const General_options&, Symbol_table*, Layout*,
802                  Read_relocs_data*) = 0;
803
804   // Scan the relocs--implemented by child class.
805   virtual void
806   do_scan_relocs(const General_options&, Symbol_table*, Layout*,
807                  Read_relocs_data*) = 0;
808
809   // Return the number of local symbols--implemented by child class.
810   virtual unsigned int
811   do_local_symbol_count() const = 0;
812
813   // Count local symbols--implemented by child class.
814   virtual void
815   do_count_local_symbols(Stringpool_template<char>*,
816                          Stringpool_template<char>*) = 0;
817
818   // Finalize the local symbols.  Set the output symbol table indexes
819   // for the local variables, and set the offset where local symbol
820   // information will be stored.
821   virtual unsigned int
822   do_finalize_local_symbols(unsigned int, off_t, Symbol_table*) = 0;
823
824   // Set the output dynamic symbol table indexes for the local variables.
825   virtual unsigned int
826   do_set_local_dynsym_indexes(unsigned int) = 0;
827
828   // Set the offset where local dynamic symbol information will be stored.
829   virtual unsigned int
830   do_set_local_dynsym_offset(off_t) = 0;
831
832   // Relocate the input sections and write out the local
833   // symbols--implemented by child class.
834   virtual void
835   do_relocate(const General_options& options, const Symbol_table* symtab,
836               const Layout*, Output_file* of) = 0;
837
838   // Get the offset of a section--implemented by child class.
839   virtual uint64_t
840   do_output_section_offset(unsigned int shndx) const = 0;
841
842   // Set the offset of a section--implemented by child class.
843   virtual void
844   do_set_section_offset(unsigned int shndx, uint64_t off) = 0;
845
846   // Layout sections whose layout was deferred while waiting for
847   // input files from a plugin--implemented by child class.
848   virtual void
849   do_layout_deferred_sections(Layout*) = 0;
850
851   // Return the vector mapping input sections to output sections.
852   Output_sections&
853   output_sections()
854   { return this->output_sections_; }
855
856   const Output_sections&
857   output_sections() const
858   { return this->output_sections_; }
859
860   // Set the size of the relocatable relocs array.
861   void
862   size_relocatable_relocs()
863   {
864     this->map_to_relocatable_relocs_ =
865       new std::vector<Relocatable_relocs*>(this->shnum());
866   }
867
868   // Record that we must wait for the output sections to be written
869   // before applying relocations.
870   void
871   set_relocs_must_follow_section_writes()
872   { this->relocs_must_follow_section_writes_ = true; }
873
874  private:
875   // Mapping from input sections to output section.
876   Output_sections output_sections_;
877   // Mapping from input section index to the information recorded for
878   // the relocations.  This is only used for a relocatable link.
879   std::vector<Relocatable_relocs*>* map_to_relocatable_relocs_;
880   // Mappings for merge sections.  This is managed by the code in the
881   // Merge_map class.
882   Object_merge_map* object_merge_map_;
883   // Whether we need to wait for output sections to be written before
884   // we can apply relocations.
885   bool relocs_must_follow_section_writes_;
886   // Used to store the relocs data computed by the Read_relocs pass. 
887   // Used during garbage collection of unused sections.
888   Read_relocs_data* rd_;
889   // Used to store the symbols data computed by the Read_symbols pass.
890   // Again used during garbage collection when laying out referenced
891   // sections.
892   gold::Symbols_data *sd_;
893 };
894
895 // This class is used to handle relocations against a section symbol
896 // in an SHF_MERGE section.  For such a symbol, we need to know the
897 // addend of the relocation before we can determine the final value.
898 // The addend gives us the location in the input section, and we can
899 // determine how it is mapped to the output section.  For a
900 // non-section symbol, we apply the addend to the final value of the
901 // symbol; that is done in finalize_local_symbols, and does not use
902 // this class.
903
904 template<int size>
905 class Merged_symbol_value
906 {
907  public:
908   typedef typename elfcpp::Elf_types<size>::Elf_Addr Value;
909
910   // We use a hash table to map offsets in the input section to output
911   // addresses.
912   typedef Unordered_map<section_offset_type, Value> Output_addresses;
913
914   Merged_symbol_value(Value input_value, Value output_start_address)
915     : input_value_(input_value), output_start_address_(output_start_address),
916       output_addresses_()
917   { }
918
919   // Initialize the hash table.
920   void
921   initialize_input_to_output_map(const Relobj*, unsigned int input_shndx);
922
923   // Release the hash table to save space.
924   void
925   free_input_to_output_map()
926   { this->output_addresses_.clear(); }
927
928   // Get the output value corresponding to an addend.  The object and
929   // input section index are passed in because the caller will have
930   // them; otherwise we could store them here.
931   Value
932   value(const Relobj* object, unsigned int input_shndx, Value addend) const
933   {
934     // This is a relocation against a section symbol.  ADDEND is the
935     // offset in the section.  The result should be the start of some
936     // merge area.  If the object file wants something else, it should
937     // use a regular symbol rather than a section symbol.
938     // Unfortunately, PR 6658 shows a case in which the object file
939     // refers to the section symbol, but uses a negative ADDEND to
940     // compensate for a PC relative reloc.  We can't handle the
941     // general case.  However, we can handle the special case of a
942     // negative addend, by assuming that it refers to the start of the
943     // section.  Of course, that means that we have to guess when
944     // ADDEND is negative.  It is normal to see a 32-bit value here
945     // even when the template parameter size is 64, as 64-bit object
946     // file formats have 32-bit relocations.  We know this is a merge
947     // section, so we know it has to fit into memory.  So we assume
948     // that we won't see a value larger than a large 32-bit unsigned
949     // value.  This will break objects with very very large merge
950     // sections; they probably break in other ways anyhow.
951     Value input_offset = this->input_value_;
952     if (addend < 0xffffff00)
953       {
954         input_offset += addend;
955         addend = 0;
956       }
957     typename Output_addresses::const_iterator p =
958       this->output_addresses_.find(input_offset);
959     if (p != this->output_addresses_.end())
960       return p->second + addend;
961
962     return (this->value_from_output_section(object, input_shndx, input_offset)
963             + addend);
964   }
965
966  private:
967   // Get the output value for an input offset if we couldn't find it
968   // in the hash table.
969   Value
970   value_from_output_section(const Relobj*, unsigned int input_shndx,
971                             Value input_offset) const;
972
973   // The value of the section symbol in the input file.  This is
974   // normally zero, but could in principle be something else.
975   Value input_value_;
976   // The start address of this merged section in the output file.
977   Value output_start_address_;
978   // A hash table which maps offsets in the input section to output
979   // addresses.  This only maps specific offsets, not all offsets.
980   Output_addresses output_addresses_;
981 };
982
983 // This POD class is holds the value of a symbol.  This is used for
984 // local symbols, and for all symbols during relocation processing.
985 // For special sections, such as SHF_MERGE sections, this calls a
986 // function to get the final symbol value.
987
988 template<int size>
989 class Symbol_value
990 {
991  public:
992   typedef typename elfcpp::Elf_types<size>::Elf_Addr Value;
993
994   Symbol_value()
995     : output_symtab_index_(0), output_dynsym_index_(-1U), input_shndx_(0),
996       is_ordinary_shndx_(false), is_section_symbol_(false),
997       is_tls_symbol_(false), has_output_value_(true)
998   { this->u_.value = 0; }
999
1000   // Get the value of this symbol.  OBJECT is the object in which this
1001   // symbol is defined, and ADDEND is an addend to add to the value.
1002   template<bool big_endian>
1003   Value
1004   value(const Sized_relobj<size, big_endian>* object, Value addend) const
1005   {
1006     if (this->has_output_value_)
1007       return this->u_.value + addend;
1008     else
1009       {
1010         gold_assert(this->is_ordinary_shndx_);
1011         return this->u_.merged_symbol_value->value(object, this->input_shndx_,
1012                                                    addend);
1013       }
1014   }
1015
1016   // Set the value of this symbol in the output symbol table.
1017   void
1018   set_output_value(Value value)
1019   { this->u_.value = value; }
1020
1021   // For a section symbol in a merged section, we need more
1022   // information.
1023   void
1024   set_merged_symbol_value(Merged_symbol_value<size>* msv)
1025   {
1026     gold_assert(this->is_section_symbol_);
1027     this->has_output_value_ = false;
1028     this->u_.merged_symbol_value = msv;
1029   }
1030
1031   // Initialize the input to output map for a section symbol in a
1032   // merged section.  We also initialize the value of a non-section
1033   // symbol in a merged section.
1034   void
1035   initialize_input_to_output_map(const Relobj* object)
1036   {
1037     if (!this->has_output_value_)
1038       {
1039         gold_assert(this->is_section_symbol_ && this->is_ordinary_shndx_);
1040         Merged_symbol_value<size>* msv = this->u_.merged_symbol_value;
1041         msv->initialize_input_to_output_map(object, this->input_shndx_);
1042       }
1043   }
1044
1045   // Free the input to output map for a section symbol in a merged
1046   // section.
1047   void
1048   free_input_to_output_map()
1049   {
1050     if (!this->has_output_value_)
1051       this->u_.merged_symbol_value->free_input_to_output_map();
1052   }
1053
1054   // Set the value of the symbol from the input file.  This is only
1055   // called by count_local_symbols, to communicate the value to
1056   // finalize_local_symbols.
1057   void
1058   set_input_value(Value value)
1059   { this->u_.value = value; }
1060
1061   // Return the input value.  This is only called by
1062   // finalize_local_symbols and (in special cases) relocate_section.
1063   Value
1064   input_value() const
1065   { return this->u_.value; }
1066
1067   // Return whether this symbol should go into the output symbol
1068   // table.
1069   bool
1070   needs_output_symtab_entry() const
1071   { return this->output_symtab_index_ != -1U; }
1072
1073   // Return the index in the output symbol table.
1074   unsigned int
1075   output_symtab_index() const
1076   {
1077     gold_assert(this->output_symtab_index_ != 0);
1078     return this->output_symtab_index_;
1079   }
1080
1081   // Set the index in the output symbol table.
1082   void
1083   set_output_symtab_index(unsigned int i)
1084   {
1085     gold_assert(this->output_symtab_index_ == 0);
1086     this->output_symtab_index_ = i;
1087   }
1088
1089   // Record that this symbol should not go into the output symbol
1090   // table.
1091   void
1092   set_no_output_symtab_entry()
1093   {
1094     gold_assert(this->output_symtab_index_ == 0);
1095     this->output_symtab_index_ = -1U;
1096   }
1097
1098   // Set the index in the output dynamic symbol table.
1099   void
1100   set_needs_output_dynsym_entry()
1101   {
1102     gold_assert(!this->is_section_symbol());
1103     this->output_dynsym_index_ = 0;
1104   }
1105
1106   // Return whether this symbol should go into the output symbol
1107   // table.
1108   bool
1109   needs_output_dynsym_entry() const
1110   {
1111     return this->output_dynsym_index_ != -1U;
1112   }
1113
1114   // Record that this symbol should go into the dynamic symbol table.
1115   void
1116   set_output_dynsym_index(unsigned int i)
1117   {
1118     gold_assert(this->output_dynsym_index_ == 0);
1119     this->output_dynsym_index_ = i;
1120   }
1121
1122   // Return the index in the output dynamic symbol table.
1123   unsigned int
1124   output_dynsym_index() const
1125   {
1126     gold_assert(this->output_dynsym_index_ != 0
1127                 && this->output_dynsym_index_ != -1U);
1128     return this->output_dynsym_index_;
1129   }
1130
1131   // Set the index of the input section in the input file.
1132   void
1133   set_input_shndx(unsigned int i, bool is_ordinary)
1134   {
1135     this->input_shndx_ = i;
1136     // input_shndx_ field is a bitfield, so make sure that the value
1137     // fits.
1138     gold_assert(this->input_shndx_ == i);
1139     this->is_ordinary_shndx_ = is_ordinary;
1140   }
1141
1142   // Return the index of the input section in the input file.
1143   unsigned int
1144   input_shndx(bool* is_ordinary) const
1145   {
1146     *is_ordinary = this->is_ordinary_shndx_;
1147     return this->input_shndx_;
1148   }
1149
1150   // Whether this is a section symbol.
1151   bool
1152   is_section_symbol() const
1153   { return this->is_section_symbol_; }
1154
1155   // Record that this is a section symbol.
1156   void
1157   set_is_section_symbol()
1158   {
1159     gold_assert(!this->needs_output_dynsym_entry());
1160     this->is_section_symbol_ = true;
1161   }
1162
1163   // Record that this is a TLS symbol.
1164   void
1165   set_is_tls_symbol()
1166   { this->is_tls_symbol_ = true; }
1167
1168   // Return TRUE if this is a TLS symbol.
1169   bool
1170   is_tls_symbol() const
1171   { return this->is_tls_symbol_; }
1172
1173  private:
1174   // The index of this local symbol in the output symbol table.  This
1175   // will be -1 if the symbol should not go into the symbol table.
1176   unsigned int output_symtab_index_;
1177   // The index of this local symbol in the dynamic symbol table.  This
1178   // will be -1 if the symbol should not go into the symbol table.
1179   unsigned int output_dynsym_index_;
1180   // The section index in the input file in which this symbol is
1181   // defined.
1182   unsigned int input_shndx_ : 28;
1183   // Whether the section index is an ordinary index, not a special
1184   // value.
1185   bool is_ordinary_shndx_ : 1;
1186   // Whether this is a STT_SECTION symbol.
1187   bool is_section_symbol_ : 1;
1188   // Whether this is a STT_TLS symbol.
1189   bool is_tls_symbol_ : 1;
1190   // Whether this symbol has a value for the output file.  This is
1191   // normally set to true during Layout::finalize, by
1192   // finalize_local_symbols.  It will be false for a section symbol in
1193   // a merge section, as for such symbols we can not determine the
1194   // value to use in a relocation until we see the addend.
1195   bool has_output_value_ : 1;
1196   union
1197   {
1198     // This is used if has_output_value_ is true.  Between
1199     // count_local_symbols and finalize_local_symbols, this is the
1200     // value in the input file.  After finalize_local_symbols, it is
1201     // the value in the output file.
1202     Value value;
1203     // This is used if has_output_value_ is false.  It points to the
1204     // information we need to get the value for a merge section.
1205     Merged_symbol_value<size>* merged_symbol_value;
1206   } u_;
1207 };
1208
1209 // A GOT offset list.  A symbol may have more than one GOT offset
1210 // (e.g., when mixing modules compiled with two different TLS models),
1211 // but will usually have at most one.  GOT_TYPE identifies the type of
1212 // GOT entry; its values are specific to each target.
1213
1214 class Got_offset_list
1215 {
1216  public:
1217   Got_offset_list()
1218     : got_type_(-1U), got_offset_(0), got_next_(NULL)
1219   { }
1220
1221   Got_offset_list(unsigned int got_type, unsigned int got_offset)
1222     : got_type_(got_type), got_offset_(got_offset), got_next_(NULL)
1223   { }
1224
1225   ~Got_offset_list()
1226   { 
1227     if (this->got_next_ != NULL)
1228       {
1229         delete this->got_next_;
1230         this->got_next_ = NULL;
1231       }
1232   }
1233
1234   // Initialize the fields to their default values.
1235   void
1236   init()
1237   {
1238     this->got_type_ = -1U;
1239     this->got_offset_ = 0;
1240     this->got_next_ = NULL;
1241   }
1242
1243   // Set the offset for the GOT entry of type GOT_TYPE.
1244   void
1245   set_offset(unsigned int got_type, unsigned int got_offset)
1246   {
1247     if (this->got_type_ == -1U)
1248       {
1249         this->got_type_ = got_type;
1250         this->got_offset_ = got_offset;
1251       }
1252     else
1253       {
1254         for (Got_offset_list* g = this; g != NULL; g = g->got_next_)
1255           {
1256             if (g->got_type_ == got_type)
1257               {
1258                 g->got_offset_ = got_offset;
1259                 return;
1260               }
1261           }
1262         Got_offset_list* g = new Got_offset_list(got_type, got_offset);
1263         g->got_next_ = this->got_next_;
1264         this->got_next_ = g;
1265       }
1266   }
1267
1268   // Return the offset for a GOT entry of type GOT_TYPE.
1269   unsigned int
1270   get_offset(unsigned int got_type) const
1271   {
1272     for (const Got_offset_list* g = this; g != NULL; g = g->got_next_)
1273       {
1274         if (g->got_type_ == got_type)
1275           return g->got_offset_;
1276       }
1277     return -1U;
1278   }
1279
1280  private:
1281   unsigned int got_type_;
1282   unsigned int got_offset_;
1283   Got_offset_list* got_next_;
1284 };
1285
1286 // A regular object file.  This is size and endian specific.
1287
1288 template<int size, bool big_endian>
1289 class Sized_relobj : public Relobj
1290 {
1291  public:
1292   typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
1293   typedef std::vector<Symbol*> Symbols;
1294   typedef std::vector<Symbol_value<size> > Local_values;
1295
1296   static const Address invalid_address = static_cast<Address>(0) - 1;
1297
1298   Sized_relobj(const std::string& name, Input_file* input_file, off_t offset,
1299                const typename elfcpp::Ehdr<size, big_endian>&);
1300
1301   ~Sized_relobj();
1302
1303   // Checks if the offset of input section SHNDX within its output
1304   // section is invalid. 
1305   bool
1306   is_output_section_offset_invalid(unsigned int shndx) const
1307   { return this->get_output_section_offset(shndx) == invalid_address; }
1308
1309   // Set up the object file based on TARGET.
1310   void
1311   setup(Target *target);
1312
1313   // Return the number of symbols.  This is only valid after
1314   // Object::add_symbols has been called.
1315   unsigned int
1316   symbol_count() const
1317   { return this->local_symbol_count_ + this->symbols_.size(); }
1318
1319   // If SYM is the index of a global symbol in the object file's
1320   // symbol table, return the Symbol object.  Otherwise, return NULL.
1321   Symbol*
1322   global_symbol(unsigned int sym) const
1323   {
1324     if (sym >= this->local_symbol_count_)
1325       {
1326         gold_assert(sym - this->local_symbol_count_ < this->symbols_.size());
1327         return this->symbols_[sym - this->local_symbol_count_];
1328       }
1329     return NULL;
1330   }
1331
1332   // Return the section index of symbol SYM.  Set *VALUE to its value
1333   // in the object file.  Set *IS_ORDINARY if this is an ordinary
1334   // section index, not a special code between SHN_LORESERVE and
1335   // SHN_HIRESERVE.  Note that for a symbol which is not defined in
1336   // this object file, this will set *VALUE to 0 and return SHN_UNDEF;
1337   // it will not return the final value of the symbol in the link.
1338   unsigned int
1339   symbol_section_and_value(unsigned int sym, Address* value, bool* is_ordinary);
1340
1341   // Return a pointer to the Symbol_value structure which holds the
1342   // value of a local symbol.
1343   const Symbol_value<size>*
1344   local_symbol(unsigned int sym) const
1345   {
1346     gold_assert(sym < this->local_values_.size());
1347     return &this->local_values_[sym];
1348   }
1349
1350   // Return the index of local symbol SYM in the ordinary symbol
1351   // table.  A value of -1U means that the symbol is not being output.
1352   unsigned int
1353   symtab_index(unsigned int sym) const
1354   {
1355     gold_assert(sym < this->local_values_.size());
1356     return this->local_values_[sym].output_symtab_index();
1357   }
1358
1359   // Return the index of local symbol SYM in the dynamic symbol
1360   // table.  A value of -1U means that the symbol is not being output.
1361   unsigned int
1362   dynsym_index(unsigned int sym) const
1363   {
1364     gold_assert(sym < this->local_values_.size());
1365     return this->local_values_[sym].output_dynsym_index();
1366   }
1367
1368   // Return the input section index of local symbol SYM.
1369   unsigned int
1370   local_symbol_input_shndx(unsigned int sym, bool* is_ordinary) const
1371   {
1372     gold_assert(sym < this->local_values_.size());
1373     return this->local_values_[sym].input_shndx(is_ordinary);
1374   }
1375
1376   // Return the appropriate Sized_target structure.
1377   Sized_target<size, big_endian>*
1378   sized_target()
1379   { return this->Object::sized_target<size, big_endian>(); }
1380
1381   // Record that local symbol SYM needs a dynamic symbol entry.
1382   void
1383   set_needs_output_dynsym_entry(unsigned int sym)
1384   {
1385     gold_assert(sym < this->local_values_.size());
1386     this->local_values_[sym].set_needs_output_dynsym_entry();
1387   }
1388
1389   // Return whether the local symbol SYMNDX has a GOT offset.
1390   // For TLS symbols, the GOT entry will hold its tp-relative offset.
1391   bool
1392   local_has_got_offset(unsigned int symndx, unsigned int got_type) const
1393   {
1394     Local_got_offsets::const_iterator p =
1395         this->local_got_offsets_.find(symndx);
1396     return (p != this->local_got_offsets_.end()
1397             && p->second->get_offset(got_type) != -1U);
1398   }
1399
1400   // Return the GOT offset of the local symbol SYMNDX.
1401   unsigned int
1402   local_got_offset(unsigned int symndx, unsigned int got_type) const
1403   {
1404     Local_got_offsets::const_iterator p =
1405         this->local_got_offsets_.find(symndx);
1406     gold_assert(p != this->local_got_offsets_.end());
1407     unsigned int off = p->second->get_offset(got_type);
1408     gold_assert(off != -1U);
1409     return off;
1410   }
1411
1412   // Set the GOT offset of the local symbol SYMNDX to GOT_OFFSET.
1413   void
1414   set_local_got_offset(unsigned int symndx, unsigned int got_type,
1415                        unsigned int got_offset)
1416   {
1417     Local_got_offsets::const_iterator p =
1418         this->local_got_offsets_.find(symndx);
1419     if (p != this->local_got_offsets_.end())
1420       p->second->set_offset(got_type, got_offset);
1421     else
1422       {
1423         Got_offset_list* g = new Got_offset_list(got_type, got_offset);
1424         std::pair<Local_got_offsets::iterator, bool> ins =
1425             this->local_got_offsets_.insert(std::make_pair(symndx, g));
1426         gold_assert(ins.second);
1427       }
1428   }
1429
1430   // Get the offset of input section SHNDX within its output section.
1431   // This is -1 if the input section requires a special mapping, such
1432   // as a merge section.  The output section can be found in the
1433   // output_sections_ field of the parent class Relobj.
1434   Address
1435   get_output_section_offset(unsigned int shndx) const
1436   {
1437     gold_assert(shndx < this->section_offsets_.size());
1438     return this->section_offsets_[shndx];
1439   }
1440
1441   // Return the name of the symbol that spans the given offset in the
1442   // specified section in this object.  This is used only for error
1443   // messages and is not particularly efficient.
1444   bool
1445   get_symbol_location_info(unsigned int shndx, off_t offset,
1446                            Symbol_location_info* info);
1447
1448   // Look for a kept section corresponding to the given discarded section,
1449   // and return its output address.  This is used only for relocations in
1450   // debugging sections.
1451   Address
1452   map_to_kept_section(unsigned int shndx, bool* found) const;
1453
1454  protected:
1455   // Read the symbols.
1456   void
1457   do_read_symbols(Read_symbols_data*);
1458
1459   // Return the number of local symbols.
1460   unsigned int
1461   do_local_symbol_count() const
1462   { return this->local_symbol_count_; }
1463
1464   // Lay out the input sections.
1465   void
1466   do_layout(Symbol_table*, Layout*, Read_symbols_data*);
1467
1468   // Layout sections whose layout was deferred while waiting for
1469   // input files from a plugin.
1470   void
1471   do_layout_deferred_sections(Layout*);
1472
1473   // Add the symbols to the symbol table.
1474   void
1475   do_add_symbols(Symbol_table*, Read_symbols_data*, Layout*);
1476
1477   // Read the relocs.
1478   void
1479   do_read_relocs(Read_relocs_data*);
1480
1481   // Process the relocs to find list of referenced sections. Used only
1482   // during garbage collection.
1483   void
1484   do_gc_process_relocs(const General_options&, Symbol_table*, Layout*,
1485                        Read_relocs_data*);
1486
1487   // Scan the relocs and adjust the symbol table.
1488   void
1489   do_scan_relocs(const General_options&, Symbol_table*, Layout*,
1490                  Read_relocs_data*);
1491
1492   // Count the local symbols.
1493   void
1494   do_count_local_symbols(Stringpool_template<char>*,
1495                             Stringpool_template<char>*);
1496
1497   // Finalize the local symbols.
1498   unsigned int
1499   do_finalize_local_symbols(unsigned int, off_t, Symbol_table*);
1500
1501   // Set the offset where local dynamic symbol information will be stored.
1502   unsigned int
1503   do_set_local_dynsym_indexes(unsigned int);
1504
1505   // Set the offset where local dynamic symbol information will be stored.
1506   unsigned int
1507   do_set_local_dynsym_offset(off_t);
1508
1509   // Relocate the input sections and write out the local symbols.
1510   void
1511   do_relocate(const General_options& options, const Symbol_table* symtab,
1512               const Layout*, Output_file* of);
1513
1514   // Get the size of a section.
1515   uint64_t
1516   do_section_size(unsigned int shndx)
1517   { return this->elf_file_.section_size(shndx); }
1518
1519   // Get the name of a section.
1520   std::string
1521   do_section_name(unsigned int shndx)
1522   { return this->elf_file_.section_name(shndx); }
1523
1524   // Return the location of the contents of a section.
1525   Object::Location
1526   do_section_contents(unsigned int shndx)
1527   { return this->elf_file_.section_contents(shndx); }
1528
1529   // Return section flags.
1530   uint64_t
1531   do_section_flags(unsigned int shndx);
1532
1533   // Return section entsize.
1534   uint64_t
1535   do_section_entsize(unsigned int shndx);
1536
1537   // Return section address.
1538   uint64_t
1539   do_section_address(unsigned int shndx)
1540   { return this->elf_file_.section_addr(shndx); }
1541
1542   // Return section type.
1543   unsigned int
1544   do_section_type(unsigned int shndx)
1545   { return this->elf_file_.section_type(shndx); }
1546
1547   // Return the section link field.
1548   unsigned int
1549   do_section_link(unsigned int shndx)
1550   { return this->elf_file_.section_link(shndx); }
1551
1552   // Return the section info field.
1553   unsigned int
1554   do_section_info(unsigned int shndx)
1555   { return this->elf_file_.section_info(shndx); }
1556
1557   // Return the section alignment.
1558   uint64_t
1559   do_section_addralign(unsigned int shndx)
1560   { return this->elf_file_.section_addralign(shndx); }
1561
1562   // Return the Xindex structure to use.
1563   Xindex*
1564   do_initialize_xindex();
1565
1566   // Get symbol counts.
1567   void
1568   do_get_global_symbol_counts(const Symbol_table*, size_t*, size_t*) const;
1569
1570   // Get the offset of a section.
1571   uint64_t
1572   do_output_section_offset(unsigned int shndx) const
1573   {
1574     Address off = this->get_output_section_offset(shndx);
1575     if (off == invalid_address)
1576       return -1ULL;
1577     return off;
1578   }
1579
1580   // Set the offset of a section.
1581   void
1582   do_set_section_offset(unsigned int shndx, uint64_t off)
1583   {
1584     gold_assert(shndx < this->section_offsets_.size());
1585     this->section_offsets_[shndx] = convert_types<Address, uint64_t>(off);
1586   }
1587
1588  private:
1589   // For convenience.
1590   typedef Sized_relobj<size, big_endian> This;
1591   static const int ehdr_size = elfcpp::Elf_sizes<size>::ehdr_size;
1592   static const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
1593   static const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
1594   typedef elfcpp::Shdr<size, big_endian> Shdr;
1595
1596   // To keep track of discarded comdat sections, we need to map a member
1597   // section index to the object and section index of the corresponding
1598   // kept section.
1599   struct Kept_comdat_section
1600   {
1601     Kept_comdat_section(Relobj* a_object, unsigned int a_shndx)
1602       : object(a_object), shndx(a_shndx)
1603     { }
1604     Relobj* object;
1605     unsigned int shndx;
1606   };
1607   typedef std::map<unsigned int, Kept_comdat_section>
1608       Kept_comdat_section_table;
1609
1610   // Adjust a section index if necessary.
1611   unsigned int
1612   adjust_shndx(unsigned int shndx)
1613   {
1614     if (shndx >= elfcpp::SHN_LORESERVE)
1615       shndx += this->elf_file_.large_shndx_offset();
1616     return shndx;
1617   }
1618
1619   // Find the SHT_SYMTAB section, given the section headers.
1620   void
1621   find_symtab(const unsigned char* pshdrs);
1622
1623   // Return whether SHDR has the right flags for a GNU style exception
1624   // frame section.
1625   bool
1626   check_eh_frame_flags(const elfcpp::Shdr<size, big_endian>* shdr) const;
1627
1628   // Return whether there is a section named .eh_frame which might be
1629   // a GNU style exception frame section.
1630   bool
1631   find_eh_frame(const unsigned char* pshdrs, const char* names,
1632                 section_size_type names_size) const;
1633
1634   // Whether to include a section group in the link.
1635   bool
1636   include_section_group(Symbol_table*, Layout*, unsigned int, const char*,
1637                         const unsigned char*, const char *, section_size_type,
1638                         std::vector<bool>*);
1639
1640   // Whether to include a linkonce section in the link.
1641   bool
1642   include_linkonce_section(Layout*, unsigned int, const char*,
1643                            const elfcpp::Shdr<size, big_endian>&);
1644
1645   // Layout an input section.
1646   void
1647   layout_section(Layout* layout, unsigned int shndx, const char* name,
1648                  typename This::Shdr& shdr, unsigned int reloc_shndx,
1649                  unsigned int reloc_type);
1650
1651   // Views and sizes when relocating.
1652   struct View_size
1653   {
1654     unsigned char* view;
1655     typename elfcpp::Elf_types<size>::Elf_Addr address;
1656     off_t offset;
1657     section_size_type view_size;
1658     bool is_input_output_view;
1659     bool is_postprocessing_view;
1660   };
1661
1662   typedef std::vector<View_size> Views;
1663
1664   // Write section data to the output file.  Record the views and
1665   // sizes in VIEWS for use when relocating.
1666   void
1667   write_sections(const unsigned char* pshdrs, Output_file*, Views*);
1668
1669   // Relocate the sections in the output file.
1670   void
1671   relocate_sections(const General_options& options, const Symbol_table*,
1672                     const Layout*, const unsigned char* pshdrs, Views*);
1673
1674   // Scan the input relocations for --emit-relocs.
1675   void
1676   emit_relocs_scan(const General_options&, Symbol_table*, Layout*,
1677                    const unsigned char* plocal_syms,
1678                    const Read_relocs_data::Relocs_list::iterator&);
1679
1680   // Scan the input relocations for --emit-relocs, templatized on the
1681   // type of the relocation section.
1682   template<int sh_type>
1683   void
1684   emit_relocs_scan_reltype(const General_options&, Symbol_table*, Layout*,
1685                            const unsigned char* plocal_syms,
1686                            const Read_relocs_data::Relocs_list::iterator&,
1687                            Relocatable_relocs*);
1688
1689   // Emit the relocs for --emit-relocs.
1690   void
1691   emit_relocs(const Relocate_info<size, big_endian>*, unsigned int,
1692               unsigned int sh_type, const unsigned char* prelocs,
1693               size_t reloc_count, Output_section*, Address output_offset,
1694               unsigned char* view, Address address,
1695               section_size_type view_size,
1696               unsigned char* reloc_view, section_size_type reloc_view_size);
1697
1698   // Emit the relocs for --emit-relocs, templatized on the type of the
1699   // relocation section.
1700   template<int sh_type>
1701   void
1702   emit_relocs_reltype(const Relocate_info<size, big_endian>*, unsigned int,
1703                       const unsigned char* prelocs, size_t reloc_count,
1704                       Output_section*, Address output_offset,
1705                       unsigned char* view, Address address,
1706                       section_size_type view_size,
1707                       unsigned char* reloc_view,
1708                       section_size_type reloc_view_size);
1709
1710   // Initialize input to output maps for section symbols in merged
1711   // sections.
1712   void
1713   initialize_input_to_output_maps();
1714
1715   // Free the input to output maps for section symbols in merged
1716   // sections.
1717   void
1718   free_input_to_output_maps();
1719
1720   // Write out the local symbols.
1721   void
1722   write_local_symbols(Output_file*,
1723                       const Stringpool_template<char>*,
1724                       const Stringpool_template<char>*,
1725                       Output_symtab_xindex*,
1726                       Output_symtab_xindex*);
1727
1728   // Clear the local symbol information.
1729   void
1730   clear_local_symbols()
1731   {
1732     this->local_values_.clear();
1733     this->local_got_offsets_.clear();
1734   }
1735
1736   // Record a mapping from discarded section SHNDX to the corresponding
1737   // kept section.
1738   void
1739   set_kept_comdat_section(unsigned int shndx, Relobj* kept_object,
1740                           unsigned int kept_shndx)
1741   {
1742     Kept_comdat_section kept(kept_object, kept_shndx);
1743     this->kept_comdat_sections_.insert(std::make_pair(shndx, kept));
1744   }
1745
1746   // Find the kept section corresponding to the discarded section
1747   // SHNDX.  Return true if found.
1748   bool
1749   get_kept_comdat_section(unsigned int shndx, Relobj** kept_object,
1750                           unsigned int* kept_shndx) const
1751   {
1752     typename Kept_comdat_section_table::const_iterator p =
1753       this->kept_comdat_sections_.find(shndx);
1754     if (p == this->kept_comdat_sections_.end())
1755       return false;
1756     *kept_object = p->second.object;
1757     *kept_shndx = p->second.shndx;
1758     return true;
1759   }
1760
1761   // The GOT offsets of local symbols. This map also stores GOT offsets
1762   // for tp-relative offsets for TLS symbols.
1763   typedef Unordered_map<unsigned int, Got_offset_list*> Local_got_offsets;
1764
1765   // The TLS GOT offsets of local symbols. The map stores the offsets
1766   // for either a single GOT entry that holds the module index of a TLS
1767   // symbol, or a pair of GOT entries containing the module index and
1768   // dtv-relative offset.
1769   struct Tls_got_entry
1770   {
1771     Tls_got_entry(int got_offset, bool have_pair)
1772       : got_offset_(got_offset),
1773         have_pair_(have_pair)
1774     { }
1775     int got_offset_;
1776     bool have_pair_;
1777   };
1778   typedef Unordered_map<unsigned int, Tls_got_entry> Local_tls_got_offsets;
1779
1780   // Saved information for sections whose layout was deferred.
1781   struct Deferred_layout
1782   {
1783     static const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
1784     Deferred_layout(unsigned int shndx, const char* name,
1785                     const unsigned char* pshdr,
1786                     unsigned int reloc_shndx, unsigned int reloc_type)
1787       : shndx_(shndx), name_(name), reloc_shndx_(reloc_shndx),
1788         reloc_type_(reloc_type)
1789     {
1790       memcpy(this->shdr_data_, pshdr, shdr_size);
1791     }
1792     unsigned int shndx_;
1793     std::string name_;
1794     unsigned int reloc_shndx_;
1795     unsigned int reloc_type_;
1796     unsigned char shdr_data_[shdr_size];
1797   };
1798
1799   // General access to the ELF file.
1800   elfcpp::Elf_file<size, big_endian, Object> elf_file_;
1801   // Index of SHT_SYMTAB section.
1802   unsigned int symtab_shndx_;
1803   // The number of local symbols.
1804   unsigned int local_symbol_count_;
1805   // The number of local symbols which go into the output file.
1806   unsigned int output_local_symbol_count_;
1807   // The number of local symbols which go into the output file's dynamic
1808   // symbol table.
1809   unsigned int output_local_dynsym_count_;
1810   // The entries in the symbol table for the external symbols.
1811   Symbols symbols_;
1812   // Number of symbols defined in object file itself.
1813   size_t defined_count_;
1814   // File offset for local symbols.
1815   off_t local_symbol_offset_;
1816   // File offset for local dynamic symbols.
1817   off_t local_dynsym_offset_;
1818   // Values of local symbols.
1819   Local_values local_values_;
1820   // GOT offsets for local non-TLS symbols, and tp-relative offsets
1821   // for TLS symbols, indexed by symbol number.
1822   Local_got_offsets local_got_offsets_;
1823   // For each input section, the offset of the input section in its
1824   // output section.  This is INVALID_ADDRESS if the input section requires a
1825   // special mapping.
1826   std::vector<Address> section_offsets_;
1827   // Table mapping discarded comdat sections to corresponding kept sections.
1828   Kept_comdat_section_table kept_comdat_sections_;
1829   // Whether this object has a GNU style .eh_frame section.
1830   bool has_eh_frame_;
1831   // If this object has a GNU style .eh_frame section that is discarded in
1832   // output, record the index here.  Otherwise it is -1U.
1833   unsigned int discarded_eh_frame_shndx_;
1834   // The list of sections whose layout was deferred.
1835   std::vector<Deferred_layout> deferred_layout_;
1836 };
1837
1838 // A class to manage the list of all objects.
1839
1840 class Input_objects
1841 {
1842  public:
1843   Input_objects()
1844     : relobj_list_(), dynobj_list_(), sonames_(), cref_(NULL)
1845   { }
1846
1847   // The type of the list of input relocateable objects.
1848   typedef std::vector<Relobj*> Relobj_list;
1849   typedef Relobj_list::const_iterator Relobj_iterator;
1850
1851   // The type of the list of input dynamic objects.
1852   typedef std::vector<Dynobj*> Dynobj_list;
1853   typedef Dynobj_list::const_iterator Dynobj_iterator;
1854
1855   // Add an object to the list.  Return true if all is well, or false
1856   // if this object should be ignored.
1857   bool
1858   add_object(Object*);
1859
1860   // Start processing an archive.
1861   void
1862   archive_start(Archive*);
1863
1864   // Stop processing an archive.
1865   void
1866   archive_stop(Archive*);
1867
1868   // For each dynamic object, check whether we've seen all of its
1869   // explicit dependencies.
1870   void
1871   check_dynamic_dependencies() const;
1872
1873   // Return whether an object was found in the system library
1874   // directory.
1875   bool
1876   found_in_system_library_directory(const Object*) const;
1877
1878   // Print symbol counts.
1879   void
1880   print_symbol_counts(const Symbol_table*) const;
1881
1882   // Iterate over all regular objects.
1883
1884   Relobj_iterator
1885   relobj_begin() const
1886   { return this->relobj_list_.begin(); }
1887
1888   Relobj_iterator
1889   relobj_end() const
1890   { return this->relobj_list_.end(); }
1891
1892   // Iterate over all dynamic objects.
1893
1894   Dynobj_iterator
1895   dynobj_begin() const
1896   { return this->dynobj_list_.begin(); }
1897
1898   Dynobj_iterator
1899   dynobj_end() const
1900   { return this->dynobj_list_.end(); }
1901
1902   // Return whether we have seen any dynamic objects.
1903   bool
1904   any_dynamic() const
1905   { return !this->dynobj_list_.empty(); }
1906
1907   // Return the number of input objects.
1908   int
1909   number_of_input_objects() const
1910   { return this->relobj_list_.size() + this->dynobj_list_.size(); }
1911
1912  private:
1913   Input_objects(const Input_objects&);
1914   Input_objects& operator=(const Input_objects&);
1915
1916   // The list of ordinary objects included in the link.
1917   Relobj_list relobj_list_;
1918   // The list of dynamic objects included in the link.
1919   Dynobj_list dynobj_list_;
1920   // SONAMEs that we have seen.
1921   Unordered_set<std::string> sonames_;
1922   // Manage cross-references if requested.
1923   Cref* cref_;
1924 };
1925
1926 // Some of the information we pass to the relocation routines.  We
1927 // group this together to avoid passing a dozen different arguments.
1928
1929 template<int size, bool big_endian>
1930 struct Relocate_info
1931 {
1932   // Command line options.
1933   const General_options* options;
1934   // Symbol table.
1935   const Symbol_table* symtab;
1936   // Layout.
1937   const Layout* layout;
1938   // Object being relocated.
1939   Sized_relobj<size, big_endian>* object;
1940   // Section index of relocation section.
1941   unsigned int reloc_shndx;
1942   // Section index of section being relocated.
1943   unsigned int data_shndx;
1944
1945   // Return a string showing the location of a relocation.  This is
1946   // only used for error messages.
1947   std::string
1948   location(size_t relnum, off_t reloffset) const;
1949 };
1950
1951 // Return whether INPUT_FILE contains an ELF object start at file
1952 // offset OFFSET.  This sets *START to point to a view of the start of
1953 // the file.  It sets *READ_SIZE to the number of bytes in the view.
1954
1955 extern bool
1956 is_elf_object(Input_file* input_file, off_t offset,
1957               const unsigned char** start, int *read_size);
1958
1959 // Return an Object appropriate for the input file.  P is BYTES long,
1960 // and holds the ELF header.  If PUNCONFIGURED is not NULL, then if
1961 // this sees an object the linker is not configured to support, it
1962 // sets *PUNCONFIGURED to true and returns NULL without giving an
1963 // error message.
1964
1965 extern Object*
1966 make_elf_object(const std::string& name, Input_file*,
1967                 off_t offset, const unsigned char* p,
1968                 section_offset_type bytes, bool* punconfigured);
1969
1970 } // end namespace gold
1971
1972 #endif // !defined(GOLD_OBJECT_H)