Use STRING_COMMA_LEN to avoid strlen.
[deliverable/binutils-gdb.git] / gold / object.h
CommitLineData
bae7f79e
ILT
1// object.h -- support for an object file for linking in gold -*- C++ -*-
2
dde3f402 3// Copyright 2006, 2007, 2008, 2009, 2010 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"
bae7f79e
ILT
33
34namespace gold
35{
36
92e059d8 37class General_options;
17a1d0a9 38class Task;
92de84a6
ILT
39class Cref;
40class Archive;
a2fb1b05 41class Layout;
61ba1cf9
ILT
42class Output_section;
43class Output_file;
d491d34e 44class Output_symtab_xindex;
89fc3421 45class Pluginobj;
f6ce93d6 46class Dynobj;
4625f782 47class Object_merge_map;
6a74a719 48class Relocatable_relocs;
6d03d481 49class Symbols_data;
a2fb1b05 50
b8e6aad9
ILT
51template<typename Stringpool_char>
52class Stringpool_template;
53
bae7f79e
ILT
54// Data to pass from read_symbols() to add_symbols().
55
56struct Read_symbols_data
57{
12e14209
ILT
58 // Section headers.
59 File_view* section_headers;
60 // Section names.
61 File_view* section_names;
62 // Size of section name data in bytes.
8383303e 63 section_size_type section_names_size;
bae7f79e
ILT
64 // Symbol data.
65 File_view* symbols;
66 // Size of symbol data in bytes.
8383303e 67 section_size_type symbols_size;
730cdc88
ILT
68 // Offset of external symbols within symbol data. This structure
69 // sometimes contains only external symbols, in which case this will
70 // be zero. Sometimes it contains all symbols.
8383303e 71 section_offset_type external_symbols_offset;
bae7f79e
ILT
72 // Symbol names.
73 File_view* symbol_names;
74 // Size of symbol name data in bytes.
8383303e 75 section_size_type symbol_names_size;
dbe717ef
ILT
76
77 // Version information. This is only used on dynamic objects.
78 // Version symbol data (from SHT_GNU_versym section).
79 File_view* versym;
8383303e 80 section_size_type versym_size;
dbe717ef
ILT
81 // Version definition data (from SHT_GNU_verdef section).
82 File_view* verdef;
8383303e 83 section_size_type verdef_size;
dbe717ef
ILT
84 unsigned int verdef_info;
85 // Needed version data (from SHT_GNU_verneed section).
86 File_view* verneed;
8383303e 87 section_size_type verneed_size;
dbe717ef 88 unsigned int verneed_info;
bae7f79e
ILT
89};
90
f7e2ee48
ILT
91// Information used to print error messages.
92
93struct Symbol_location_info
94{
95 std::string source_file;
96 std::string enclosing_symbol_name;
97 int line_number;
98};
99
92e059d8
ILT
100// Data about a single relocation section. This is read in
101// read_relocs and processed in scan_relocs.
102
103struct Section_relocs
104{
105 // Index of reloc section.
106 unsigned int reloc_shndx;
107 // Index of section that relocs apply to.
108 unsigned int data_shndx;
109 // Contents of reloc section.
110 File_view* contents;
111 // Reloc section type.
112 unsigned int sh_type;
113 // Number of reloc entries.
114 size_t reloc_count;
730cdc88
ILT
115 // Output section.
116 Output_section* output_section;
117 // Whether this section has special handling for offsets.
118 bool needs_special_offset_handling;
7019cd25
ILT
119 // Whether the data section is allocated (has the SHF_ALLOC flag set).
120 bool is_data_section_allocated;
92e059d8
ILT
121};
122
123// Relocations in an object file. This is read in read_relocs and
124// processed in scan_relocs.
125
126struct Read_relocs_data
127{
128 typedef std::vector<Section_relocs> Relocs_list;
129 // The relocations.
130 Relocs_list relocs;
131 // The local symbols.
132 File_view* local_symbols;
133};
134
d491d34e
ILT
135// The Xindex class manages section indexes for objects with more than
136// 0xff00 sections.
137
138class Xindex
139{
140 public:
141 Xindex(int large_shndx_offset)
142 : large_shndx_offset_(large_shndx_offset), symtab_xindex_()
143 { }
144
145 // Initialize the symtab_xindex_ array, given the object and the
146 // section index of the symbol table to use.
147 template<int size, bool big_endian>
148 void
149 initialize_symtab_xindex(Object*, unsigned int symtab_shndx);
150
151 // Read in the symtab_xindex_ array, given its section index.
152 // PSHDRS may optionally point to the section headers.
153 template<int size, bool big_endian>
154 void
155 read_symtab_xindex(Object*, unsigned int xindex_shndx,
156 const unsigned char* pshdrs);
157
158 // Symbol SYMNDX in OBJECT has a section of SHN_XINDEX; return the
159 // real section index.
160 unsigned int
161 sym_xindex_to_shndx(Object* object, unsigned int symndx);
162
163 private:
164 // The type of the array giving the real section index for symbols
165 // whose st_shndx field holds SHN_XINDEX.
166 typedef std::vector<unsigned int> Symtab_xindex;
167
168 // Adjust a section index if necessary. This should only be called
169 // for ordinary section indexes.
170 unsigned int
171 adjust_shndx(unsigned int shndx)
172 {
173 if (shndx >= elfcpp::SHN_LORESERVE)
174 shndx += this->large_shndx_offset_;
175 return shndx;
176 }
177
178 // Adjust to apply to large section indexes.
179 int large_shndx_offset_;
180 // The data from the SHT_SYMTAB_SHNDX section.
181 Symtab_xindex symtab_xindex_;
182};
183
f6ce93d6
ILT
184// Object is an abstract base class which represents either a 32-bit
185// or a 64-bit input object. This can be a regular object file
186// (ET_REL) or a shared object (ET_DYN).
bae7f79e
ILT
187
188class Object
189{
190 public:
dde3f402
ILT
191 typedef std::vector<Symbol*> Symbols;
192
bae7f79e
ILT
193 // NAME is the name of the object as we would report it to the user
194 // (e.g., libfoo.a(bar.o) if this is in an archive. INPUT_FILE is
195 // used to read the file. OFFSET is the offset within the input
196 // file--0 for a .o or .so file, something else for a .a file.
2ea97941
ILT
197 Object(const std::string& name, Input_file* input_file, bool is_dynamic,
198 off_t offset = 0)
199 : name_(name), input_file_(input_file), offset_(offset), shnum_(-1U),
200 is_dynamic_(is_dynamic), is_needed_(false), uses_split_stack_(false),
594c8e5e 201 has_no_split_stack_(false), no_export_(false), xindex_(NULL)
2ea97941 202 { input_file->file().add_object(); }
bae7f79e
ILT
203
204 virtual ~Object()
cb295612 205 { this->input_file_->file().remove_object(); }
bae7f79e 206
14bfc3f5 207 // Return the name of the object as we would report it to the tuser.
bae7f79e
ILT
208 const std::string&
209 name() const
210 { return this->name_; }
211
cec9d2f3
ILT
212 // Get the offset into the file.
213 off_t
214 offset() const
215 { return this->offset_; }
216
14bfc3f5
ILT
217 // Return whether this is a dynamic object.
218 bool
219 is_dynamic() const
220 { return this->is_dynamic_; }
221
594c8e5e
ILT
222 // Return whether this object is needed--true if it is a dynamic
223 // object which defines some symbol referenced by a regular object.
224 // We keep the flag here rather than in Dynobj for convenience when
225 // setting it.
226 bool
227 is_needed() const
228 { return this->is_needed_; }
229
230 // Record that this object is needed.
231 void
232 set_is_needed()
233 { this->is_needed_ = true; }
234
364c7fa5
ILT
235 // Return whether this object was compiled with -fsplit-stack.
236 bool
237 uses_split_stack() const
238 { return this->uses_split_stack_; }
239
240 // Return whether this object contains any functions compiled with
241 // the no_split_stack attribute.
242 bool
243 has_no_split_stack() const
244 { return this->has_no_split_stack_; }
245
89fc3421
CC
246 // Returns NULL for Objects that are not plugin objects. This method
247 // is overridden in the Pluginobj class.
248 Pluginobj*
249 pluginobj()
250 { return this->do_pluginobj(); }
251
15f8229b
ILT
252 // Get the file. We pass on const-ness.
253 Input_file*
254 input_file()
255 { return this->input_file_; }
256
257 const Input_file*
258 input_file() const
259 { return this->input_file_; }
260
a2fb1b05
ILT
261 // Lock the underlying file.
262 void
17a1d0a9
ILT
263 lock(const Task* t)
264 { this->input_file()->file().lock(t); }
a2fb1b05
ILT
265
266 // Unlock the underlying file.
267 void
17a1d0a9
ILT
268 unlock(const Task* t)
269 { this->input_file()->file().unlock(t); }
a2fb1b05
ILT
270
271 // Return whether the underlying file is locked.
272 bool
273 is_locked() const
7004837e 274 { return this->input_file()->file().is_locked(); }
a2fb1b05 275
17a1d0a9
ILT
276 // Return the token, so that the task can be queued.
277 Task_token*
278 token()
279 { return this->input_file()->file().token(); }
280
281 // Release the underlying file.
282 void
283 release()
284 { this->input_file_->file().release(); }
285
88dd47ac
ILT
286 // Return whether we should just read symbols from this file.
287 bool
288 just_symbols() const
289 { return this->input_file()->just_symbols(); }
290
5a6f7e2d
ILT
291 // Get the number of sections.
292 unsigned int
293 shnum() const
294 { return this->shnum_; }
a2fb1b05 295
f6ce93d6 296 // Return a view of the contents of a section. Set *PLEN to the
9eb9fa57 297 // size. CACHE is a hint as in File_read::get_view.
f6ce93d6 298 const unsigned char*
8383303e 299 section_contents(unsigned int shndx, section_size_type* plen, bool cache);
f6ce93d6 300
d491d34e
ILT
301 // Adjust a symbol's section index as needed. SYMNDX is the index
302 // of the symbol and SHNDX is the symbol's section from
303 // get_st_shndx. This returns the section index. It sets
304 // *IS_ORDINARY to indicate whether this is a normal section index,
305 // rather than a special code between SHN_LORESERVE and
306 // SHN_HIRESERVE.
307 unsigned int
308 adjust_sym_shndx(unsigned int symndx, unsigned int shndx, bool* is_ordinary)
309 {
310 if (shndx < elfcpp::SHN_LORESERVE)
311 *is_ordinary = true;
312 else if (shndx == elfcpp::SHN_XINDEX)
313 {
314 if (this->xindex_ == NULL)
315 this->xindex_ = this->do_initialize_xindex();
316 shndx = this->xindex_->sym_xindex_to_shndx(this, symndx);
317 *is_ordinary = true;
318 }
319 else
320 *is_ordinary = false;
321 return shndx;
322 }
323
a445fddf
ILT
324 // Return the size of a section given a section index.
325 uint64_t
326 section_size(unsigned int shndx)
327 { return this->do_section_size(shndx); }
328
329 // Return the name of a section given a section index.
f6ce93d6 330 std::string
a3ad94ed
ILT
331 section_name(unsigned int shndx)
332 { return this->do_section_name(shndx); }
333
334 // Return the section flags given a section index.
335 uint64_t
336 section_flags(unsigned int shndx)
337 { return this->do_section_flags(shndx); }
f6ce93d6 338
ef15dade
ST
339 // Return the section entsize given a section index.
340 uint64_t
341 section_entsize(unsigned int shndx)
342 { return this->do_section_entsize(shndx); }
343
88dd47ac
ILT
344 // Return the section address given a section index.
345 uint64_t
346 section_address(unsigned int shndx)
347 { return this->do_section_address(shndx); }
348
730cdc88
ILT
349 // Return the section type given a section index.
350 unsigned int
351 section_type(unsigned int shndx)
352 { return this->do_section_type(shndx); }
353
f7e2ee48
ILT
354 // Return the section link field given a section index.
355 unsigned int
356 section_link(unsigned int shndx)
357 { return this->do_section_link(shndx); }
358
4c50553d
ILT
359 // Return the section info field given a section index.
360 unsigned int
361 section_info(unsigned int shndx)
362 { return this->do_section_info(shndx); }
363
a445fddf
ILT
364 // Return the required section alignment given a section index.
365 uint64_t
366 section_addralign(unsigned int shndx)
367 { return this->do_section_addralign(shndx); }
368
5a6f7e2d
ILT
369 // Read the symbol information.
370 void
371 read_symbols(Read_symbols_data* sd)
372 { return this->do_read_symbols(sd); }
373
374 // Pass sections which should be included in the link to the Layout
375 // object, and record where the sections go in the output file.
376 void
2ea97941
ILT
377 layout(Symbol_table* symtab, Layout* layout, Read_symbols_data* sd)
378 { this->do_layout(symtab, layout, sd); }
5a6f7e2d
ILT
379
380 // Add symbol information to the global symbol table.
381 void
2ea97941
ILT
382 add_symbols(Symbol_table* symtab, Read_symbols_data* sd, Layout *layout)
383 { this->do_add_symbols(symtab, sd, layout); }
5a6f7e2d 384
645f8123
ILT
385 // Functions and types for the elfcpp::Elf_file interface. This
386 // permit us to use Object as the File template parameter for
387 // elfcpp::Elf_file.
388
389 // The View class is returned by view. It must support a single
390 // method, data(). This is trivial, because get_view does what we
391 // need.
392 class View
393 {
394 public:
395 View(const unsigned char* p)
396 : p_(p)
397 { }
398
399 const unsigned char*
400 data() const
401 { return this->p_; }
402
403 private:
404 const unsigned char* p_;
405 };
406
407 // Return a View.
408 View
8383303e 409 view(off_t file_offset, section_size_type data_size)
39d0cb0e 410 { return View(this->get_view(file_offset, data_size, true, true)); }
645f8123
ILT
411
412 // Report an error.
413 void
75f2446e 414 error(const char* format, ...) const ATTRIBUTE_PRINTF_2;
645f8123
ILT
415
416 // A location in the file.
417 struct Location
418 {
419 off_t file_offset;
420 off_t data_size;
421
8383303e 422 Location(off_t fo, section_size_type ds)
645f8123
ILT
423 : file_offset(fo), data_size(ds)
424 { }
425 };
426
427 // Get a View given a Location.
428 View view(Location loc)
39d0cb0e 429 { return View(this->get_view(loc.file_offset, loc.data_size, true, true)); }
645f8123 430
cb295612
ILT
431 // Get a view into the underlying file.
432 const unsigned char*
39d0cb0e 433 get_view(off_t start, section_size_type size, bool aligned, bool cache)
cb295612 434 {
39d0cb0e
ILT
435 return this->input_file()->file().get_view(this->offset_, start, size,
436 aligned, cache);
cb295612
ILT
437 }
438
439 // Get a lasting view into the underlying file.
440 File_view*
39d0cb0e
ILT
441 get_lasting_view(off_t start, section_size_type size, bool aligned,
442 bool cache)
cb295612 443 {
39d0cb0e
ILT
444 return this->input_file()->file().get_lasting_view(this->offset_, start,
445 size, aligned, cache);
cb295612
ILT
446 }
447
448 // Read data from the underlying file.
449 void
2a00e4fb 450 read(off_t start, section_size_type size, void* p)
cb295612
ILT
451 { this->input_file()->file().read(start + this->offset_, size, p); }
452
453 // Read multiple data from the underlying file.
454 void
455 read_multiple(const File_read::Read_multiple& rm)
456 { this->input_file()->file().read_multiple(this->offset_, rm); }
457
458 // Stop caching views in the underlying file.
459 void
460 clear_view_cache_marks()
461 { this->input_file()->file().clear_view_cache_marks(); }
462
92de84a6
ILT
463 // Get the number of global symbols defined by this object, and the
464 // number of the symbols whose final definition came from this
465 // object.
466 void
467 get_global_symbol_counts(const Symbol_table* symtab, size_t* defined,
468 size_t* used) const
469 { this->do_get_global_symbol_counts(symtab, defined, used); }
470
dde3f402
ILT
471 // Get the symbols defined in this object.
472 const Symbols*
473 get_global_symbols() const
474 { return this->do_get_global_symbols(); }
475
fd9d194f
ILT
476 // Return whether this object was found in a system directory.
477 bool
478 is_in_system_directory() const
479 { return this->input_file()->is_in_system_directory(); }
480
15f8229b
ILT
481 // Return whether we found this object by searching a directory.
482 bool
483 searched_for() const
484 { return this->input_file()->will_search_for(); }
485
65514900
CC
486 bool
487 no_export() const
488 { return this->no_export_; }
489
490 void
491 set_no_export(bool value)
492 { this->no_export_ = value; }
493
f6ce93d6 494 protected:
89fc3421
CC
495 // Returns NULL for Objects that are not plugin objects. This method
496 // is overridden in the Pluginobj class.
497 virtual Pluginobj*
498 do_pluginobj()
499 { return NULL; }
500
f6ce93d6
ILT
501 // Read the symbols--implemented by child class.
502 virtual void
503 do_read_symbols(Read_symbols_data*) = 0;
504
505 // Lay out sections--implemented by child class.
506 virtual void
7e1edb90 507 do_layout(Symbol_table*, Layout*, Read_symbols_data*) = 0;
f6ce93d6
ILT
508
509 // Add symbol information to the global symbol table--implemented by
510 // child class.
511 virtual void
f488e4b0 512 do_add_symbols(Symbol_table*, Read_symbols_data*, Layout*) = 0;
f6ce93d6 513
645f8123
ILT
514 // Return the location of the contents of a section. Implemented by
515 // child class.
516 virtual Location
a3ad94ed 517 do_section_contents(unsigned int shndx) = 0;
f6ce93d6 518
a445fddf
ILT
519 // Get the size of a section--implemented by child class.
520 virtual uint64_t
521 do_section_size(unsigned int shndx) = 0;
522
f6ce93d6
ILT
523 // Get the name of a section--implemented by child class.
524 virtual std::string
a3ad94ed
ILT
525 do_section_name(unsigned int shndx) = 0;
526
527 // Get section flags--implemented by child class.
528 virtual uint64_t
529 do_section_flags(unsigned int shndx) = 0;
f6ce93d6 530
ef15dade
ST
531 // Get section entsize--implemented by child class.
532 virtual uint64_t
533 do_section_entsize(unsigned int shndx) = 0;
534
88dd47ac
ILT
535 // Get section address--implemented by child class.
536 virtual uint64_t
537 do_section_address(unsigned int shndx) = 0;
538
730cdc88
ILT
539 // Get section type--implemented by child class.
540 virtual unsigned int
541 do_section_type(unsigned int shndx) = 0;
542
f7e2ee48
ILT
543 // Get section link field--implemented by child class.
544 virtual unsigned int
545 do_section_link(unsigned int shndx) = 0;
546
4c50553d
ILT
547 // Get section info field--implemented by child class.
548 virtual unsigned int
549 do_section_info(unsigned int shndx) = 0;
550
a445fddf
ILT
551 // Get section alignment--implemented by child class.
552 virtual uint64_t
553 do_section_addralign(unsigned int shndx) = 0;
554
d491d34e
ILT
555 // Return the Xindex structure to use.
556 virtual Xindex*
557 do_initialize_xindex() = 0;
558
92de84a6
ILT
559 // Implement get_global_symbol_counts--implemented by child class.
560 virtual void
561 do_get_global_symbol_counts(const Symbol_table*, size_t*, size_t*) const = 0;
562
dde3f402
ILT
563 virtual const Symbols*
564 do_get_global_symbols() const = 0;
565
dbe717ef
ILT
566 // Set the number of sections.
567 void
2ea97941
ILT
568 set_shnum(int shnum)
569 { this->shnum_ = shnum; }
dbe717ef
ILT
570
571 // Functions used by both Sized_relobj and Sized_dynobj.
572
573 // Read the section data into a Read_symbols_data object.
574 template<int size, bool big_endian>
575 void
576 read_section_data(elfcpp::Elf_file<size, big_endian, Object>*,
577 Read_symbols_data*);
578
d491d34e
ILT
579 // Let the child class initialize the xindex object directly.
580 void
581 set_xindex(Xindex* xindex)
582 {
583 gold_assert(this->xindex_ == NULL);
584 this->xindex_ = xindex;
585 }
586
dbe717ef
ILT
587 // If NAME is the name of a special .gnu.warning section, arrange
588 // for the warning to be issued. SHNDX is the section index.
589 // Return whether it is a warning section.
590 bool
591 handle_gnu_warning_section(const char* name, unsigned int shndx,
592 Symbol_table*);
f6ce93d6 593
364c7fa5
ILT
594 // If NAME is the name of the special section which indicates that
595 // this object was compiled with -fstack-split, mark it accordingly,
596 // and return true. Otherwise return false.
597 bool
598 handle_split_stack_section(const char* name);
599
f6ce93d6
ILT
600 private:
601 // This class may not be copied.
602 Object(const Object&);
603 Object& operator=(const Object&);
604
605 // Name of object as printed to user.
606 std::string name_;
607 // For reading the file.
608 Input_file* input_file_;
609 // Offset within the file--0 for an object file, non-0 for an
610 // archive.
611 off_t offset_;
dbe717ef
ILT
612 // Number of input sections.
613 unsigned int shnum_;
f6ce93d6 614 // Whether this is a dynamic object.
594c8e5e
ILT
615 bool is_dynamic_ : 1;
616 // Whether this object is needed. This is only set for dynamic
617 // objects, and means that the object defined a symbol which was
618 // used by a reference from a regular object.
619 bool is_needed_ : 1;
364c7fa5 620 // Whether this object was compiled with -fsplit-stack.
594c8e5e 621 bool uses_split_stack_ : 1;
364c7fa5
ILT
622 // Whether this object contains any functions compiled with the
623 // no_split_stack attribute.
594c8e5e 624 bool has_no_split_stack_ : 1;
65514900
CC
625 // True if exclude this object from automatic symbol export.
626 // This is used only for archive objects.
594c8e5e
ILT
627 bool no_export_ : 1;
628 // Many sections for objects with more than SHN_LORESERVE sections.
629 Xindex* xindex_;
f6ce93d6
ILT
630};
631
f6ce93d6 632// A regular object (ET_REL). This is an abstract base class itself.
b8e6aad9 633// The implementation is the template class Sized_relobj.
f6ce93d6
ILT
634
635class Relobj : public Object
636{
637 public:
2ea97941
ILT
638 Relobj(const std::string& name, Input_file* input_file, off_t offset = 0)
639 : Object(name, input_file, false, offset),
ef9beddf 640 output_sections_(),
6a74a719 641 map_to_relocatable_relocs_(NULL),
4625f782 642 object_merge_map_(NULL),
ef15dade
ST
643 relocs_must_follow_section_writes_(false),
644 sd_(NULL)
f6ce93d6
ILT
645 { }
646
6d03d481
ST
647 // During garbage collection, the Read_symbols_data pass for
648 // each object is stored as layout needs to be done after
649 // reloc processing.
650 Symbols_data*
651 get_symbols_data()
652 { return this->sd_; }
653
654 // Decides which section names have to be included in the worklist
655 // as roots.
656 bool
657 is_section_name_included(const char *name);
658
659 void
660 copy_symbols_data(Symbols_data* gc_sd, Read_symbols_data* sd,
661 unsigned int section_header_size);
662
663 void
664 set_symbols_data(Symbols_data* sd)
665 { this->sd_ = sd; }
666
667 // During garbage collection, the Read_relocs pass for all objects
668 // is done before scanning the relocs. In that case, this->rd_ is
669 // used to store the information from Read_relocs for each object.
670 // This data is also used to compute the list of relevant sections.
671 Read_relocs_data*
672 get_relocs_data()
673 { return this->rd_; }
674
675 void
676 set_relocs_data(Read_relocs_data* rd)
677 { this->rd_ = rd; }
678
679 virtual bool
680 is_output_section_offset_invalid(unsigned int shndx) const = 0;
681
92e059d8 682 // Read the relocs.
a2fb1b05 683 void
92e059d8
ILT
684 read_relocs(Read_relocs_data* rd)
685 { return this->do_read_relocs(rd); }
686
6d03d481
ST
687 // Process the relocs, during garbage collection only.
688 void
2ea97941
ILT
689 gc_process_relocs(Symbol_table* symtab, Layout* layout, Read_relocs_data* rd)
690 { return this->do_gc_process_relocs(symtab, layout, rd); }
6d03d481 691
92e059d8
ILT
692 // Scan the relocs and adjust the symbol table.
693 void
2ea97941
ILT
694 scan_relocs(Symbol_table* symtab, Layout* layout, Read_relocs_data* rd)
695 { return this->do_scan_relocs(symtab, layout, rd); }
a2fb1b05 696
6d013333
ILT
697 // The number of local symbols in the input symbol table.
698 virtual unsigned int
699 local_symbol_count() const
700 { return this->do_local_symbol_count(); }
701
7bf1f802
ILT
702 // Initial local symbol processing: count the number of local symbols
703 // in the output symbol table and dynamic symbol table; add local symbol
704 // names to *POOL and *DYNPOOL.
705 void
706 count_local_symbols(Stringpool_template<char>* pool,
707 Stringpool_template<char>* dynpool)
708 { return this->do_count_local_symbols(pool, dynpool); }
709
710 // Set the values of the local symbols, set the output symbol table
711 // indexes for the local variables, and set the offset where local
712 // symbol information will be stored. Returns the new local symbol index.
713 unsigned int
ef15dade
ST
714 finalize_local_symbols(unsigned int index, off_t off, Symbol_table* symtab)
715 { return this->do_finalize_local_symbols(index, off, symtab); }
7bf1f802
ILT
716
717 // Set the output dynamic symbol table indexes for the local variables.
c06b7b0b 718 unsigned int
7bf1f802
ILT
719 set_local_dynsym_indexes(unsigned int index)
720 { return this->do_set_local_dynsym_indexes(index); }
721
722 // Set the offset where local dynamic symbol information will be stored.
723 unsigned int
724 set_local_dynsym_offset(off_t off)
725 { return this->do_set_local_dynsym_offset(off); }
75f65a3e 726
61ba1cf9
ILT
727 // Relocate the input sections and write out the local symbols.
728 void
2ea97941
ILT
729 relocate(const Symbol_table* symtab, const Layout* layout, Output_file* of)
730 { return this->do_relocate(symtab, layout, of); }
61ba1cf9 731
a783673b
ILT
732 // Return whether an input section is being included in the link.
733 bool
5a6f7e2d 734 is_section_included(unsigned int shndx) const
a783673b 735 {
ef9beddf
ILT
736 gold_assert(shndx < this->output_sections_.size());
737 return this->output_sections_[shndx] != NULL;
a783673b
ILT
738 }
739
ef9beddf
ILT
740 // Given a section index, return the corresponding Output_section.
741 // The return value will be NULL if the section is not included in
742 // the link.
743 Output_section*
744 output_section(unsigned int shndx) const
730cdc88 745 {
ef9beddf
ILT
746 gold_assert(shndx < this->output_sections_.size());
747 return this->output_sections_[shndx];
730cdc88
ILT
748 }
749
2b328d4e
DK
750 // The the output section of the input section with index SHNDX.
751 // This is only used currently to remove a section from the link in
752 // relaxation.
753 void
754 set_output_section(unsigned int shndx, Output_section* os)
755 {
756 gold_assert(shndx < this->output_sections_.size());
757 this->output_sections_[shndx] = os;
758 }
759
ef9beddf
ILT
760 // Given a section index, return the offset in the Output_section.
761 // The return value will be -1U if the section is specially mapped,
762 // such as a merge section.
763 uint64_t
764 output_section_offset(unsigned int shndx) const
765 { return this->do_output_section_offset(shndx); }
a783673b 766
ead1e424 767 // Set the offset of an input section within its output section.
5995b570 768 void
ef9beddf
ILT
769 set_section_offset(unsigned int shndx, uint64_t off)
770 { this->do_set_section_offset(shndx, off); }
e94cf127 771
730cdc88
ILT
772 // Return true if we need to wait for output sections to be written
773 // before we can apply relocations. This is true if the object has
774 // any relocations for sections which require special handling, such
775 // as the exception frame section.
776 bool
17a1d0a9 777 relocs_must_follow_section_writes() const
730cdc88
ILT
778 { return this->relocs_must_follow_section_writes_; }
779
4625f782
ILT
780 // Return the object merge map.
781 Object_merge_map*
782 merge_map() const
783 { return this->object_merge_map_; }
784
785 // Set the object merge map.
786 void
787 set_merge_map(Object_merge_map* object_merge_map)
788 {
789 gold_assert(this->object_merge_map_ == NULL);
790 this->object_merge_map_ = object_merge_map;
791 }
792
6a74a719
ILT
793 // Record the relocatable reloc info for an input reloc section.
794 void
795 set_relocatable_relocs(unsigned int reloc_shndx, Relocatable_relocs* rr)
796 {
797 gold_assert(reloc_shndx < this->shnum());
798 (*this->map_to_relocatable_relocs_)[reloc_shndx] = rr;
799 }
800
801 // Get the relocatable reloc info for an input reloc section.
802 Relocatable_relocs*
803 relocatable_relocs(unsigned int reloc_shndx)
804 {
805 gold_assert(reloc_shndx < this->shnum());
806 return (*this->map_to_relocatable_relocs_)[reloc_shndx];
807 }
808
5995b570
CC
809 // Layout sections whose layout was deferred while waiting for
810 // input files from a plugin.
811 void
2ea97941
ILT
812 layout_deferred_sections(Layout* layout)
813 { this->do_layout_deferred_sections(layout); }
5995b570 814
a783673b 815 protected:
ef9beddf
ILT
816 // The output section to be used for each input section, indexed by
817 // the input section number. The output section is NULL if the
818 // input section is to be discarded.
819 typedef std::vector<Output_section*> Output_sections;
e94cf127 820
92e059d8
ILT
821 // Read the relocs--implemented by child class.
822 virtual void
823 do_read_relocs(Read_relocs_data*) = 0;
824
6d03d481
ST
825 // Process the relocs--implemented by child class.
826 virtual void
ad0f2072 827 do_gc_process_relocs(Symbol_table*, Layout*, Read_relocs_data*) = 0;
6d03d481 828
92e059d8
ILT
829 // Scan the relocs--implemented by child class.
830 virtual void
ad0f2072 831 do_scan_relocs(Symbol_table*, Layout*, Read_relocs_data*) = 0;
92e059d8 832
6d013333
ILT
833 // Return the number of local symbols--implemented by child class.
834 virtual unsigned int
835 do_local_symbol_count() const = 0;
836
7bf1f802
ILT
837 // Count local symbols--implemented by child class.
838 virtual void
839 do_count_local_symbols(Stringpool_template<char>*,
6a74a719 840 Stringpool_template<char>*) = 0;
75f65a3e 841
6a74a719
ILT
842 // Finalize the local symbols. Set the output symbol table indexes
843 // for the local variables, and set the offset where local symbol
844 // information will be stored.
7bf1f802 845 virtual unsigned int
ef15dade 846 do_finalize_local_symbols(unsigned int, off_t, Symbol_table*) = 0;
7bf1f802
ILT
847
848 // Set the output dynamic symbol table indexes for the local variables.
849 virtual unsigned int
850 do_set_local_dynsym_indexes(unsigned int) = 0;
851
852 // Set the offset where local dynamic symbol information will be stored.
853 virtual unsigned int
854 do_set_local_dynsym_offset(off_t) = 0;
855
61ba1cf9
ILT
856 // Relocate the input sections and write out the local
857 // symbols--implemented by child class.
858 virtual void
ad0f2072 859 do_relocate(const Symbol_table* symtab, const Layout*, Output_file* of) = 0;
92e059d8 860
ef9beddf
ILT
861 // Get the offset of a section--implemented by child class.
862 virtual uint64_t
863 do_output_section_offset(unsigned int shndx) const = 0;
b8e6aad9 864
ef9beddf
ILT
865 // Set the offset of a section--implemented by child class.
866 virtual void
867 do_set_section_offset(unsigned int shndx, uint64_t off) = 0;
e94cf127 868
5995b570
CC
869 // Layout sections whose layout was deferred while waiting for
870 // input files from a plugin--implemented by child class.
871 virtual void
872 do_layout_deferred_sections(Layout*) = 0;
873
ef9beddf
ILT
874 // Return the vector mapping input sections to output sections.
875 Output_sections&
876 output_sections()
877 { return this->output_sections_; }
e94cf127 878
ef9beddf
ILT
879 const Output_sections&
880 output_sections() const
881 { return this->output_sections_; }
e94cf127 882
6a74a719
ILT
883 // Set the size of the relocatable relocs array.
884 void
885 size_relocatable_relocs()
886 {
887 this->map_to_relocatable_relocs_ =
888 new std::vector<Relocatable_relocs*>(this->shnum());
889 }
890
730cdc88
ILT
891 // Record that we must wait for the output sections to be written
892 // before applying relocations.
893 void
894 set_relocs_must_follow_section_writes()
895 { this->relocs_must_follow_section_writes_ = true; }
896
bae7f79e 897 private:
a2fb1b05 898 // Mapping from input sections to output section.
ef9beddf 899 Output_sections output_sections_;
6a74a719
ILT
900 // Mapping from input section index to the information recorded for
901 // the relocations. This is only used for a relocatable link.
902 std::vector<Relocatable_relocs*>* map_to_relocatable_relocs_;
4625f782
ILT
903 // Mappings for merge sections. This is managed by the code in the
904 // Merge_map class.
905 Object_merge_map* object_merge_map_;
730cdc88
ILT
906 // Whether we need to wait for output sections to be written before
907 // we can apply relocations.
908 bool relocs_must_follow_section_writes_;
6d03d481
ST
909 // Used to store the relocs data computed by the Read_relocs pass.
910 // Used during garbage collection of unused sections.
911 Read_relocs_data* rd_;
912 // Used to store the symbols data computed by the Read_symbols pass.
913 // Again used during garbage collection when laying out referenced
914 // sections.
915 gold::Symbols_data *sd_;
bae7f79e
ILT
916};
917
a9a60db6
ILT
918// This class is used to handle relocations against a section symbol
919// in an SHF_MERGE section. For such a symbol, we need to know the
920// addend of the relocation before we can determine the final value.
921// The addend gives us the location in the input section, and we can
922// determine how it is mapped to the output section. For a
923// non-section symbol, we apply the addend to the final value of the
924// symbol; that is done in finalize_local_symbols, and does not use
925// this class.
926
927template<int size>
928class Merged_symbol_value
929{
930 public:
931 typedef typename elfcpp::Elf_types<size>::Elf_Addr Value;
932
933 // We use a hash table to map offsets in the input section to output
934 // addresses.
935 typedef Unordered_map<section_offset_type, Value> Output_addresses;
936
937 Merged_symbol_value(Value input_value, Value output_start_address)
938 : input_value_(input_value), output_start_address_(output_start_address),
939 output_addresses_()
940 { }
941
942 // Initialize the hash table.
943 void
944 initialize_input_to_output_map(const Relobj*, unsigned int input_shndx);
945
946 // Release the hash table to save space.
947 void
948 free_input_to_output_map()
949 { this->output_addresses_.clear(); }
950
951 // Get the output value corresponding to an addend. The object and
952 // input section index are passed in because the caller will have
953 // them; otherwise we could store them here.
954 Value
955 value(const Relobj* object, unsigned int input_shndx, Value addend) const
956 {
7f649c59
ILT
957 // This is a relocation against a section symbol. ADDEND is the
958 // offset in the section. The result should be the start of some
959 // merge area. If the object file wants something else, it should
960 // use a regular symbol rather than a section symbol.
961 // Unfortunately, PR 6658 shows a case in which the object file
962 // refers to the section symbol, but uses a negative ADDEND to
963 // compensate for a PC relative reloc. We can't handle the
964 // general case. However, we can handle the special case of a
965 // negative addend, by assuming that it refers to the start of the
966 // section. Of course, that means that we have to guess when
967 // ADDEND is negative. It is normal to see a 32-bit value here
968 // even when the template parameter size is 64, as 64-bit object
969 // file formats have 32-bit relocations. We know this is a merge
970 // section, so we know it has to fit into memory. So we assume
971 // that we won't see a value larger than a large 32-bit unsigned
972 // value. This will break objects with very very large merge
973 // sections; they probably break in other ways anyhow.
974 Value input_offset = this->input_value_;
975 if (addend < 0xffffff00)
976 {
977 input_offset += addend;
978 addend = 0;
979 }
a9a60db6
ILT
980 typename Output_addresses::const_iterator p =
981 this->output_addresses_.find(input_offset);
982 if (p != this->output_addresses_.end())
7f649c59 983 return p->second + addend;
a9a60db6 984
7f649c59
ILT
985 return (this->value_from_output_section(object, input_shndx, input_offset)
986 + addend);
a9a60db6
ILT
987 }
988
989 private:
990 // Get the output value for an input offset if we couldn't find it
991 // in the hash table.
992 Value
993 value_from_output_section(const Relobj*, unsigned int input_shndx,
994 Value input_offset) const;
995
996 // The value of the section symbol in the input file. This is
997 // normally zero, but could in principle be something else.
998 Value input_value_;
999 // The start address of this merged section in the output file.
1000 Value output_start_address_;
1001 // A hash table which maps offsets in the input section to output
1002 // addresses. This only maps specific offsets, not all offsets.
1003 Output_addresses output_addresses_;
1004};
1005
b8e6aad9
ILT
1006// This POD class is holds the value of a symbol. This is used for
1007// local symbols, and for all symbols during relocation processing.
730cdc88
ILT
1008// For special sections, such as SHF_MERGE sections, this calls a
1009// function to get the final symbol value.
b8e6aad9
ILT
1010
1011template<int size>
1012class Symbol_value
1013{
1014 public:
1015 typedef typename elfcpp::Elf_types<size>::Elf_Addr Value;
1016
1017 Symbol_value()
7bf1f802 1018 : output_symtab_index_(0), output_dynsym_index_(-1U), input_shndx_(0),
d491d34e
ILT
1019 is_ordinary_shndx_(false), is_section_symbol_(false),
1020 is_tls_symbol_(false), has_output_value_(true)
a9a60db6 1021 { this->u_.value = 0; }
b8e6aad9
ILT
1022
1023 // Get the value of this symbol. OBJECT is the object in which this
1024 // symbol is defined, and ADDEND is an addend to add to the value.
1025 template<bool big_endian>
1026 Value
1027 value(const Sized_relobj<size, big_endian>* object, Value addend) const
1028 {
a9a60db6
ILT
1029 if (this->has_output_value_)
1030 return this->u_.value + addend;
1031 else
d491d34e
ILT
1032 {
1033 gold_assert(this->is_ordinary_shndx_);
1034 return this->u_.merged_symbol_value->value(object, this->input_shndx_,
1035 addend);
1036 }
b8e6aad9
ILT
1037 }
1038
1039 // Set the value of this symbol in the output symbol table.
1040 void
2ea97941
ILT
1041 set_output_value(Value value)
1042 { this->u_.value = value; }
a9a60db6
ILT
1043
1044 // For a section symbol in a merged section, we need more
1045 // information.
1046 void
1047 set_merged_symbol_value(Merged_symbol_value<size>* msv)
b8e6aad9 1048 {
a9a60db6
ILT
1049 gold_assert(this->is_section_symbol_);
1050 this->has_output_value_ = false;
1051 this->u_.merged_symbol_value = msv;
b8e6aad9
ILT
1052 }
1053
a9a60db6
ILT
1054 // Initialize the input to output map for a section symbol in a
1055 // merged section. We also initialize the value of a non-section
1056 // symbol in a merged section.
b8e6aad9 1057 void
a9a60db6 1058 initialize_input_to_output_map(const Relobj* object)
b8e6aad9 1059 {
a9a60db6
ILT
1060 if (!this->has_output_value_)
1061 {
d491d34e 1062 gold_assert(this->is_section_symbol_ && this->is_ordinary_shndx_);
a9a60db6
ILT
1063 Merged_symbol_value<size>* msv = this->u_.merged_symbol_value;
1064 msv->initialize_input_to_output_map(object, this->input_shndx_);
1065 }
b8e6aad9
ILT
1066 }
1067
a9a60db6
ILT
1068 // Free the input to output map for a section symbol in a merged
1069 // section.
1070 void
1071 free_input_to_output_map()
7bf1f802 1072 {
a9a60db6
ILT
1073 if (!this->has_output_value_)
1074 this->u_.merged_symbol_value->free_input_to_output_map();
7bf1f802
ILT
1075 }
1076
a9a60db6
ILT
1077 // Set the value of the symbol from the input file. This is only
1078 // called by count_local_symbols, to communicate the value to
1079 // finalize_local_symbols.
1080 void
2ea97941
ILT
1081 set_input_value(Value value)
1082 { this->u_.value = value; }
a9a60db6
ILT
1083
1084 // Return the input value. This is only called by
e94cf127 1085 // finalize_local_symbols and (in special cases) relocate_section.
a9a60db6
ILT
1086 Value
1087 input_value() const
1088 { return this->u_.value; }
1089
d3bbad62
ILT
1090 // Return whether we have set the index in the output symbol table
1091 // yet.
1092 bool
1093 is_output_symtab_index_set() const
1094 {
1095 return (this->output_symtab_index_ != 0
1096 && this->output_symtab_index_ != -2U);
1097 }
1098
1099 // Return whether this symbol may be discarded from the normal
1100 // symbol table.
1101 bool
1102 may_be_discarded_from_output_symtab() const
1103 {
1104 gold_assert(!this->is_output_symtab_index_set());
1105 return this->output_symtab_index_ != -2U;
1106 }
1107
1108 // Return whether this symbol has an entry in the output symbol
b8e6aad9
ILT
1109 // table.
1110 bool
d3bbad62
ILT
1111 has_output_symtab_entry() const
1112 {
1113 gold_assert(this->is_output_symtab_index_set());
1114 return this->output_symtab_index_ != -1U;
1115 }
b8e6aad9
ILT
1116
1117 // Return the index in the output symbol table.
1118 unsigned int
1119 output_symtab_index() const
1120 {
d3bbad62
ILT
1121 gold_assert(this->is_output_symtab_index_set()
1122 && this->output_symtab_index_ != -1U);
b8e6aad9
ILT
1123 return this->output_symtab_index_;
1124 }
1125
1126 // Set the index in the output symbol table.
1127 void
1128 set_output_symtab_index(unsigned int i)
1129 {
d3bbad62
ILT
1130 gold_assert(!this->is_output_symtab_index_set());
1131 gold_assert(i != 0 && i != -1U && i != -2U);
b8e6aad9
ILT
1132 this->output_symtab_index_ = i;
1133 }
1134
1135 // Record that this symbol should not go into the output symbol
1136 // table.
1137 void
1138 set_no_output_symtab_entry()
1139 {
1140 gold_assert(this->output_symtab_index_ == 0);
1141 this->output_symtab_index_ = -1U;
1142 }
1143
d3bbad62
ILT
1144 // Record that this symbol must go into the output symbol table,
1145 // because it there is a relocation that uses it.
1146 void
1147 set_must_have_output_symtab_entry()
1148 {
1149 gold_assert(!this->is_output_symtab_index_set());
1150 this->output_symtab_index_ = -2U;
1151 }
1152
7bf1f802
ILT
1153 // Set the index in the output dynamic symbol table.
1154 void
1155 set_needs_output_dynsym_entry()
1156 {
dceae3c1 1157 gold_assert(!this->is_section_symbol());
7bf1f802
ILT
1158 this->output_dynsym_index_ = 0;
1159 }
1160
d3bbad62 1161 // Return whether this symbol should go into the dynamic symbol
7bf1f802
ILT
1162 // table.
1163 bool
1164 needs_output_dynsym_entry() const
1165 {
1166 return this->output_dynsym_index_ != -1U;
1167 }
1168
d3bbad62
ILT
1169 // Return whether this symbol has an entry in the dynamic symbol
1170 // table.
1171 bool
1172 has_output_dynsym_entry() const
1173 {
1174 gold_assert(this->output_dynsym_index_ != 0);
1175 return this->output_dynsym_index_ != -1U;
1176 }
1177
7bf1f802
ILT
1178 // Record that this symbol should go into the dynamic symbol table.
1179 void
1180 set_output_dynsym_index(unsigned int i)
1181 {
1182 gold_assert(this->output_dynsym_index_ == 0);
d3bbad62 1183 gold_assert(i != 0 && i != -1U);
7bf1f802
ILT
1184 this->output_dynsym_index_ = i;
1185 }
1186
1187 // Return the index in the output dynamic symbol table.
1188 unsigned int
1189 output_dynsym_index() const
1190 {
dceae3c1
ILT
1191 gold_assert(this->output_dynsym_index_ != 0
1192 && this->output_dynsym_index_ != -1U);
7bf1f802
ILT
1193 return this->output_dynsym_index_;
1194 }
1195
b8e6aad9
ILT
1196 // Set the index of the input section in the input file.
1197 void
d491d34e 1198 set_input_shndx(unsigned int i, bool is_ordinary)
730cdc88
ILT
1199 {
1200 this->input_shndx_ = i;
ac1f0c21
ILT
1201 // input_shndx_ field is a bitfield, so make sure that the value
1202 // fits.
730cdc88 1203 gold_assert(this->input_shndx_ == i);
d491d34e 1204 this->is_ordinary_shndx_ = is_ordinary;
730cdc88 1205 }
b8e6aad9 1206
7bf1f802
ILT
1207 // Return the index of the input section in the input file.
1208 unsigned int
d491d34e
ILT
1209 input_shndx(bool* is_ordinary) const
1210 {
1211 *is_ordinary = this->is_ordinary_shndx_;
1212 return this->input_shndx_;
1213 }
7bf1f802 1214
a9a60db6
ILT
1215 // Whether this is a section symbol.
1216 bool
1217 is_section_symbol() const
1218 { return this->is_section_symbol_; }
1219
063f12a8
ILT
1220 // Record that this is a section symbol.
1221 void
1222 set_is_section_symbol()
dceae3c1
ILT
1223 {
1224 gold_assert(!this->needs_output_dynsym_entry());
1225 this->is_section_symbol_ = true;
1226 }
063f12a8 1227
7bf1f802
ILT
1228 // Record that this is a TLS symbol.
1229 void
1230 set_is_tls_symbol()
1231 { this->is_tls_symbol_ = true; }
1232
1233 // Return TRUE if this is a TLS symbol.
1234 bool
1235 is_tls_symbol() const
1236 { return this->is_tls_symbol_; }
1237
b8e6aad9
ILT
1238 private:
1239 // The index of this local symbol in the output symbol table. This
d3bbad62
ILT
1240 // will be 0 if no value has been assigned yet, and the symbol may
1241 // be omitted. This will be -1U if the symbol should not go into
1242 // the symbol table. This will be -2U if the symbol must go into
1243 // the symbol table, but no index has been assigned yet.
b8e6aad9 1244 unsigned int output_symtab_index_;
7bf1f802 1245 // The index of this local symbol in the dynamic symbol table. This
d3bbad62 1246 // will be -1U if the symbol should not go into the symbol table.
7bf1f802 1247 unsigned int output_dynsym_index_;
b8e6aad9
ILT
1248 // The section index in the input file in which this symbol is
1249 // defined.
d491d34e
ILT
1250 unsigned int input_shndx_ : 28;
1251 // Whether the section index is an ordinary index, not a special
1252 // value.
1253 bool is_ordinary_shndx_ : 1;
063f12a8
ILT
1254 // Whether this is a STT_SECTION symbol.
1255 bool is_section_symbol_ : 1;
7bf1f802
ILT
1256 // Whether this is a STT_TLS symbol.
1257 bool is_tls_symbol_ : 1;
a9a60db6
ILT
1258 // Whether this symbol has a value for the output file. This is
1259 // normally set to true during Layout::finalize, by
1260 // finalize_local_symbols. It will be false for a section symbol in
1261 // a merge section, as for such symbols we can not determine the
1262 // value to use in a relocation until we see the addend.
1263 bool has_output_value_ : 1;
1264 union
1265 {
1266 // This is used if has_output_value_ is true. Between
1267 // count_local_symbols and finalize_local_symbols, this is the
1268 // value in the input file. After finalize_local_symbols, it is
1269 // the value in the output file.
1270 Value value;
1271 // This is used if has_output_value_ is false. It points to the
1272 // information we need to get the value for a merge section.
1273 Merged_symbol_value<size>* merged_symbol_value;
1274 } u_;
b8e6aad9
ILT
1275};
1276
0a65a3a7
CC
1277// A GOT offset list. A symbol may have more than one GOT offset
1278// (e.g., when mixing modules compiled with two different TLS models),
1279// but will usually have at most one. GOT_TYPE identifies the type of
1280// GOT entry; its values are specific to each target.
1281
1282class Got_offset_list
1283{
1284 public:
1285 Got_offset_list()
1286 : got_type_(-1U), got_offset_(0), got_next_(NULL)
1287 { }
1288
1289 Got_offset_list(unsigned int got_type, unsigned int got_offset)
1290 : got_type_(got_type), got_offset_(got_offset), got_next_(NULL)
1291 { }
1292
1293 ~Got_offset_list()
1294 {
1295 if (this->got_next_ != NULL)
1296 {
1297 delete this->got_next_;
1298 this->got_next_ = NULL;
1299 }
1300 }
1301
1302 // Initialize the fields to their default values.
1303 void
1304 init()
1305 {
1306 this->got_type_ = -1U;
1307 this->got_offset_ = 0;
1308 this->got_next_ = NULL;
1309 }
1310
1311 // Set the offset for the GOT entry of type GOT_TYPE.
1312 void
1313 set_offset(unsigned int got_type, unsigned int got_offset)
1314 {
1315 if (this->got_type_ == -1U)
1316 {
1317 this->got_type_ = got_type;
1318 this->got_offset_ = got_offset;
1319 }
1320 else
1321 {
1322 for (Got_offset_list* g = this; g != NULL; g = g->got_next_)
1323 {
1324 if (g->got_type_ == got_type)
1325 {
1326 g->got_offset_ = got_offset;
1327 return;
1328 }
1329 }
1330 Got_offset_list* g = new Got_offset_list(got_type, got_offset);
1331 g->got_next_ = this->got_next_;
1332 this->got_next_ = g;
1333 }
1334 }
1335
1336 // Return the offset for a GOT entry of type GOT_TYPE.
1337 unsigned int
1338 get_offset(unsigned int got_type) const
1339 {
1340 for (const Got_offset_list* g = this; g != NULL; g = g->got_next_)
1341 {
1342 if (g->got_type_ == got_type)
1343 return g->got_offset_;
1344 }
1345 return -1U;
1346 }
1347
1348 private:
1349 unsigned int got_type_;
1350 unsigned int got_offset_;
1351 Got_offset_list* got_next_;
1352};
1353
364c7fa5
ILT
1354// This type is used to modify relocations for -fsplit-stack. It is
1355// indexed by relocation index, and means that the relocation at that
1356// index should use the symbol from the vector, rather than the one
1357// indicated by the relocation.
1358
1359class Reloc_symbol_changes
1360{
1361 public:
1362 Reloc_symbol_changes(size_t count)
1363 : vec_(count, NULL)
1364 { }
1365
1366 void
1367 set(size_t i, Symbol* sym)
1368 { this->vec_[i] = sym; }
1369
1370 const Symbol*
1371 operator[](size_t i) const
1372 { return this->vec_[i]; }
1373
1374 private:
1375 std::vector<Symbol*> vec_;
1376};
1377
14bfc3f5 1378// A regular object file. This is size and endian specific.
bae7f79e
ILT
1379
1380template<int size, bool big_endian>
f6ce93d6 1381class Sized_relobj : public Relobj
bae7f79e
ILT
1382{
1383 public:
c06b7b0b 1384 typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
730cdc88 1385 typedef std::vector<Symbol*> Symbols;
b8e6aad9 1386 typedef std::vector<Symbol_value<size> > Local_values;
c06b7b0b 1387
eff45813
CC
1388 static const Address invalid_address = static_cast<Address>(0) - 1;
1389
f6ce93d6 1390 Sized_relobj(const std::string& name, Input_file* input_file, off_t offset,
bae7f79e
ILT
1391 const typename elfcpp::Ehdr<size, big_endian>&);
1392
f6ce93d6 1393 ~Sized_relobj();
bae7f79e 1394
6d03d481
ST
1395 // Checks if the offset of input section SHNDX within its output
1396 // section is invalid.
1397 bool
1398 is_output_section_offset_invalid(unsigned int shndx) const
1399 { return this->get_output_section_offset(shndx) == invalid_address; }
1400
f733487b 1401 // Set up the object file based on TARGET.
bae7f79e 1402 void
c0a62865
DK
1403 setup()
1404 { this->do_setup(); }
bae7f79e 1405
7d9e3d98
ILT
1406 // Return the number of symbols. This is only valid after
1407 // Object::add_symbols has been called.
1408 unsigned int
1409 symbol_count() const
1410 { return this->local_symbol_count_ + this->symbols_.size(); }
1411
730cdc88
ILT
1412 // If SYM is the index of a global symbol in the object file's
1413 // symbol table, return the Symbol object. Otherwise, return NULL.
1414 Symbol*
1415 global_symbol(unsigned int sym) const
1416 {
1417 if (sym >= this->local_symbol_count_)
1418 {
1419 gold_assert(sym - this->local_symbol_count_ < this->symbols_.size());
1420 return this->symbols_[sym - this->local_symbol_count_];
1421 }
1422 return NULL;
1423 }
1424
1425 // Return the section index of symbol SYM. Set *VALUE to its value
d491d34e
ILT
1426 // in the object file. Set *IS_ORDINARY if this is an ordinary
1427 // section index, not a special code between SHN_LORESERVE and
1428 // SHN_HIRESERVE. Note that for a symbol which is not defined in
1429 // this object file, this will set *VALUE to 0 and return SHN_UNDEF;
1430 // it will not return the final value of the symbol in the link.
730cdc88 1431 unsigned int
d491d34e 1432 symbol_section_and_value(unsigned int sym, Address* value, bool* is_ordinary);
730cdc88
ILT
1433
1434 // Return a pointer to the Symbol_value structure which holds the
1435 // value of a local symbol.
1436 const Symbol_value<size>*
1437 local_symbol(unsigned int sym) const
1438 {
1439 gold_assert(sym < this->local_values_.size());
1440 return &this->local_values_[sym];
1441 }
1442
c06b7b0b
ILT
1443 // Return the index of local symbol SYM in the ordinary symbol
1444 // table. A value of -1U means that the symbol is not being output.
1445 unsigned int
1446 symtab_index(unsigned int sym) const
1447 {
b8e6aad9
ILT
1448 gold_assert(sym < this->local_values_.size());
1449 return this->local_values_[sym].output_symtab_index();
c06b7b0b
ILT
1450 }
1451
7bf1f802
ILT
1452 // Return the index of local symbol SYM in the dynamic symbol
1453 // table. A value of -1U means that the symbol is not being output.
1454 unsigned int
1455 dynsym_index(unsigned int sym) const
1456 {
1457 gold_assert(sym < this->local_values_.size());
1458 return this->local_values_[sym].output_dynsym_index();
1459 }
1460
6a74a719
ILT
1461 // Return the input section index of local symbol SYM.
1462 unsigned int
d491d34e 1463 local_symbol_input_shndx(unsigned int sym, bool* is_ordinary) const
6a74a719
ILT
1464 {
1465 gold_assert(sym < this->local_values_.size());
d491d34e 1466 return this->local_values_[sym].input_shndx(is_ordinary);
6a74a719
ILT
1467 }
1468
d3bbad62
ILT
1469 // Record that local symbol SYM must be in the output symbol table.
1470 void
1471 set_must_have_output_symtab_entry(unsigned int sym)
1472 {
1473 gold_assert(sym < this->local_values_.size());
1474 this->local_values_[sym].set_must_have_output_symtab_entry();
1475 }
1476
d1f003c6 1477 // Record that local symbol SYM needs a dynamic symbol entry.
7bf1f802
ILT
1478 void
1479 set_needs_output_dynsym_entry(unsigned int sym)
1480 {
1481 gold_assert(sym < this->local_values_.size());
1482 this->local_values_[sym].set_needs_output_dynsym_entry();
1483 }
1484
e727fa71 1485 // Return whether the local symbol SYMNDX has a GOT offset.
07f397ab 1486 // For TLS symbols, the GOT entry will hold its tp-relative offset.
e727fa71 1487 bool
0a65a3a7 1488 local_has_got_offset(unsigned int symndx, unsigned int got_type) const
e727fa71 1489 {
0a65a3a7
CC
1490 Local_got_offsets::const_iterator p =
1491 this->local_got_offsets_.find(symndx);
1492 return (p != this->local_got_offsets_.end()
1493 && p->second->get_offset(got_type) != -1U);
e727fa71
ILT
1494 }
1495
1496 // Return the GOT offset of the local symbol SYMNDX.
1497 unsigned int
0a65a3a7 1498 local_got_offset(unsigned int symndx, unsigned int got_type) const
e727fa71
ILT
1499 {
1500 Local_got_offsets::const_iterator p =
1501 this->local_got_offsets_.find(symndx);
1502 gold_assert(p != this->local_got_offsets_.end());
0a65a3a7
CC
1503 unsigned int off = p->second->get_offset(got_type);
1504 gold_assert(off != -1U);
1505 return off;
e727fa71
ILT
1506 }
1507
1508 // Set the GOT offset of the local symbol SYMNDX to GOT_OFFSET.
1509 void
0a65a3a7
CC
1510 set_local_got_offset(unsigned int symndx, unsigned int got_type,
1511 unsigned int got_offset)
07f397ab 1512 {
0a65a3a7
CC
1513 Local_got_offsets::const_iterator p =
1514 this->local_got_offsets_.find(symndx);
1515 if (p != this->local_got_offsets_.end())
1516 p->second->set_offset(got_type, got_offset);
07f397ab
ILT
1517 else
1518 {
0a65a3a7
CC
1519 Got_offset_list* g = new Got_offset_list(got_type, got_offset);
1520 std::pair<Local_got_offsets::iterator, bool> ins =
1521 this->local_got_offsets_.insert(std::make_pair(symndx, g));
07f397ab
ILT
1522 gold_assert(ins.second);
1523 }
1524 }
1525
ef9beddf
ILT
1526 // Get the offset of input section SHNDX within its output section.
1527 // This is -1 if the input section requires a special mapping, such
1528 // as a merge section. The output section can be found in the
1529 // output_sections_ field of the parent class Relobj.
1530 Address
1531 get_output_section_offset(unsigned int shndx) const
1532 {
1533 gold_assert(shndx < this->section_offsets_.size());
1534 return this->section_offsets_[shndx];
1535 }
1536
f7e2ee48
ILT
1537 // Return the name of the symbol that spans the given offset in the
1538 // specified section in this object. This is used only for error
1539 // messages and is not particularly efficient.
1540 bool
1541 get_symbol_location_info(unsigned int shndx, off_t offset,
1542 Symbol_location_info* info);
1543
e94cf127
CC
1544 // Look for a kept section corresponding to the given discarded section,
1545 // and return its output address. This is used only for relocations in
1546 // debugging sections.
1547 Address
1548 map_to_kept_section(unsigned int shndx, bool* found) const;
1549
6d013333 1550 protected:
c0a62865
DK
1551 // Set up.
1552 virtual void
1553 do_setup();
1554
a2fb1b05 1555 // Read the symbols.
bae7f79e 1556 void
12e14209 1557 do_read_symbols(Read_symbols_data*);
14bfc3f5 1558
6d013333
ILT
1559 // Return the number of local symbols.
1560 unsigned int
1561 do_local_symbol_count() const
1562 { return this->local_symbol_count_; }
1563
dbe717ef
ILT
1564 // Lay out the input sections.
1565 void
7e1edb90 1566 do_layout(Symbol_table*, Layout*, Read_symbols_data*);
dbe717ef 1567
5995b570
CC
1568 // Layout sections whose layout was deferred while waiting for
1569 // input files from a plugin.
1570 void
1571 do_layout_deferred_sections(Layout*);
1572
12e14209
ILT
1573 // Add the symbols to the symbol table.
1574 void
f488e4b0 1575 do_add_symbols(Symbol_table*, Read_symbols_data*, Layout*);
a2fb1b05 1576
92e059d8
ILT
1577 // Read the relocs.
1578 void
1579 do_read_relocs(Read_relocs_data*);
1580
6d03d481
ST
1581 // Process the relocs to find list of referenced sections. Used only
1582 // during garbage collection.
1583 void
ad0f2072 1584 do_gc_process_relocs(Symbol_table*, Layout*, Read_relocs_data*);
6d03d481 1585
92e059d8
ILT
1586 // Scan the relocs and adjust the symbol table.
1587 void
ad0f2072 1588 do_scan_relocs(Symbol_table*, Layout*, Read_relocs_data*);
92e059d8 1589
7bf1f802
ILT
1590 // Count the local symbols.
1591 void
1592 do_count_local_symbols(Stringpool_template<char>*,
1593 Stringpool_template<char>*);
1594
75f65a3e 1595 // Finalize the local symbols.
c06b7b0b 1596 unsigned int
ef15dade 1597 do_finalize_local_symbols(unsigned int, off_t, Symbol_table*);
7bf1f802
ILT
1598
1599 // Set the offset where local dynamic symbol information will be stored.
1600 unsigned int
1601 do_set_local_dynsym_indexes(unsigned int);
1602
1603 // Set the offset where local dynamic symbol information will be stored.
1604 unsigned int
1605 do_set_local_dynsym_offset(off_t);
75f65a3e 1606
61ba1cf9
ILT
1607 // Relocate the input sections and write out the local symbols.
1608 void
ad0f2072 1609 do_relocate(const Symbol_table* symtab, const Layout*, Output_file* of);
92e059d8 1610
a445fddf
ILT
1611 // Get the size of a section.
1612 uint64_t
1613 do_section_size(unsigned int shndx)
1614 { return this->elf_file_.section_size(shndx); }
1615
92e059d8
ILT
1616 // Get the name of a section.
1617 std::string
645f8123
ILT
1618 do_section_name(unsigned int shndx)
1619 { return this->elf_file_.section_name(shndx); }
61ba1cf9 1620
645f8123 1621 // Return the location of the contents of a section.
dbe717ef 1622 Object::Location
645f8123
ILT
1623 do_section_contents(unsigned int shndx)
1624 { return this->elf_file_.section_contents(shndx); }
f6ce93d6 1625
a3ad94ed
ILT
1626 // Return section flags.
1627 uint64_t
ef15dade
ST
1628 do_section_flags(unsigned int shndx);
1629
1630 // Return section entsize.
1631 uint64_t
1632 do_section_entsize(unsigned int shndx);
a3ad94ed 1633
88dd47ac
ILT
1634 // Return section address.
1635 uint64_t
1636 do_section_address(unsigned int shndx)
1637 { return this->elf_file_.section_addr(shndx); }
1638
730cdc88
ILT
1639 // Return section type.
1640 unsigned int
1641 do_section_type(unsigned int shndx)
1642 { return this->elf_file_.section_type(shndx); }
1643
f7e2ee48
ILT
1644 // Return the section link field.
1645 unsigned int
1646 do_section_link(unsigned int shndx)
1647 { return this->elf_file_.section_link(shndx); }
1648
4c50553d
ILT
1649 // Return the section info field.
1650 unsigned int
1651 do_section_info(unsigned int shndx)
1652 { return this->elf_file_.section_info(shndx); }
1653
a445fddf
ILT
1654 // Return the section alignment.
1655 uint64_t
1656 do_section_addralign(unsigned int shndx)
1657 { return this->elf_file_.section_addralign(shndx); }
1658
d491d34e
ILT
1659 // Return the Xindex structure to use.
1660 Xindex*
1661 do_initialize_xindex();
1662
92de84a6
ILT
1663 // Get symbol counts.
1664 void
1665 do_get_global_symbol_counts(const Symbol_table*, size_t*, size_t*) const;
1666
dde3f402
ILT
1667 // Get the global symbols.
1668 const Symbols*
1669 do_get_global_symbols() const
1670 { return &this->symbols_; }
1671
ef9beddf
ILT
1672 // Get the offset of a section.
1673 uint64_t
1674 do_output_section_offset(unsigned int shndx) const
eff45813
CC
1675 {
1676 Address off = this->get_output_section_offset(shndx);
1677 if (off == invalid_address)
1678 return -1ULL;
1679 return off;
1680 }
ef9beddf
ILT
1681
1682 // Set the offset of a section.
1683 void
1684 do_set_section_offset(unsigned int shndx, uint64_t off)
1685 {
1686 gold_assert(shndx < this->section_offsets_.size());
2b328d4e
DK
1687 this->section_offsets_[shndx] =
1688 (off == static_cast<uint64_t>(-1)
1689 ? invalid_address
1690 : convert_types<Address, uint64_t>(off));
c0a62865
DK
1691 }
1692
1693 // Adjust a section index if necessary.
1694 unsigned int
1695 adjust_shndx(unsigned int shndx)
1696 {
1697 if (shndx >= elfcpp::SHN_LORESERVE)
1698 shndx += this->elf_file_.large_shndx_offset();
1699 return shndx;
1700 }
1701
1702 // Initialize input to output maps for section symbols in merged
1703 // sections.
1704 void
1705 initialize_input_to_output_maps();
1706
1707 // Free the input to output maps for section symbols in merged
1708 // sections.
1709 void
1710 free_input_to_output_maps();
1711
1712 // Return symbol table section index.
1713 unsigned int
1714 symtab_shndx() const
1715 { return this->symtab_shndx_; }
1716
1717 // Allow a child class to access the ELF file.
1718 elfcpp::Elf_file<size, big_endian, Object>*
1719 elf_file()
1720 { return &this->elf_file_; }
1721
1722 // Allow a child class to access the local values.
1723 Local_values*
1724 local_values()
1725 { return &this->local_values_; }
1726
72adc4fa
DK
1727 // Views and sizes when relocating.
1728 struct View_size
1729 {
1730 unsigned char* view;
1731 typename elfcpp::Elf_types<size>::Elf_Addr address;
1732 off_t offset;
1733 section_size_type view_size;
1734 bool is_input_output_view;
1735 bool is_postprocessing_view;
1736 };
1737
1738 typedef std::vector<View_size> Views;
1739
1740 // This may be overriden by a child class.
1741 virtual void
ad0f2072 1742 do_relocate_sections(const Symbol_table* symtab, const Layout* layout,
72adc4fa
DK
1743 const unsigned char* pshdrs, Views* pviews);
1744
e7eca48c
DK
1745 // Allow a child to set output local symbol count.
1746 void
1747 set_output_local_symbol_count(unsigned int value)
1748 { this->output_local_symbol_count_ = value; }
1749
bae7f79e 1750 private:
a2fb1b05 1751 // For convenience.
f6ce93d6 1752 typedef Sized_relobj<size, big_endian> This;
a2fb1b05
ILT
1753 static const int ehdr_size = elfcpp::Elf_sizes<size>::ehdr_size;
1754 static const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
1755 static const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
75f65a3e
ILT
1756 typedef elfcpp::Shdr<size, big_endian> Shdr;
1757
ef9beddf
ILT
1758 // To keep track of discarded comdat sections, we need to map a member
1759 // section index to the object and section index of the corresponding
1760 // kept section.
1761 struct Kept_comdat_section
1762 {
1ef4d87f
ILT
1763 Kept_comdat_section(Relobj* a_object, unsigned int a_shndx)
1764 : object(a_object), shndx(a_shndx)
ef9beddf 1765 { }
1ef4d87f
ILT
1766 Relobj* object;
1767 unsigned int shndx;
ef9beddf 1768 };
1ef4d87f 1769 typedef std::map<unsigned int, Kept_comdat_section>
ef9beddf
ILT
1770 Kept_comdat_section_table;
1771
dbe717ef
ILT
1772 // Find the SHT_SYMTAB section, given the section headers.
1773 void
1774 find_symtab(const unsigned char* pshdrs);
1775
730cdc88
ILT
1776 // Return whether SHDR has the right flags for a GNU style exception
1777 // frame section.
1778 bool
1779 check_eh_frame_flags(const elfcpp::Shdr<size, big_endian>* shdr) const;
1780
1781 // Return whether there is a section named .eh_frame which might be
1782 // a GNU style exception frame section.
1783 bool
1784 find_eh_frame(const unsigned char* pshdrs, const char* names,
8383303e 1785 section_size_type names_size) const;
730cdc88 1786
a2fb1b05
ILT
1787 // Whether to include a section group in the link.
1788 bool
6a74a719 1789 include_section_group(Symbol_table*, Layout*, unsigned int, const char*,
e94cf127 1790 const unsigned char*, const char *, section_size_type,
a2fb1b05
ILT
1791 std::vector<bool>*);
1792
1793 // Whether to include a linkonce section in the link.
1794 bool
e94cf127 1795 include_linkonce_section(Layout*, unsigned int, const char*,
a2fb1b05
ILT
1796 const elfcpp::Shdr<size, big_endian>&);
1797
5995b570
CC
1798 // Layout an input section.
1799 void
1800 layout_section(Layout* layout, unsigned int shndx, const char* name,
1801 typename This::Shdr& shdr, unsigned int reloc_shndx,
1802 unsigned int reloc_type);
1803
61ba1cf9
ILT
1804 // Write section data to the output file. Record the views and
1805 // sizes in VIEWS for use when relocating.
1806 void
cb295612 1807 write_sections(const unsigned char* pshdrs, Output_file*, Views*);
61ba1cf9
ILT
1808
1809 // Relocate the sections in the output file.
1810 void
2ea97941 1811 relocate_sections(const Symbol_table* symtab, const Layout* layout,
ad0f2072 1812 const unsigned char* pshdrs, Views* pviews)
2ea97941 1813 { this->do_relocate_sections(symtab, layout, pshdrs, pviews); }
61ba1cf9 1814
7019cd25
ILT
1815 // Scan the input relocations for --emit-relocs.
1816 void
ad0f2072 1817 emit_relocs_scan(Symbol_table*, Layout*, const unsigned char* plocal_syms,
7019cd25
ILT
1818 const Read_relocs_data::Relocs_list::iterator&);
1819
1820 // Scan the input relocations for --emit-relocs, templatized on the
1821 // type of the relocation section.
1822 template<int sh_type>
1823 void
ad0f2072 1824 emit_relocs_scan_reltype(Symbol_table*, Layout*,
7019cd25
ILT
1825 const unsigned char* plocal_syms,
1826 const Read_relocs_data::Relocs_list::iterator&,
1827 Relocatable_relocs*);
1828
1829 // Emit the relocs for --emit-relocs.
1830 void
1831 emit_relocs(const Relocate_info<size, big_endian>*, unsigned int,
1832 unsigned int sh_type, const unsigned char* prelocs,
ef9beddf 1833 size_t reloc_count, Output_section*, Address output_offset,
7019cd25
ILT
1834 unsigned char* view, Address address,
1835 section_size_type view_size,
1836 unsigned char* reloc_view, section_size_type reloc_view_size);
1837
1838 // Emit the relocs for --emit-relocs, templatized on the type of the
1839 // relocation section.
1840 template<int sh_type>
1841 void
1842 emit_relocs_reltype(const Relocate_info<size, big_endian>*, unsigned int,
1843 const unsigned char* prelocs, size_t reloc_count,
ef9beddf 1844 Output_section*, Address output_offset,
7019cd25
ILT
1845 unsigned char* view, Address address,
1846 section_size_type view_size,
1847 unsigned char* reloc_view,
1848 section_size_type reloc_view_size);
1849
364c7fa5
ILT
1850 // A type shared by split_stack_adjust_reltype and find_functions.
1851 typedef std::map<section_offset_type, section_size_type> Function_offsets;
1852
1853 // Check for -fsplit-stack routines calling non-split-stack routines.
1854 void
1855 split_stack_adjust(const Symbol_table*, const unsigned char* pshdrs,
1856 unsigned int sh_type, unsigned int shndx,
1857 const unsigned char* prelocs, size_t reloc_count,
1858 unsigned char* view, section_size_type view_size,
1859 Reloc_symbol_changes** reloc_map);
1860
1861 template<int sh_type>
1862 void
1863 split_stack_adjust_reltype(const Symbol_table*, const unsigned char* pshdrs,
1864 unsigned int shndx, const unsigned char* prelocs,
1865 size_t reloc_count, unsigned char* view,
1866 section_size_type view_size,
1867 Reloc_symbol_changes** reloc_map);
1868
1869 // Find all functions in a section.
1870 void
1871 find_functions(const unsigned char* pshdrs, unsigned int shndx,
1872 Function_offsets*);
1873
61ba1cf9
ILT
1874 // Write out the local symbols.
1875 void
b8e6aad9 1876 write_local_symbols(Output_file*,
7bf1f802 1877 const Stringpool_template<char>*,
d491d34e
ILT
1878 const Stringpool_template<char>*,
1879 Output_symtab_xindex*,
1880 Output_symtab_xindex*);
61ba1cf9 1881
cb295612
ILT
1882 // Clear the local symbol information.
1883 void
1884 clear_local_symbols()
1885 {
1886 this->local_values_.clear();
1887 this->local_got_offsets_.clear();
cb295612
ILT
1888 }
1889
ef9beddf
ILT
1890 // Record a mapping from discarded section SHNDX to the corresponding
1891 // kept section.
1892 void
1ef4d87f
ILT
1893 set_kept_comdat_section(unsigned int shndx, Relobj* kept_object,
1894 unsigned int kept_shndx)
ef9beddf 1895 {
1ef4d87f
ILT
1896 Kept_comdat_section kept(kept_object, kept_shndx);
1897 this->kept_comdat_sections_.insert(std::make_pair(shndx, kept));
ef9beddf
ILT
1898 }
1899
1ef4d87f
ILT
1900 // Find the kept section corresponding to the discarded section
1901 // SHNDX. Return true if found.
1902 bool
1903 get_kept_comdat_section(unsigned int shndx, Relobj** kept_object,
1904 unsigned int* kept_shndx) const
ef9beddf
ILT
1905 {
1906 typename Kept_comdat_section_table::const_iterator p =
1907 this->kept_comdat_sections_.find(shndx);
1908 if (p == this->kept_comdat_sections_.end())
1ef4d87f
ILT
1909 return false;
1910 *kept_object = p->second.object;
1911 *kept_shndx = p->second.shndx;
1912 return true;
ef9beddf
ILT
1913 }
1914
07f397ab
ILT
1915 // The GOT offsets of local symbols. This map also stores GOT offsets
1916 // for tp-relative offsets for TLS symbols.
0a65a3a7 1917 typedef Unordered_map<unsigned int, Got_offset_list*> Local_got_offsets;
e727fa71 1918
07f397ab
ILT
1919 // The TLS GOT offsets of local symbols. The map stores the offsets
1920 // for either a single GOT entry that holds the module index of a TLS
1921 // symbol, or a pair of GOT entries containing the module index and
1922 // dtv-relative offset.
1923 struct Tls_got_entry
1924 {
1925 Tls_got_entry(int got_offset, bool have_pair)
1926 : got_offset_(got_offset),
1927 have_pair_(have_pair)
1928 { }
1929 int got_offset_;
1930 bool have_pair_;
1931 };
1932 typedef Unordered_map<unsigned int, Tls_got_entry> Local_tls_got_offsets;
1933
5995b570
CC
1934 // Saved information for sections whose layout was deferred.
1935 struct Deferred_layout
1936 {
1937 static const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
1938 Deferred_layout(unsigned int shndx, const char* name,
1939 const unsigned char* pshdr,
1940 unsigned int reloc_shndx, unsigned int reloc_type)
1941 : shndx_(shndx), name_(name), reloc_shndx_(reloc_shndx),
1942 reloc_type_(reloc_type)
1943 {
1944 memcpy(this->shdr_data_, pshdr, shdr_size);
1945 }
1946 unsigned int shndx_;
1947 std::string name_;
1948 unsigned int reloc_shndx_;
1949 unsigned int reloc_type_;
1950 unsigned char shdr_data_[shdr_size];
1951 };
1952
645f8123
ILT
1953 // General access to the ELF file.
1954 elfcpp::Elf_file<size, big_endian, Object> elf_file_;
bae7f79e 1955 // Index of SHT_SYMTAB section.
645f8123 1956 unsigned int symtab_shndx_;
61ba1cf9
ILT
1957 // The number of local symbols.
1958 unsigned int local_symbol_count_;
1959 // The number of local symbols which go into the output file.
1960 unsigned int output_local_symbol_count_;
7bf1f802
ILT
1961 // The number of local symbols which go into the output file's dynamic
1962 // symbol table.
1963 unsigned int output_local_dynsym_count_;
14bfc3f5 1964 // The entries in the symbol table for the external symbols.
730cdc88 1965 Symbols symbols_;
92de84a6
ILT
1966 // Number of symbols defined in object file itself.
1967 size_t defined_count_;
75f65a3e
ILT
1968 // File offset for local symbols.
1969 off_t local_symbol_offset_;
7bf1f802
ILT
1970 // File offset for local dynamic symbols.
1971 off_t local_dynsym_offset_;
61ba1cf9 1972 // Values of local symbols.
c06b7b0b 1973 Local_values local_values_;
07f397ab
ILT
1974 // GOT offsets for local non-TLS symbols, and tp-relative offsets
1975 // for TLS symbols, indexed by symbol number.
e727fa71 1976 Local_got_offsets local_got_offsets_;
ef9beddf 1977 // For each input section, the offset of the input section in its
eff45813 1978 // output section. This is INVALID_ADDRESS if the input section requires a
ef9beddf
ILT
1979 // special mapping.
1980 std::vector<Address> section_offsets_;
1981 // Table mapping discarded comdat sections to corresponding kept sections.
1982 Kept_comdat_section_table kept_comdat_sections_;
730cdc88
ILT
1983 // Whether this object has a GNU style .eh_frame section.
1984 bool has_eh_frame_;
805bb01c
DK
1985 // If this object has a GNU style .eh_frame section that is discarded in
1986 // output, record the index here. Otherwise it is -1U.
1987 unsigned int discarded_eh_frame_shndx_;
5995b570
CC
1988 // The list of sections whose layout was deferred.
1989 std::vector<Deferred_layout> deferred_layout_;
bae7f79e
ILT
1990};
1991
54dc6425 1992// A class to manage the list of all objects.
a2fb1b05 1993
54dc6425
ILT
1994class Input_objects
1995{
1996 public:
1997 Input_objects()
fd9d194f 1998 : relobj_list_(), dynobj_list_(), sonames_(), cref_(NULL)
54dc6425
ILT
1999 { }
2000
f6ce93d6
ILT
2001 // The type of the list of input relocateable objects.
2002 typedef std::vector<Relobj*> Relobj_list;
2003 typedef Relobj_list::const_iterator Relobj_iterator;
2004
2005 // The type of the list of input dynamic objects.
2006 typedef std::vector<Dynobj*> Dynobj_list;
2007 typedef Dynobj_list::const_iterator Dynobj_iterator;
54dc6425 2008
008db82e
ILT
2009 // Add an object to the list. Return true if all is well, or false
2010 // if this object should be ignored.
2011 bool
54dc6425
ILT
2012 add_object(Object*);
2013
92de84a6
ILT
2014 // Start processing an archive.
2015 void
2016 archive_start(Archive*);
2017
2018 // Stop processing an archive.
2019 void
2020 archive_stop(Archive*);
2021
e2827e5f
ILT
2022 // For each dynamic object, check whether we've seen all of its
2023 // explicit dependencies.
2024 void
2025 check_dynamic_dependencies() const;
2026
9a2d6984
ILT
2027 // Return whether an object was found in the system library
2028 // directory.
2029 bool
2030 found_in_system_library_directory(const Object*) const;
2031
92de84a6
ILT
2032 // Print symbol counts.
2033 void
2034 print_symbol_counts(const Symbol_table*) const;
2035
dde3f402
ILT
2036 // Print a cross reference table.
2037 void
2038 print_cref(const Symbol_table*, FILE*) const;
2039
f6ce93d6
ILT
2040 // Iterate over all regular objects.
2041
2042 Relobj_iterator
2043 relobj_begin() const
2044 { return this->relobj_list_.begin(); }
2045
2046 Relobj_iterator
2047 relobj_end() const
2048 { return this->relobj_list_.end(); }
2049
2050 // Iterate over all dynamic objects.
2051
2052 Dynobj_iterator
2053 dynobj_begin() const
2054 { return this->dynobj_list_.begin(); }
54dc6425 2055
f6ce93d6
ILT
2056 Dynobj_iterator
2057 dynobj_end() const
2058 { return this->dynobj_list_.end(); }
54dc6425
ILT
2059
2060 // Return whether we have seen any dynamic objects.
2061 bool
2062 any_dynamic() const
f6ce93d6 2063 { return !this->dynobj_list_.empty(); }
54dc6425 2064
fa17a3f4
ILT
2065 // Return the number of non dynamic objects.
2066 int
2067 number_of_relobjs() const
2068 { return this->relobj_list_.size(); }
2069
fe9a4c12
ILT
2070 // Return the number of input objects.
2071 int
2072 number_of_input_objects() const
2073 { return this->relobj_list_.size() + this->dynobj_list_.size(); }
2074
54dc6425
ILT
2075 private:
2076 Input_objects(const Input_objects&);
2077 Input_objects& operator=(const Input_objects&);
2078
008db82e 2079 // The list of ordinary objects included in the link.
f6ce93d6 2080 Relobj_list relobj_list_;
008db82e 2081 // The list of dynamic objects included in the link.
f6ce93d6 2082 Dynobj_list dynobj_list_;
008db82e
ILT
2083 // SONAMEs that we have seen.
2084 Unordered_set<std::string> sonames_;
92de84a6
ILT
2085 // Manage cross-references if requested.
2086 Cref* cref_;
54dc6425 2087};
a2fb1b05 2088
92e059d8
ILT
2089// Some of the information we pass to the relocation routines. We
2090// group this together to avoid passing a dozen different arguments.
2091
2092template<int size, bool big_endian>
2093struct Relocate_info
2094{
92e059d8
ILT
2095 // Symbol table.
2096 const Symbol_table* symtab;
2097 // Layout.
2098 const Layout* layout;
2099 // Object being relocated.
f6ce93d6 2100 Sized_relobj<size, big_endian>* object;
92e059d8
ILT
2101 // Section index of relocation section.
2102 unsigned int reloc_shndx;
82bb573a
ILT
2103 // Section header of relocation section.
2104 const unsigned char* reloc_shdr;
92e059d8
ILT
2105 // Section index of section being relocated.
2106 unsigned int data_shndx;
82bb573a
ILT
2107 // Section header of data section.
2108 const unsigned char* data_shdr;
92e059d8
ILT
2109
2110 // Return a string showing the location of a relocation. This is
2111 // only used for error messages.
2112 std::string
2113 location(size_t relnum, off_t reloffset) const;
2114};
2115
5ac169d4
DK
2116// This is used to represent a section in an object and is used as the
2117// key type for various section maps.
2118typedef std::pair<Object*, unsigned int> Section_id;
2119
2120// This is similar to Section_id but is used when the section
2121// pointers are const.
2122typedef std::pair<const Object*, unsigned int> Const_section_id;
2123
2124// The hash value is based on the address of an object in memory during
2125// linking. It is okay to use this for looking up sections but never use
2126// this in an unordered container that we want to traverse in a repeatable
2127// manner.
2128
2129struct Section_id_hash
2130{
2131 size_t operator()(const Section_id& loc) const
2132 { return reinterpret_cast<uintptr_t>(loc.first) ^ loc.second; }
2133};
2134
2135struct Const_section_id_hash
2136{
2137 size_t operator()(const Const_section_id& loc) const
2138 { return reinterpret_cast<uintptr_t>(loc.first) ^ loc.second; }
2139};
2140
f6060a4d
ILT
2141// Return whether INPUT_FILE contains an ELF object start at file
2142// offset OFFSET. This sets *START to point to a view of the start of
2143// the file. It sets *READ_SIZE to the number of bytes in the view.
2144
2145extern bool
2146is_elf_object(Input_file* input_file, off_t offset,
2147 const unsigned char** start, int *read_size);
2148
bae7f79e 2149// Return an Object appropriate for the input file. P is BYTES long,
15f8229b
ILT
2150// and holds the ELF header. If PUNCONFIGURED is not NULL, then if
2151// this sees an object the linker is not configured to support, it
2152// sets *PUNCONFIGURED to true and returns NULL without giving an
2153// error message.
bae7f79e 2154
61ba1cf9
ILT
2155extern Object*
2156make_elf_object(const std::string& name, Input_file*,
2157 off_t offset, const unsigned char* p,
15f8229b 2158 section_offset_type bytes, bool* punconfigured);
bae7f79e
ILT
2159
2160} // end namespace gold
2161
2162#endif // !defined(GOLD_OBJECT_H)
This page took 0.296558 seconds and 4 git commands to generate.