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