Use partial register read/writes in transfer_regset
[deliverable/binutils-gdb.git] / gold / target.h
CommitLineData
14bfc3f5 1// target.h -- target support for gold -*- C++ -*-
bae7f79e 2
219d1afa 3// Copyright (C) 2006-2018 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// The abstract class Target is the interface for target specific
24// support. It defines abstract methods which each target must
25// implement. Typically there will be one target per processor, but
26// in some cases it may be necessary to have subclasses.
27
28// For speed and consistency we want to use inline functions to handle
29// relocation processing. So besides implementations of the abstract
30// methods, each target is expected to define a template
31// specialization of the relocation functions.
32
33#ifndef GOLD_TARGET_H
34#define GOLD_TARGET_H
35
14bfc3f5 36#include "elfcpp.h"
8851ecca 37#include "options.h"
cd72c291 38#include "parameters.h"
98ff9231 39#include "stringpool.h"
20e6d0d6 40#include "debug.h"
14bfc3f5 41
bae7f79e
ILT
42namespace gold
43{
44
14bfc3f5 45class Object;
364c7fa5 46class Relobj;
61ba1cf9 47template<int size, bool big_endian>
f6ce93d6 48class Sized_relobj;
6fa2a40b
CC
49template<int size, bool big_endian>
50class Sized_relobj_file;
6a74a719 51class Relocatable_relocs;
92e059d8 52template<int size, bool big_endian>
2c54b4f4 53struct Relocate_info;
364c7fa5 54class Reloc_symbol_changes;
f6ce93d6
ILT
55class Symbol;
56template<int size>
57class Sized_symbol;
58class Symbol_table;
7223e9ca 59class Output_data;
dd74ae06 60class Output_data_got_base;
730cdc88 61class Output_section;
d5b40221 62class Input_objects;
f625ae50 63class Task;
dc3714f3 64struct Symbol_location;
98ff9231 65class Versions;
14bfc3f5
ILT
66
67// The abstract class for target specific handling.
68
bae7f79e
ILT
69class Target
70{
71 public:
14bfc3f5
ILT
72 virtual ~Target()
73 { }
74
75 // Return the bit size that this target implements. This should
76 // return 32 or 64.
77 int
78 get_size() const
75f65a3e 79 { return this->pti_->size; }
14bfc3f5
ILT
80
81 // Return whether this target is big-endian.
82 bool
83 is_big_endian() const
75f65a3e 84 { return this->pti_->is_big_endian; }
14bfc3f5 85
61ba1cf9
ILT
86 // Machine code to store in e_machine field of ELF header.
87 elfcpp::EM
88 machine_code() const
89 { return this->pti_->machine_code; }
90
d5b40221
DK
91 // Processor specific flags to store in e_flags field of ELF header.
92 elfcpp::Elf_Word
93 processor_specific_flags() const
94 { return this->processor_specific_flags_; }
95
96 // Whether processor specific flags are set at least once.
97 bool
98 are_processor_specific_flags_set() const
99 { return this->are_processor_specific_flags_set_; }
100
14bfc3f5
ILT
101 // Whether this target has a specific make_symbol function.
102 bool
103 has_make_symbol() const
75f65a3e 104 { return this->pti_->has_make_symbol; }
14bfc3f5
ILT
105
106 // Whether this target has a specific resolve function.
107 bool
108 has_resolve() const
75f65a3e
ILT
109 { return this->pti_->has_resolve; }
110
c51e6221
ILT
111 // Whether this target has a specific code fill function.
112 bool
113 has_code_fill() const
114 { return this->pti_->has_code_fill; }
115
dbe717ef
ILT
116 // Return the default name of the dynamic linker.
117 const char*
118 dynamic_linker() const
119 { return this->pti_->dynamic_linker; }
120
75f65a3e 121 // Return the default address to use for the text segment.
be2884c1
CC
122 // If a -z max-page-size argument has set the ABI page size
123 // to a value larger than the default starting address,
124 // bump the starting address up to the page size, to avoid
125 // misaligning the text segment in the file.
75f65a3e 126 uint64_t
0c5e9c22 127 default_text_segment_address() const
be2884c1
CC
128 {
129 uint64_t addr = this->pti_->default_text_segment_address;
130 uint64_t pagesize = this->abi_pagesize();
131 if (addr < pagesize)
132 addr = pagesize;
133 return addr;
134 }
75f65a3e
ILT
135
136 // Return the ABI specified page size.
137 uint64_t
138 abi_pagesize() const
cd72c291 139 {
8851ecca
ILT
140 if (parameters->options().max_page_size() > 0)
141 return parameters->options().max_page_size();
cd72c291
ILT
142 else
143 return this->pti_->abi_pagesize;
144 }
75f65a3e
ILT
145
146 // Return the common page size used on actual systems.
147 uint64_t
148 common_pagesize() const
cd72c291 149 {
8851ecca
ILT
150 if (parameters->options().common_page_size() > 0)
151 return std::min(parameters->options().common_page_size(),
cd72c291
ILT
152 this->abi_pagesize());
153 else
154 return std::min(this->pti_->common_pagesize,
155 this->abi_pagesize());
156 }
14bfc3f5 157
2e702c99
RM
158 // Return whether PF_X segments must contain nothing but the contents of
159 // SHF_EXECINSTR sections (no non-executable data, no headers).
160 bool
161 isolate_execinstr() const
162 { return this->pti_->isolate_execinstr; }
163
164 uint64_t
165 rosegment_gap() const
166 { return this->pti_->rosegment_gap; }
167
35cdfc9a
ILT
168 // If we see some object files with .note.GNU-stack sections, and
169 // some objects files without them, this returns whether we should
170 // consider the object files without them to imply that the stack
171 // should be executable.
172 bool
173 is_default_stack_executable() const
174 { return this->pti_->is_default_stack_executable; }
175
0864d551
ILT
176 // Return a character which may appear as a prefix for a wrap
177 // symbol. If this character appears, we strip it when checking for
178 // wrapping and add it back when forming the final symbol name.
179 // This should be '\0' if not special prefix is required, which is
180 // the normal case.
181 char
182 wrap_char() const
183 { return this->pti_->wrap_char; }
184
8a5e3e08
ILT
185 // Return the special section index which indicates a small common
186 // symbol. This will return SHN_UNDEF if there are no small common
187 // symbols.
188 elfcpp::Elf_Half
189 small_common_shndx() const
190 { return this->pti_->small_common_shndx; }
191
192 // Return values to add to the section flags for the section holding
193 // small common symbols.
194 elfcpp::Elf_Xword
195 small_common_section_flags() const
196 {
197 gold_assert(this->pti_->small_common_shndx != elfcpp::SHN_UNDEF);
198 return this->pti_->small_common_section_flags;
199 }
200
201 // Return the special section index which indicates a large common
202 // symbol. This will return SHN_UNDEF if there are no large common
203 // symbols.
204 elfcpp::Elf_Half
205 large_common_shndx() const
206 { return this->pti_->large_common_shndx; }
207
208 // Return values to add to the section flags for the section holding
209 // large common symbols.
210 elfcpp::Elf_Xword
211 large_common_section_flags() const
212 {
213 gold_assert(this->pti_->large_common_shndx != elfcpp::SHN_UNDEF);
214 return this->pti_->large_common_section_flags;
215 }
216
217 // This hook is called when an output section is created.
218 void
219 new_output_section(Output_section* os) const
220 { this->do_new_output_section(os); }
221
5a6f7e2d
ILT
222 // This is called to tell the target to complete any sections it is
223 // handling. After this all sections must have their final size.
224 void
f59f41f3
DK
225 finalize_sections(Layout* layout, const Input_objects* input_objects,
226 Symbol_table* symtab)
227 { return this->do_finalize_sections(layout, input_objects, symtab); }
5a6f7e2d 228
ab5c9e90
ILT
229 // Return the value to use for a global symbol which needs a special
230 // value in the dynamic symbol table. This will only be called if
231 // the backend first calls symbol->set_needs_dynsym_value().
232 uint64_t
233 dynsym_value(const Symbol* sym) const
234 { return this->do_dynsym_value(sym); }
235
c51e6221
ILT
236 // Return a string to use to fill out a code section. This is
237 // basically one or more NOPS which must fill out the specified
238 // length in bytes.
239 std::string
8851ecca 240 code_fill(section_size_type length) const
c51e6221
ILT
241 { return this->do_code_fill(length); }
242
9a2d6984
ILT
243 // Return whether SYM is known to be defined by the ABI. This is
244 // used to avoid inappropriate warnings about undefined symbols.
245 bool
9c2d0ef9 246 is_defined_by_abi(const Symbol* sym) const
9a2d6984
ILT
247 { return this->do_is_defined_by_abi(sym); }
248
36959681
ILT
249 // Adjust the output file header before it is written out. VIEW
250 // points to the header in external form. LEN is the length.
251 void
cc84c10b 252 adjust_elf_header(unsigned char* view, int len)
36959681
ILT
253 { return this->do_adjust_elf_header(view, len); }
254
9d5781f8
AM
255 // Return address and size to plug into eh_frame FDEs associated with a PLT.
256 void
257 plt_fde_location(const Output_data* plt, unsigned char* oview,
258 uint64_t* address, off_t* len) const
259 { return this->do_plt_fde_location(plt, oview, address, len); }
260
bb04269c
DK
261 // Return whether NAME is a local label name. This is used to implement the
262 // --discard-locals options.
263 bool
264 is_local_label_name(const char* name) const
265 { return this->do_is_local_label_name(name); }
266
e291e7b9
ILT
267 // Get the symbol index to use for a target specific reloc.
268 unsigned int
269 reloc_symbol_index(void* arg, unsigned int type) const
270 { return this->do_reloc_symbol_index(arg, type); }
271
272 // Get the addend to use for a target specific reloc.
273 uint64_t
274 reloc_addend(void* arg, unsigned int type, uint64_t addend) const
275 { return this->do_reloc_addend(arg, type, addend); }
276
19fec8c1 277 // Return the PLT address to use for a global symbol.
67181c72
ILT
278 uint64_t
279 plt_address_for_global(const Symbol* sym) const
280 { return this->do_plt_address_for_global(sym); }
281
19fec8c1 282 // Return the PLT address to use for a local symbol.
67181c72
ILT
283 uint64_t
284 plt_address_for_local(const Relobj* object, unsigned int symndx) const
285 { return this->do_plt_address_for_local(object, symndx); }
7223e9ca 286
bd73a62d
AM
287 // Return the offset to use for the GOT_INDX'th got entry which is
288 // for a local tls symbol specified by OBJECT, SYMNDX.
289 int64_t
290 tls_offset_for_local(const Relobj* object,
291 unsigned int symndx,
292 unsigned int got_indx) const
293 { return do_tls_offset_for_local(object, symndx, got_indx); }
294
295 // Return the offset to use for the GOT_INDX'th got entry which is
296 // for global tls symbol GSYM.
297 int64_t
298 tls_offset_for_global(Symbol* gsym, unsigned int got_indx) const
299 { return do_tls_offset_for_global(gsym, got_indx); }
300
dc3714f3
AM
301 // For targets that use function descriptors, if LOC is the location
302 // of a function, modify it to point at the function entry location.
303 void
304 function_location(Symbol_location* loc) const
305 { return do_function_location(loc); }
306
b3ce541e
ILT
307 // Return whether this target can use relocation types to determine
308 // if a function's address is taken.
309 bool
310 can_check_for_function_pointers() const
311 { return this->do_can_check_for_function_pointers(); }
312
313 // Return whether a relocation to a merged section can be processed
314 // to retrieve the contents.
315 bool
316 can_icf_inline_merge_sections () const
317 { return this->pti_->can_icf_inline_merge_sections; }
318
319 // Whether a section called SECTION_NAME may have function pointers to
320 // sections not eligible for safe ICF folding.
321 virtual bool
322 section_may_have_icf_unsafe_pointers(const char* section_name) const
323 { return this->do_section_may_have_icf_unsafe_pointers(section_name); }
324
02d7cd44
ILT
325 // Return the base to use for the PC value in an FDE when it is
326 // encoded using DW_EH_PE_datarel. This does not appear to be
327 // documented anywhere, but it is target specific. Any use of
328 // DW_EH_PE_datarel in gcc requires defining a special macro
329 // (ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX) to output the value.
330 uint64_t
331 ehframe_datarel_base() const
332 { return this->do_ehframe_datarel_base(); }
333
4d625b70 334 // Return true if a reference to SYM from a reloc at *PRELOC
b6848d3c
ILT
335 // means that the current function may call an object compiled
336 // without -fsplit-stack. SYM is known to be defined in an object
337 // compiled without -fsplit-stack.
338 bool
bd8d853f
MK
339 is_call_to_non_split(const Symbol* sym, const unsigned char* preloc,
340 const unsigned char* view,
341 section_size_type view_size) const
342 { return this->do_is_call_to_non_split(sym, preloc, view, view_size); }
b6848d3c 343
364c7fa5
ILT
344 // A function starts at OFFSET in section SHNDX in OBJECT. That
345 // function was compiled with -fsplit-stack, but it refers to a
346 // function which was compiled without -fsplit-stack. VIEW is a
347 // modifiable view of the section; VIEW_SIZE is the size of the
348 // view. The target has to adjust the function so that it allocates
349 // enough stack.
350 void
351 calls_non_split(Relobj* object, unsigned int shndx,
352 section_offset_type fnoffset, section_size_type fnsize,
6e0813d3 353 const unsigned char* prelocs, size_t reloc_count,
364c7fa5
ILT
354 unsigned char* view, section_size_type view_size,
355 std::string* from, std::string* to) const
356 {
6e0813d3
CC
357 this->do_calls_non_split(object, shndx, fnoffset, fnsize,
358 prelocs, reloc_count, view, view_size,
364c7fa5
ILT
359 from, to);
360 }
361
f733487b
DK
362 // Make an ELF object.
363 template<int size, bool big_endian>
364 Object*
365 make_elf_object(const std::string& name, Input_file* input_file,
366 off_t offset, const elfcpp::Ehdr<size, big_endian>& ehdr)
367 { return this->do_make_elf_object(name, input_file, offset, ehdr); }
368
c0a62865
DK
369 // Make an output section.
370 Output_section*
371 make_output_section(const char* name, elfcpp::Elf_Word type,
372 elfcpp::Elf_Xword flags)
373 { return this->do_make_output_section(name, type, flags); }
374
20e6d0d6
DK
375 // Return true if target wants to perform relaxation.
376 bool
377 may_relax() const
378 {
379 // Run the dummy relaxation pass twice if relaxation debugging is enabled.
380 if (is_debugging_enabled(DEBUG_RELAXATION))
381 return true;
382
383 return this->do_may_relax();
384 }
385
386 // Perform a relaxation pass. Return true if layout may be changed.
387 bool
c0a62865 388 relax(int pass, const Input_objects* input_objects, Symbol_table* symtab,
f625ae50 389 Layout* layout, const Task* task)
20e6d0d6
DK
390 {
391 // Run the dummy relaxation pass twice if relaxation debugging is enabled.
392 if (is_debugging_enabled(DEBUG_RELAXATION))
393 return pass < 2;
394
f625ae50 395 return this->do_relax(pass, input_objects, symtab, layout, task);
2e702c99 396 }
20e6d0d6 397
05a352e6
DK
398 // Return the target-specific name of attributes section. This is
399 // NULL if a target does not use attributes section or if it uses
400 // the default section name ".gnu.attributes".
401 const char*
402 attributes_section() const
403 { return this->pti_->attributes_section; }
404
405 // Return the vendor name of vendor attributes.
406 const char*
407 attributes_vendor() const
408 { return this->pti_->attributes_vendor; }
409
410 // Whether a section called NAME is an attribute section.
411 bool
412 is_attributes_section(const char* name) const
413 {
414 return ((this->pti_->attributes_section != NULL
415 && strcmp(name, this->pti_->attributes_section) == 0)
2e702c99 416 || strcmp(name, ".gnu.attributes") == 0);
05a352e6
DK
417 }
418
419 // Return a bit mask of argument types for attribute with TAG.
420 int
421 attribute_arg_type(int tag) const
422 { return this->do_attribute_arg_type(tag); }
423
424 // Return the attribute tag of the position NUM in the list of fixed
425 // attributes. Normally there is no reordering and
426 // attributes_order(NUM) == NUM.
427 int
428 attributes_order(int num) const
429 { return this->do_attributes_order(num); }
430
0d31c79d
DK
431 // When a target is selected as the default target, we call this method,
432 // which may be used for expensive, target-specific initialization.
433 void
434 select_as_default_target()
2e702c99 435 { this->do_select_as_default_target(); }
0d31c79d 436
200b2bb9
ILT
437 // Return the value to store in the EI_OSABI field in the ELF
438 // header.
439 elfcpp::ELFOSABI
440 osabi() const
441 { return this->osabi_; }
442
443 // Set the value to store in the EI_OSABI field in the ELF header.
444 void
445 set_osabi(elfcpp::ELFOSABI osabi)
446 { this->osabi_ = osabi; }
447
647f1574
DK
448 // Define target-specific standard symbols.
449 void
450 define_standard_symbols(Symbol_table* symtab, Layout* layout)
451 { this->do_define_standard_symbols(symtab, layout); }
452
921b5322
AM
453 // Return the output section name to use given an input section
454 // name, or NULL if no target specific name mapping is required.
455 // Set *PLEN to the length of the name if returning non-NULL.
456 const char*
457 output_section_name(const Relobj* relobj,
458 const char* name,
459 size_t* plen) const
460 { return this->do_output_section_name(relobj, name, plen); }
461
e81fea4d
AM
462 // Add any special sections for this symbol to the gc work list.
463 void
464 gc_mark_symbol(Symbol_table* symtab, Symbol* sym) const
465 { this->do_gc_mark_symbol(symtab, sym); }
466
a67858e0
CC
467 // Return the name of the entry point symbol.
468 const char*
469 entry_symbol_name() const
470 { return this->pti_->entry_symbol_name; }
471
8d9743bd
MK
472 // Return the size in bits of SHT_HASH entry.
473 int
474 hash_entry_size() const
475 { return this->pti_->hash_entry_size; }
476
bce5a025
CC
477 // Return the section type to use for unwind sections.
478 unsigned int
479 unwind_section_type() const
480 { return this->pti_->unwind_section_type; }
481
98ff9231
CC
482 // Whether the target has a custom set_dynsym_indexes method.
483 bool
484 has_custom_set_dynsym_indexes() const
485 { return this->do_has_custom_set_dynsym_indexes(); }
486
487 // Custom set_dynsym_indexes method for a target.
488 unsigned int
489 set_dynsym_indexes(std::vector<Symbol*>* dyn_symbols, unsigned int index,
490 std::vector<Symbol*>* syms, Stringpool* dynpool,
491 Versions* versions, Symbol_table* symtab) const
492 {
493 return this->do_set_dynsym_indexes(dyn_symbols, index, syms, dynpool,
494 versions, symtab);
495 }
496
918fc1f8
CC
497 // Get the custom dynamic tag value.
498 unsigned int
499 dynamic_tag_custom_value(elfcpp::DT tag) const
500 { return this->do_dynamic_tag_custom_value(tag); }
501
800d9823
CC
502 // Adjust the value written to the dynamic symbol table.
503 void
504 adjust_dyn_symbol(const Symbol* sym, unsigned char* view) const
505 { this->do_adjust_dyn_symbol(sym, view); }
506
99fd8cff
CC
507 // Return whether to include the section in the link.
508 bool
509 should_include_section(elfcpp::Elf_Word sh_type) const
510 { return this->do_should_include_section(sh_type); }
511
14bfc3f5 512 protected:
75f65a3e
ILT
513 // This struct holds the constant information for a child class. We
514 // use a struct to avoid the overhead of virtual function calls for
515 // simple information.
516 struct Target_info
517 {
518 // Address size (32 or 64).
519 int size;
520 // Whether the target is big endian.
521 bool is_big_endian;
61ba1cf9
ILT
522 // The code to store in the e_machine field of the ELF header.
523 elfcpp::EM machine_code;
75f65a3e
ILT
524 // Whether this target has a specific make_symbol function.
525 bool has_make_symbol;
526 // Whether this target has a specific resolve function.
527 bool has_resolve;
c51e6221
ILT
528 // Whether this target has a specific code fill function.
529 bool has_code_fill;
35cdfc9a
ILT
530 // Whether an object file with no .note.GNU-stack sections implies
531 // that the stack should be executable.
532 bool is_default_stack_executable;
b3ce541e
ILT
533 // Whether a relocation to a merged section can be processed to
534 // retrieve the contents.
535 bool can_icf_inline_merge_sections;
0864d551
ILT
536 // Prefix character to strip when checking for wrapping.
537 char wrap_char;
dbe717ef
ILT
538 // The default dynamic linker name.
539 const char* dynamic_linker;
75f65a3e 540 // The default text segment address.
0c5e9c22 541 uint64_t default_text_segment_address;
75f65a3e
ILT
542 // The ABI specified page size.
543 uint64_t abi_pagesize;
544 // The common page size used by actual implementations.
545 uint64_t common_pagesize;
2e702c99
RM
546 // Whether PF_X segments must contain nothing but the contents of
547 // SHF_EXECINSTR sections (no non-executable data, no headers).
548 bool isolate_execinstr;
549 // If nonzero, distance from the text segment to the read-only segment.
550 uint64_t rosegment_gap;
8a5e3e08
ILT
551 // The special section index for small common symbols; SHN_UNDEF
552 // if none.
553 elfcpp::Elf_Half small_common_shndx;
554 // The special section index for large common symbols; SHN_UNDEF
555 // if none.
556 elfcpp::Elf_Half large_common_shndx;
557 // Section flags for small common section.
558 elfcpp::Elf_Xword small_common_section_flags;
559 // Section flags for large common section.
560 elfcpp::Elf_Xword large_common_section_flags;
05a352e6
DK
561 // Name of attributes section if it is not ".gnu.attributes".
562 const char* attributes_section;
563 // Vendor name of vendor attributes.
564 const char* attributes_vendor;
a67858e0
CC
565 // Name of the main entry point to the program.
566 const char* entry_symbol_name;
8d9743bd
MK
567 // Size (in bits) of SHT_HASH entry. Always equal to 32, except for
568 // 64-bit S/390.
569 const int hash_entry_size;
bce5a025
CC
570 // Processor-specific section type for ".eh_frame" (unwind) sections.
571 // SHT_PROGBITS if there is no special section type.
572 const unsigned int unwind_section_type;
75f65a3e
ILT
573 };
574
575 Target(const Target_info* pti)
d5b40221 576 : pti_(pti), processor_specific_flags_(0),
200b2bb9 577 are_processor_specific_flags_set_(false), osabi_(elfcpp::ELFOSABI_NONE)
14bfc3f5
ILT
578 { }
579
8a5e3e08
ILT
580 // Virtual function which may be implemented by the child class.
581 virtual void
582 do_new_output_section(Output_section*) const
583 { }
584
5a6f7e2d
ILT
585 // Virtual function which may be implemented by the child class.
586 virtual void
f59f41f3 587 do_finalize_sections(Layout*, const Input_objects*, Symbol_table*)
5a6f7e2d
ILT
588 { }
589
ab5c9e90
ILT
590 // Virtual function which may be implemented by the child class.
591 virtual uint64_t
592 do_dynsym_value(const Symbol*) const
593 { gold_unreachable(); }
594
c51e6221
ILT
595 // Virtual function which must be implemented by the child class if
596 // needed.
597 virtual std::string
8851ecca 598 do_code_fill(section_size_type) const
c51e6221
ILT
599 { gold_unreachable(); }
600
9a2d6984
ILT
601 // Virtual function which may be implemented by the child class.
602 virtual bool
9c2d0ef9 603 do_is_defined_by_abi(const Symbol*) const
9a2d6984
ILT
604 { return false; }
605
36959681
ILT
606 // Adjust the output file header before it is written out. VIEW
607 // points to the header in external form. LEN is the length, and
608 // will be one of the values of elfcpp::Elf_sizes<size>::ehdr_size.
200b2bb9
ILT
609 // By default, we set the EI_OSABI field if requested (in
610 // Sized_target).
36959681 611 virtual void
cc84c10b 612 do_adjust_elf_header(unsigned char*, int) = 0;
36959681 613
9d5781f8
AM
614 // Return address and size to plug into eh_frame FDEs associated with a PLT.
615 virtual void
616 do_plt_fde_location(const Output_data* plt, unsigned char* oview,
617 uint64_t* address, off_t* len) const;
618
9b547ce6 619 // Virtual function which may be overridden by the child class.
bb04269c
DK
620 virtual bool
621 do_is_local_label_name(const char*) const;
622
e291e7b9
ILT
623 // Virtual function that must be overridden by a target which uses
624 // target specific relocations.
625 virtual unsigned int
626 do_reloc_symbol_index(void*, unsigned int) const
627 { gold_unreachable(); }
628
9b547ce6 629 // Virtual function that must be overridden by a target which uses
e291e7b9
ILT
630 // target specific relocations.
631 virtual uint64_t
632 do_reloc_addend(void*, unsigned int, uint64_t) const
633 { gold_unreachable(); }
634
7223e9ca
ILT
635 // Virtual functions that must be overridden by a target that uses
636 // STT_GNU_IFUNC symbols.
67181c72
ILT
637 virtual uint64_t
638 do_plt_address_for_global(const Symbol*) const
7223e9ca
ILT
639 { gold_unreachable(); }
640
67181c72
ILT
641 virtual uint64_t
642 do_plt_address_for_local(const Relobj*, unsigned int) const
7223e9ca
ILT
643 { gold_unreachable(); }
644
bd73a62d
AM
645 virtual int64_t
646 do_tls_offset_for_local(const Relobj*, unsigned int, unsigned int) const
647 { gold_unreachable(); }
648
649 virtual int64_t
650 do_tls_offset_for_global(Symbol*, unsigned int) const
651 { gold_unreachable(); }
652
dc3714f3
AM
653 virtual void
654 do_function_location(Symbol_location*) const = 0;
655
b3ce541e
ILT
656 // Virtual function which may be overriden by the child class.
657 virtual bool
658 do_can_check_for_function_pointers() const
659 { return false; }
660
661 // Virtual function which may be overridden by the child class. We
662 // recognize some default sections for which we don't care whether
663 // they have function pointers.
664 virtual bool
665 do_section_may_have_icf_unsafe_pointers(const char* section_name) const
666 {
667 // We recognize sections for normal vtables, construction vtables and
668 // EH frames.
669 return (!is_prefix_of(".rodata._ZTV", section_name)
670 && !is_prefix_of(".data.rel.ro._ZTV", section_name)
671 && !is_prefix_of(".rodata._ZTC", section_name)
672 && !is_prefix_of(".data.rel.ro._ZTC", section_name)
673 && !is_prefix_of(".eh_frame", section_name));
674 }
675
02d7cd44
ILT
676 virtual uint64_t
677 do_ehframe_datarel_base() const
678 { gold_unreachable(); }
679
b6848d3c
ILT
680 // Virtual function which may be overridden by the child class. The
681 // default implementation is that any function not defined by the
682 // ABI is a call to a non-split function.
683 virtual bool
bd8d853f
MK
684 do_is_call_to_non_split(const Symbol* sym, const unsigned char*,
685 const unsigned char*, section_size_type) const;
b6848d3c 686
364c7fa5
ILT
687 // Virtual function which may be overridden by the child class.
688 virtual void
689 do_calls_non_split(Relobj* object, unsigned int, section_offset_type,
6e0813d3
CC
690 section_size_type, const unsigned char*, size_t,
691 unsigned char*, section_size_type,
364c7fa5
ILT
692 std::string*, std::string*) const;
693
f733487b 694 // make_elf_object hooks. There are four versions of these for
7296d933 695 // different address sizes and endianness.
364c7fa5 696
d5b40221
DK
697 // Set processor specific flags.
698 void
699 set_processor_specific_flags(elfcpp::Elf_Word flags)
700 {
701 this->processor_specific_flags_ = flags;
702 this->are_processor_specific_flags_set_ = true;
703 }
2e702c99 704
f733487b 705#ifdef HAVE_TARGET_32_LITTLE
9b547ce6 706 // Virtual functions which may be overridden by the child class.
f733487b
DK
707 virtual Object*
708 do_make_elf_object(const std::string&, Input_file*, off_t,
709 const elfcpp::Ehdr<32, false>&);
710#endif
711
712#ifdef HAVE_TARGET_32_BIG
9b547ce6 713 // Virtual functions which may be overridden by the child class.
f733487b
DK
714 virtual Object*
715 do_make_elf_object(const std::string&, Input_file*, off_t,
716 const elfcpp::Ehdr<32, true>&);
717#endif
718
719#ifdef HAVE_TARGET_64_LITTLE
9b547ce6 720 // Virtual functions which may be overridden by the child class.
f733487b
DK
721 virtual Object*
722 do_make_elf_object(const std::string&, Input_file*, off_t,
723 const elfcpp::Ehdr<64, false>& ehdr);
724#endif
725
726#ifdef HAVE_TARGET_64_BIG
9b547ce6 727 // Virtual functions which may be overridden by the child class.
f733487b
DK
728 virtual Object*
729 do_make_elf_object(const std::string& name, Input_file* input_file,
730 off_t offset, const elfcpp::Ehdr<64, true>& ehdr);
731#endif
732
9b547ce6 733 // Virtual functions which may be overridden by the child class.
c0a62865
DK
734 virtual Output_section*
735 do_make_output_section(const char* name, elfcpp::Elf_Word type,
736 elfcpp::Elf_Xword flags);
737
9b547ce6 738 // Virtual function which may be overridden by the child class.
20e6d0d6
DK
739 virtual bool
740 do_may_relax() const
741 { return parameters->options().relax(); }
742
9b547ce6 743 // Virtual function which may be overridden by the child class.
20e6d0d6 744 virtual bool
f625ae50 745 do_relax(int, const Input_objects*, Symbol_table*, Layout*, const Task*)
20e6d0d6
DK
746 { return false; }
747
364c7fa5
ILT
748 // A function for targets to call. Return whether BYTES/LEN matches
749 // VIEW/VIEW_SIZE at OFFSET.
750 bool
751 match_view(const unsigned char* view, section_size_type view_size,
752 section_offset_type offset, const char* bytes, size_t len) const;
753
754 // Set the contents of a VIEW/VIEW_SIZE to nops starting at OFFSET
755 // for LEN bytes.
756 void
757 set_view_to_nop(unsigned char* view, section_size_type view_size,
758 section_offset_type offset, size_t len) const;
759
9b547ce6 760 // This must be overridden by the child class if it has target-specific
2e702c99 761 // attributes subsection in the attribute section.
05a352e6
DK
762 virtual int
763 do_attribute_arg_type(int) const
764 { gold_unreachable(); }
765
766 // This may be overridden by the child class.
767 virtual int
768 do_attributes_order(int num) const
769 { return num; }
770
0d31c79d
DK
771 // This may be overridden by the child class.
772 virtual void
773 do_select_as_default_target()
774 { }
775
647f1574
DK
776 // This may be overridden by the child class.
777 virtual void
778 do_define_standard_symbols(Symbol_table*, Layout*)
779 { }
780
921b5322
AM
781 // This may be overridden by the child class.
782 virtual const char*
783 do_output_section_name(const Relobj*, const char*, size_t*) const
784 { return NULL; }
785
e81fea4d
AM
786 // This may be overridden by the child class.
787 virtual void
788 do_gc_mark_symbol(Symbol_table*, Symbol*) const
789 { }
790
98ff9231
CC
791 // This may be overridden by the child class.
792 virtual bool
793 do_has_custom_set_dynsym_indexes() const
794 { return false; }
795
796 // This may be overridden by the child class.
797 virtual unsigned int
798 do_set_dynsym_indexes(std::vector<Symbol*>*, unsigned int,
799 std::vector<Symbol*>*, Stringpool*, Versions*,
800 Symbol_table*) const
801 { gold_unreachable(); }
802
918fc1f8
CC
803 // This may be overridden by the child class.
804 virtual unsigned int
805 do_dynamic_tag_custom_value(elfcpp::DT) const
806 { gold_unreachable(); }
807
800d9823
CC
808 // This may be overridden by the child class.
809 virtual void
810 do_adjust_dyn_symbol(const Symbol*, unsigned char*) const
811 { }
812
99fd8cff
CC
813 // This may be overridden by the child class.
814 virtual bool
815 do_should_include_section(elfcpp::Elf_Word) const
816 { return true; }
817
14bfc3f5 818 private:
f733487b 819 // The implementations of the four do_make_elf_object virtual functions are
7296d933 820 // almost identical except for their sizes and endianness. We use a template.
f733487b
DK
821 // for their implementations.
822 template<int size, bool big_endian>
823 inline Object*
824 do_make_elf_object_implementation(const std::string&, Input_file*, off_t,
825 const elfcpp::Ehdr<size, big_endian>&);
826
14bfc3f5
ILT
827 Target(const Target&);
828 Target& operator=(const Target&);
829
75f65a3e
ILT
830 // The target information.
831 const Target_info* pti_;
d5b40221
DK
832 // Processor-specific flags.
833 elfcpp::Elf_Word processor_specific_flags_;
834 // Whether the processor-specific flags are set at least once.
835 bool are_processor_specific_flags_set_;
200b2bb9
ILT
836 // If not ELFOSABI_NONE, the value to put in the EI_OSABI field of
837 // the ELF header. This is handled at this level because it is
838 // OS-specific rather than processor-specific.
839 elfcpp::ELFOSABI osabi_;
bae7f79e
ILT
840};
841
14bfc3f5
ILT
842// The abstract class for a specific size and endianness of target.
843// Each actual target implementation class should derive from an
844// instantiation of Sized_target.
845
846template<int size, bool big_endian>
847class Sized_target : public Target
848{
849 public:
850 // Make a new symbol table entry for the target. This should be
851 // overridden by a target which needs additional information in the
852 // symbol table. This will only be called if has_make_symbol()
853 // returns true.
854 virtual Sized_symbol<size>*
dc1c8a16 855 make_symbol(const char*, elfcpp::STT, Object*, unsigned int, uint64_t)
a3ad94ed 856 { gold_unreachable(); }
14bfc3f5
ILT
857
858 // Resolve a symbol for the target. This should be overridden by a
859 // target which needs to take special action. TO is the
860 // pre-existing symbol. SYM is the new symbol, seen in OBJECT.
14b31740
ILT
861 // VERSION is the version of SYM. This will only be called if
862 // has_resolve() returns true.
565ed01a 863 virtual bool
14b31740
ILT
864 resolve(Symbol*, const elfcpp::Sym<size, big_endian>&, Object*,
865 const char*)
a3ad94ed 866 { gold_unreachable(); }
14bfc3f5 867
6d03d481
ST
868 // Process the relocs for a section, and record information of the
869 // mapping from source to destination sections. This mapping is later
870 // used to determine unreferenced garbage sections. This procedure is
871 // only called during garbage collection.
872 virtual void
ad0f2072
ILT
873 gc_process_relocs(Symbol_table* symtab,
874 Layout* layout,
6fa2a40b 875 Sized_relobj_file<size, big_endian>* object,
ad0f2072
ILT
876 unsigned int data_shndx,
877 unsigned int sh_type,
878 const unsigned char* prelocs,
879 size_t reloc_count,
880 Output_section* output_section,
881 bool needs_special_offset_handling,
882 size_t local_symbol_count,
883 const unsigned char* plocal_symbols) = 0;
6d03d481 884
92e059d8 885 // Scan the relocs for a section, and record any information
ad0f2072
ILT
886 // required for the symbol. SYMTAB is the symbol table. OBJECT is
887 // the object in which the section appears. DATA_SHNDX is the
888 // section index that these relocs apply to. SH_TYPE is the type of
889 // the relocation section, SHT_REL or SHT_RELA. PRELOCS points to
890 // the relocation data. RELOC_COUNT is the number of relocs.
891 // LOCAL_SYMBOL_COUNT is the number of local symbols.
892 // OUTPUT_SECTION is the output section.
730cdc88
ILT
893 // NEEDS_SPECIAL_OFFSET_HANDLING is true if offsets to the output
894 // sections are not mapped as usual. PLOCAL_SYMBOLS points to the
895 // local symbol data from OBJECT. GLOBAL_SYMBOLS is the array of
896 // pointers to the global symbol table from OBJECT.
61ba1cf9 897 virtual void
ad0f2072 898 scan_relocs(Symbol_table* symtab,
ead1e424 899 Layout* layout,
6fa2a40b 900 Sized_relobj_file<size, big_endian>* object,
a3ad94ed 901 unsigned int data_shndx,
92e059d8
ILT
902 unsigned int sh_type,
903 const unsigned char* prelocs,
904 size_t reloc_count,
730cdc88
ILT
905 Output_section* output_section,
906 bool needs_special_offset_handling,
92e059d8 907 size_t local_symbol_count,
730cdc88 908 const unsigned char* plocal_symbols) = 0;
92e059d8
ILT
909
910 // Relocate section data. SH_TYPE is the type of the relocation
911 // section, SHT_REL or SHT_RELA. PRELOCS points to the relocation
730cdc88
ILT
912 // information. RELOC_COUNT is the number of relocs.
913 // OUTPUT_SECTION is the output section.
914 // NEEDS_SPECIAL_OFFSET_HANDLING is true if offsets must be mapped
915 // to correspond to the output section. VIEW is a view into the
916 // output file holding the section contents, VIEW_ADDRESS is the
917 // virtual address of the view, and VIEW_SIZE is the size of the
918 // view. If NEEDS_SPECIAL_OFFSET_HANDLING is true, the VIEW_xx
919 // parameters refer to the complete output section data, not just
920 // the input section data.
92e059d8
ILT
921 virtual void
922 relocate_section(const Relocate_info<size, big_endian>*,
923 unsigned int sh_type,
924 const unsigned char* prelocs,
925 size_t reloc_count,
730cdc88
ILT
926 Output_section* output_section,
927 bool needs_special_offset_handling,
92e059d8
ILT
928 unsigned char* view,
929 typename elfcpp::Elf_types<size>::Elf_Addr view_address,
364c7fa5
ILT
930 section_size_type view_size,
931 const Reloc_symbol_changes*) = 0;
61ba1cf9 932
6a74a719
ILT
933 // Scan the relocs during a relocatable link. The parameters are
934 // like scan_relocs, with an additional Relocatable_relocs
935 // parameter, used to record the disposition of the relocs.
936 virtual void
ad0f2072 937 scan_relocatable_relocs(Symbol_table* symtab,
6a74a719 938 Layout* layout,
6fa2a40b 939 Sized_relobj_file<size, big_endian>* object,
6a74a719
ILT
940 unsigned int data_shndx,
941 unsigned int sh_type,
942 const unsigned char* prelocs,
943 size_t reloc_count,
944 Output_section* output_section,
945 bool needs_special_offset_handling,
946 size_t local_symbol_count,
947 const unsigned char* plocal_symbols,
948 Relocatable_relocs*) = 0;
949
4d625b70
CC
950 // Scan the relocs for --emit-relocs. The parameters are
951 // like scan_relocatable_relocs.
952 virtual void
953 emit_relocs_scan(Symbol_table* symtab,
954 Layout* layout,
955 Sized_relobj_file<size, big_endian>* object,
956 unsigned int data_shndx,
957 unsigned int sh_type,
958 const unsigned char* prelocs,
959 size_t reloc_count,
960 Output_section* output_section,
961 bool needs_special_offset_handling,
962 size_t local_symbol_count,
963 const unsigned char* plocal_syms,
964 Relocatable_relocs* rr) = 0;
965
7404fe1b
AM
966 // Emit relocations for a section during a relocatable link, and for
967 // --emit-relocs. The parameters are like relocate_section, with
968 // additional parameters for the view of the output reloc section.
6a74a719 969 virtual void
7404fe1b
AM
970 relocate_relocs(const Relocate_info<size, big_endian>*,
971 unsigned int sh_type,
972 const unsigned char* prelocs,
973 size_t reloc_count,
974 Output_section* output_section,
62fe925a
RM
975 typename elfcpp::Elf_types<size>::Elf_Off
976 offset_in_output_section,
7404fe1b
AM
977 unsigned char* view,
978 typename elfcpp::Elf_types<size>::Elf_Addr view_address,
979 section_size_type view_size,
980 unsigned char* reloc_view,
981 section_size_type reloc_view_size) = 0;
2e702c99 982
5c388529
DK
983 // Perform target-specific processing in a relocatable link. This is
984 // only used if we use the relocation strategy RELOC_SPECIAL.
985 // RELINFO points to a Relocation_info structure. SH_TYPE is the relocation
986 // section type. PRELOC_IN points to the original relocation. RELNUM is
987 // the index number of the relocation in the relocation section.
988 // OUTPUT_SECTION is the output section to which the relocation is applied.
989 // OFFSET_IN_OUTPUT_SECTION is the offset of the relocation input section
990 // within the output section. VIEW points to the output view of the
991 // output section. VIEW_ADDRESS is output address of the view. VIEW_SIZE
992 // is the size of the output view and PRELOC_OUT points to the new
993 // relocation in the output object.
994 //
995 // A target only needs to override this if the generic code in
996 // target-reloc.h cannot handle some relocation types.
6a74a719 997
5c388529
DK
998 virtual void
999 relocate_special_relocatable(const Relocate_info<size, big_endian>*
1000 /*relinfo */,
1001 unsigned int /* sh_type */,
1002 const unsigned char* /* preloc_in */,
1003 size_t /* relnum */,
1004 Output_section* /* output_section */,
62fe925a
RM
1005 typename elfcpp::Elf_types<size>::Elf_Off
1006 /* offset_in_output_section */,
5c388529
DK
1007 unsigned char* /* view */,
1008 typename elfcpp::Elf_types<size>::Elf_Addr
1009 /* view_address */,
1010 section_size_type /* view_size */,
1011 unsigned char* /* preloc_out*/)
1012 { gold_unreachable(); }
2e702c99 1013
0e70b911
CC
1014 // Return the number of entries in the GOT. This is only used for
1015 // laying out the incremental link info sections. A target needs
1016 // to implement this to support incremental linking.
1017
1018 virtual unsigned int
1019 got_entry_count() const
1020 { gold_unreachable(); }
1021
1022 // Return the number of entries in the PLT. This is only used for
1023 // laying out the incremental link info sections. A target needs
1024 // to implement this to support incremental linking.
1025
1026 virtual unsigned int
1027 plt_entry_count() const
1028 { gold_unreachable(); }
1029
1030 // Return the offset of the first non-reserved PLT entry. This is
1031 // only used for laying out the incremental link info sections.
1032 // A target needs to implement this to support incremental linking.
1033
1034 virtual unsigned int
1035 first_plt_entry_offset() const
1036 { gold_unreachable(); }
1037
1038 // Return the size of each PLT entry. This is only used for
1039 // laying out the incremental link info sections. A target needs
1040 // to implement this to support incremental linking.
1041
1042 virtual unsigned int
1043 plt_entry_size() const
1044 { gold_unreachable(); }
1045
41e83f2b
L
1046 // Return the size of each GOT entry. This is only used for
1047 // laying out the incremental link info sections. A target needs
1048 // to implement this if its GOT size is different.
1049
1050 virtual unsigned int
1051 got_entry_size() const
1052 { return size / 8; }
1053
4829d394
CC
1054 // Create the GOT and PLT sections for an incremental update.
1055 // A target needs to implement this to support incremental linking.
1056
dd74ae06 1057 virtual Output_data_got_base*
4829d394
CC
1058 init_got_plt_for_update(Symbol_table*,
1059 Layout*,
1060 unsigned int /* got_count */,
1061 unsigned int /* plt_count */)
1062 { gold_unreachable(); }
1063
6fa2a40b
CC
1064 // Reserve a GOT entry for a local symbol, and regenerate any
1065 // necessary dynamic relocations.
1066 virtual void
1067 reserve_local_got_entry(unsigned int /* got_index */,
1068 Sized_relobj<size, big_endian>* /* obj */,
1069 unsigned int /* r_sym */,
1070 unsigned int /* got_type */)
1071 { gold_unreachable(); }
1072
1073 // Reserve a GOT entry for a global symbol, and regenerate any
1074 // necessary dynamic relocations.
1075 virtual void
1076 reserve_global_got_entry(unsigned int /* got_index */, Symbol* /* gsym */,
1077 unsigned int /* got_type */)
1078 { gold_unreachable(); }
1079
4829d394
CC
1080 // Register an existing PLT entry for a global symbol.
1081 // A target needs to implement this to support incremental linking.
1082
1083 virtual void
67181c72
ILT
1084 register_global_plt_entry(Symbol_table*, Layout*,
1085 unsigned int /* plt_index */,
4829d394
CC
1086 Symbol*)
1087 { gold_unreachable(); }
1088
26d3c67d
CC
1089 // Force a COPY relocation for a given symbol.
1090 // A target needs to implement this to support incremental linking.
1091
1092 virtual void
1093 emit_copy_reloc(Symbol_table*, Symbol*, Output_section*, off_t)
1094 { gold_unreachable(); }
1095
94a3fc8b
CC
1096 // Apply an incremental relocation.
1097
1098 virtual void
1099 apply_relocation(const Relocate_info<size, big_endian>* /* relinfo */,
1100 typename elfcpp::Elf_types<size>::Elf_Addr /* r_offset */,
1101 unsigned int /* r_type */,
1102 typename elfcpp::Elf_types<size>::Elf_Swxword /* r_addend */,
1103 const Symbol* /* gsym */,
1104 unsigned char* /* view */,
1105 typename elfcpp::Elf_types<size>::Elf_Addr /* address */,
1106 section_size_type /* view_size */)
1107 { gold_unreachable(); }
1108
e81fea4d
AM
1109 // Handle target specific gc actions when adding a gc reference from
1110 // SRC_OBJ, SRC_SHNDX to a location specified by DST_OBJ, DST_SHNDX
1111 // and DST_OFF.
1112 void
1113 gc_add_reference(Symbol_table* symtab,
efc6fa12 1114 Relobj* src_obj,
e81fea4d 1115 unsigned int src_shndx,
efc6fa12 1116 Relobj* dst_obj,
e81fea4d
AM
1117 unsigned int dst_shndx,
1118 typename elfcpp::Elf_types<size>::Elf_Addr dst_off) const
1119 {
1120 this->do_gc_add_reference(symtab, src_obj, src_shndx,
1121 dst_obj, dst_shndx, dst_off);
1122 }
1123
4d625b70
CC
1124 // Return the r_sym field from a relocation.
1125 // Most targets can use the default version of this routine,
1126 // but some targets have a non-standard r_info field, and will
1127 // need to provide a target-specific version.
1128 virtual unsigned int
1129 get_r_sym(const unsigned char* preloc) const
1130 {
1131 // Since REL and RELA relocs share the same structure through
1132 // the r_info field, we can just use REL here.
1133 elfcpp::Rel<size, big_endian> rel(preloc);
1134 return elfcpp::elf_r_sym<size>(rel.get_r_info());
1135 }
1136
14bfc3f5 1137 protected:
75f65a3e
ILT
1138 Sized_target(const Target::Target_info* pti)
1139 : Target(pti)
1140 {
a3ad94ed
ILT
1141 gold_assert(pti->size == size);
1142 gold_assert(pti->is_big_endian ? big_endian : !big_endian);
75f65a3e 1143 }
200b2bb9
ILT
1144
1145 // Set the EI_OSABI field if requested.
1146 virtual void
cc84c10b 1147 do_adjust_elf_header(unsigned char*, int);
e81fea4d
AM
1148
1149 // Handle target specific gc actions when adding a gc reference.
1150 virtual void
efc6fa12
CC
1151 do_gc_add_reference(Symbol_table*, Relobj*, unsigned int,
1152 Relobj*, unsigned int,
e81fea4d
AM
1153 typename elfcpp::Elf_types<size>::Elf_Addr) const
1154 { }
dc3714f3
AM
1155
1156 virtual void
1157 do_function_location(Symbol_location*) const
1158 { }
14bfc3f5 1159};
bae7f79e
ILT
1160
1161} // End namespace gold.
1162
1163#endif // !defined(GOLD_TARGET_H)
This page took 0.58163 seconds and 4 git commands to generate.