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