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