OpenCores
URL https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk

Subversion Repositories open8_urisc

[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [gold/] [object.h] - Blame information for rev 231

Go to most recent revision | Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.