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