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