1 // target.h -- target support for gold -*- C++ -*-
3 // Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
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.
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.
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.
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.
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.
38 #include "parameters.h"
46 template<int size
, bool big_endian
>
48 class Relocatable_relocs
;
49 template<int size
, bool big_endian
>
51 class Reloc_symbol_changes
;
59 // The abstract class for target specific handling.
67 // Virtual function which is set to return true by a target if
68 // it can use relocation types to determine if a function's
71 can_check_for_function_pointers() const
74 // Return the bit size that this target implements. This should
78 { return this->pti_
->size
; }
80 // Return whether this target is big-endian.
83 { return this->pti_
->is_big_endian
; }
85 // Machine code to store in e_machine field of ELF header.
88 { return this->pti_
->machine_code
; }
90 // Processor specific flags to store in e_flags field of ELF header.
92 processor_specific_flags() const
93 { return this->processor_specific_flags_
; }
95 // Whether processor specific flags are set at least once.
97 are_processor_specific_flags_set() const
98 { return this->are_processor_specific_flags_set_
; }
100 // Whether this target has a specific make_symbol function.
102 has_make_symbol() const
103 { return this->pti_
->has_make_symbol
; }
105 // Whether this target has a specific resolve function.
108 { return this->pti_
->has_resolve
; }
110 // Whether this target has a specific code fill function.
112 has_code_fill() const
113 { return this->pti_
->has_code_fill
; }
115 // Return the default name of the dynamic linker.
117 dynamic_linker() const
118 { return this->pti_
->dynamic_linker
; }
120 // Return the default address to use for the text segment.
122 default_text_segment_address() const
123 { return this->pti_
->default_text_segment_address
; }
125 // Return the ABI specified page size.
129 if (parameters
->options().max_page_size() > 0)
130 return parameters
->options().max_page_size();
132 return this->pti_
->abi_pagesize
;
135 // Return the common page size used on actual systems.
137 common_pagesize() const
139 if (parameters
->options().common_page_size() > 0)
140 return std::min(parameters
->options().common_page_size(),
141 this->abi_pagesize());
143 return std::min(this->pti_
->common_pagesize
,
144 this->abi_pagesize());
147 // If we see some object files with .note.GNU-stack sections, and
148 // some objects files without them, this returns whether we should
149 // consider the object files without them to imply that the stack
150 // should be executable.
152 is_default_stack_executable() const
153 { return this->pti_
->is_default_stack_executable
; }
155 // Return a character which may appear as a prefix for a wrap
156 // symbol. If this character appears, we strip it when checking for
157 // wrapping and add it back when forming the final symbol name.
158 // This should be '\0' if not special prefix is required, which is
162 { return this->pti_
->wrap_char
; }
164 // Return the special section index which indicates a small common
165 // symbol. This will return SHN_UNDEF if there are no small common
168 small_common_shndx() const
169 { return this->pti_
->small_common_shndx
; }
171 // Return values to add to the section flags for the section holding
172 // small common symbols.
174 small_common_section_flags() const
176 gold_assert(this->pti_
->small_common_shndx
!= elfcpp::SHN_UNDEF
);
177 return this->pti_
->small_common_section_flags
;
180 // Return the special section index which indicates a large common
181 // symbol. This will return SHN_UNDEF if there are no large common
184 large_common_shndx() const
185 { return this->pti_
->large_common_shndx
; }
187 // Return values to add to the section flags for the section holding
188 // large common symbols.
190 large_common_section_flags() const
192 gold_assert(this->pti_
->large_common_shndx
!= elfcpp::SHN_UNDEF
);
193 return this->pti_
->large_common_section_flags
;
196 // This hook is called when an output section is created.
198 new_output_section(Output_section
* os
) const
199 { this->do_new_output_section(os
); }
201 // This is called to tell the target to complete any sections it is
202 // handling. After this all sections must have their final size.
204 finalize_sections(Layout
* layout
, const Input_objects
* input_objects
,
205 Symbol_table
* symtab
)
206 { return this->do_finalize_sections(layout
, input_objects
, symtab
); }
208 // Return the value to use for a global symbol which needs a special
209 // value in the dynamic symbol table. This will only be called if
210 // the backend first calls symbol->set_needs_dynsym_value().
212 dynsym_value(const Symbol
* sym
) const
213 { return this->do_dynsym_value(sym
); }
215 // Return a string to use to fill out a code section. This is
216 // basically one or more NOPS which must fill out the specified
219 code_fill(section_size_type length
) const
220 { return this->do_code_fill(length
); }
222 // Return whether SYM is known to be defined by the ABI. This is
223 // used to avoid inappropriate warnings about undefined symbols.
225 is_defined_by_abi(const Symbol
* sym
) const
226 { return this->do_is_defined_by_abi(sym
); }
228 // Adjust the output file header before it is written out. VIEW
229 // points to the header in external form. LEN is the length.
231 adjust_elf_header(unsigned char* view
, int len
) const
232 { return this->do_adjust_elf_header(view
, len
); }
234 // Return whether NAME is a local label name. This is used to implement the
235 // --discard-locals options.
237 is_local_label_name(const char* name
) const
238 { return this->do_is_local_label_name(name
); }
240 // Get the symbol index to use for a target specific reloc.
242 reloc_symbol_index(void* arg
, unsigned int type
) const
243 { return this->do_reloc_symbol_index(arg
, type
); }
245 // Get the addend to use for a target specific reloc.
247 reloc_addend(void* arg
, unsigned int type
, uint64_t addend
) const
248 { return this->do_reloc_addend(arg
, type
, addend
); }
250 // Return true if a reference to SYM from a reloc of type R_TYPE
251 // means that the current function may call an object compiled
252 // without -fsplit-stack. SYM is known to be defined in an object
253 // compiled without -fsplit-stack.
255 is_call_to_non_split(const Symbol
* sym
, unsigned int r_type
) const
256 { return this->do_is_call_to_non_split(sym
, r_type
); }
258 // A function starts at OFFSET in section SHNDX in OBJECT. That
259 // function was compiled with -fsplit-stack, but it refers to a
260 // function which was compiled without -fsplit-stack. VIEW is a
261 // modifiable view of the section; VIEW_SIZE is the size of the
262 // view. The target has to adjust the function so that it allocates
265 calls_non_split(Relobj
* object
, unsigned int shndx
,
266 section_offset_type fnoffset
, section_size_type fnsize
,
267 unsigned char* view
, section_size_type view_size
,
268 std::string
* from
, std::string
* to
) const
270 this->do_calls_non_split(object
, shndx
, fnoffset
, fnsize
, view
, view_size
,
274 // Make an ELF object.
275 template<int size
, bool big_endian
>
277 make_elf_object(const std::string
& name
, Input_file
* input_file
,
278 off_t offset
, const elfcpp::Ehdr
<size
, big_endian
>& ehdr
)
279 { return this->do_make_elf_object(name
, input_file
, offset
, ehdr
); }
281 // Make an output section.
283 make_output_section(const char* name
, elfcpp::Elf_Word type
,
284 elfcpp::Elf_Xword flags
)
285 { return this->do_make_output_section(name
, type
, flags
); }
287 // Return true if target wants to perform relaxation.
291 // Run the dummy relaxation pass twice if relaxation debugging is enabled.
292 if (is_debugging_enabled(DEBUG_RELAXATION
))
295 return this->do_may_relax();
298 // Perform a relaxation pass. Return true if layout may be changed.
300 relax(int pass
, const Input_objects
* input_objects
, Symbol_table
* symtab
,
303 // Run the dummy relaxation pass twice if relaxation debugging is enabled.
304 if (is_debugging_enabled(DEBUG_RELAXATION
))
307 return this->do_relax(pass
, input_objects
, symtab
, layout
);
310 // Return the target-specific name of attributes section. This is
311 // NULL if a target does not use attributes section or if it uses
312 // the default section name ".gnu.attributes".
314 attributes_section() const
315 { return this->pti_
->attributes_section
; }
317 // Return the vendor name of vendor attributes.
319 attributes_vendor() const
320 { return this->pti_
->attributes_vendor
; }
322 // Whether a section called NAME is an attribute section.
324 is_attributes_section(const char* name
) const
326 return ((this->pti_
->attributes_section
!= NULL
327 && strcmp(name
, this->pti_
->attributes_section
) == 0)
328 || strcmp(name
, ".gnu.attributes") == 0);
331 // Return a bit mask of argument types for attribute with TAG.
333 attribute_arg_type(int tag
) const
334 { return this->do_attribute_arg_type(tag
); }
336 // Return the attribute tag of the position NUM in the list of fixed
337 // attributes. Normally there is no reordering and
338 // attributes_order(NUM) == NUM.
340 attributes_order(int num
) const
341 { return this->do_attributes_order(num
); }
343 // When a target is selected as the default target, we call this method,
344 // which may be used for expensive, target-specific initialization.
346 select_as_default_target()
347 { this->do_select_as_default_target(); }
350 // This struct holds the constant information for a child class. We
351 // use a struct to avoid the overhead of virtual function calls for
352 // simple information.
355 // Address size (32 or 64).
357 // Whether the target is big endian.
359 // The code to store in the e_machine field of the ELF header.
360 elfcpp::EM machine_code
;
361 // Whether this target has a specific make_symbol function.
362 bool has_make_symbol
;
363 // Whether this target has a specific resolve function.
365 // Whether this target has a specific code fill function.
367 // Whether an object file with no .note.GNU-stack sections implies
368 // that the stack should be executable.
369 bool is_default_stack_executable
;
370 // Prefix character to strip when checking for wrapping.
372 // The default dynamic linker name.
373 const char* dynamic_linker
;
374 // The default text segment address.
375 uint64_t default_text_segment_address
;
376 // The ABI specified page size.
377 uint64_t abi_pagesize
;
378 // The common page size used by actual implementations.
379 uint64_t common_pagesize
;
380 // The special section index for small common symbols; SHN_UNDEF
382 elfcpp::Elf_Half small_common_shndx
;
383 // The special section index for large common symbols; SHN_UNDEF
385 elfcpp::Elf_Half large_common_shndx
;
386 // Section flags for small common section.
387 elfcpp::Elf_Xword small_common_section_flags
;
388 // Section flags for large common section.
389 elfcpp::Elf_Xword large_common_section_flags
;
390 // Name of attributes section if it is not ".gnu.attributes".
391 const char* attributes_section
;
392 // Vendor name of vendor attributes.
393 const char* attributes_vendor
;
396 Target(const Target_info
* pti
)
397 : pti_(pti
), processor_specific_flags_(0),
398 are_processor_specific_flags_set_(false)
401 // Virtual function which may be implemented by the child class.
403 do_new_output_section(Output_section
*) const
406 // Virtual function which may be implemented by the child class.
408 do_finalize_sections(Layout
*, const Input_objects
*, Symbol_table
*)
411 // Virtual function which may be implemented by the child class.
413 do_dynsym_value(const Symbol
*) const
414 { gold_unreachable(); }
416 // Virtual function which must be implemented by the child class if
419 do_code_fill(section_size_type
) const
420 { gold_unreachable(); }
422 // Virtual function which may be implemented by the child class.
424 do_is_defined_by_abi(const Symbol
*) const
427 // Adjust the output file header before it is written out. VIEW
428 // points to the header in external form. LEN is the length, and
429 // will be one of the values of elfcpp::Elf_sizes<size>::ehdr_size.
430 // By default, we do nothing.
432 do_adjust_elf_header(unsigned char*, int) const
435 // Virtual function which may be overriden by the child class.
437 do_is_local_label_name(const char*) const;
439 // Virtual function that must be overridden by a target which uses
440 // target specific relocations.
442 do_reloc_symbol_index(void*, unsigned int) const
443 { gold_unreachable(); }
445 // Virtual function that must be overidden by a target which uses
446 // target specific relocations.
448 do_reloc_addend(void*, unsigned int, uint64_t) const
449 { gold_unreachable(); }
451 // Virtual function which may be overridden by the child class. The
452 // default implementation is that any function not defined by the
453 // ABI is a call to a non-split function.
455 do_is_call_to_non_split(const Symbol
* sym
, unsigned int) const;
457 // Virtual function which may be overridden by the child class.
459 do_calls_non_split(Relobj
* object
, unsigned int, section_offset_type
,
460 section_size_type
, unsigned char*, section_size_type
,
461 std::string
*, std::string
*) const;
463 // make_elf_object hooks. There are four versions of these for
464 // different address sizes and endianness.
466 // Set processor specific flags.
468 set_processor_specific_flags(elfcpp::Elf_Word flags
)
470 this->processor_specific_flags_
= flags
;
471 this->are_processor_specific_flags_set_
= true;
474 #ifdef HAVE_TARGET_32_LITTLE
475 // Virtual functions which may be overriden by the child class.
477 do_make_elf_object(const std::string
&, Input_file
*, off_t
,
478 const elfcpp::Ehdr
<32, false>&);
481 #ifdef HAVE_TARGET_32_BIG
482 // Virtual functions which may be overriden by the child class.
484 do_make_elf_object(const std::string
&, Input_file
*, off_t
,
485 const elfcpp::Ehdr
<32, true>&);
488 #ifdef HAVE_TARGET_64_LITTLE
489 // Virtual functions which may be overriden by the child class.
491 do_make_elf_object(const std::string
&, Input_file
*, off_t
,
492 const elfcpp::Ehdr
<64, false>& ehdr
);
495 #ifdef HAVE_TARGET_64_BIG
496 // Virtual functions which may be overriden by the child class.
498 do_make_elf_object(const std::string
& name
, Input_file
* input_file
,
499 off_t offset
, const elfcpp::Ehdr
<64, true>& ehdr
);
502 // Virtual functions which may be overriden by the child class.
503 virtual Output_section
*
504 do_make_output_section(const char* name
, elfcpp::Elf_Word type
,
505 elfcpp::Elf_Xword flags
);
507 // Virtual function which may be overriden by the child class.
510 { return parameters
->options().relax(); }
512 // Virtual function which may be overriden by the child class.
514 do_relax(int, const Input_objects
*, Symbol_table
*, Layout
*)
517 // A function for targets to call. Return whether BYTES/LEN matches
518 // VIEW/VIEW_SIZE at OFFSET.
520 match_view(const unsigned char* view
, section_size_type view_size
,
521 section_offset_type offset
, const char* bytes
, size_t len
) const;
523 // Set the contents of a VIEW/VIEW_SIZE to nops starting at OFFSET
526 set_view_to_nop(unsigned char* view
, section_size_type view_size
,
527 section_offset_type offset
, size_t len
) const;
529 // This must be overriden by the child class if it has target-specific
530 // attributes subsection in the attribute section.
532 do_attribute_arg_type(int) const
533 { gold_unreachable(); }
535 // This may be overridden by the child class.
537 do_attributes_order(int num
) const
540 // This may be overridden by the child class.
542 do_select_as_default_target()
546 // The implementations of the four do_make_elf_object virtual functions are
547 // almost identical except for their sizes and endianness. We use a template.
548 // for their implementations.
549 template<int size
, bool big_endian
>
551 do_make_elf_object_implementation(const std::string
&, Input_file
*, off_t
,
552 const elfcpp::Ehdr
<size
, big_endian
>&);
554 Target(const Target
&);
555 Target
& operator=(const Target
&);
557 // The target information.
558 const Target_info
* pti_
;
559 // Processor-specific flags.
560 elfcpp::Elf_Word processor_specific_flags_
;
561 // Whether the processor-specific flags are set at least once.
562 bool are_processor_specific_flags_set_
;
565 // The abstract class for a specific size and endianness of target.
566 // Each actual target implementation class should derive from an
567 // instantiation of Sized_target.
569 template<int size
, bool big_endian
>
570 class Sized_target
: public Target
573 // Make a new symbol table entry for the target. This should be
574 // overridden by a target which needs additional information in the
575 // symbol table. This will only be called if has_make_symbol()
577 virtual Sized_symbol
<size
>*
579 { gold_unreachable(); }
581 // Resolve a symbol for the target. This should be overridden by a
582 // target which needs to take special action. TO is the
583 // pre-existing symbol. SYM is the new symbol, seen in OBJECT.
584 // VERSION is the version of SYM. This will only be called if
585 // has_resolve() returns true.
587 resolve(Symbol
*, const elfcpp::Sym
<size
, big_endian
>&, Object
*,
589 { gold_unreachable(); }
591 // Process the relocs for a section, and record information of the
592 // mapping from source to destination sections. This mapping is later
593 // used to determine unreferenced garbage sections. This procedure is
594 // only called during garbage collection.
596 gc_process_relocs(Symbol_table
* symtab
,
598 Sized_relobj
<size
, big_endian
>* object
,
599 unsigned int data_shndx
,
600 unsigned int sh_type
,
601 const unsigned char* prelocs
,
603 Output_section
* output_section
,
604 bool needs_special_offset_handling
,
605 size_t local_symbol_count
,
606 const unsigned char* plocal_symbols
) = 0;
608 // Scan the relocs for a section, and record any information
609 // required for the symbol. SYMTAB is the symbol table. OBJECT is
610 // the object in which the section appears. DATA_SHNDX is the
611 // section index that these relocs apply to. SH_TYPE is the type of
612 // the relocation section, SHT_REL or SHT_RELA. PRELOCS points to
613 // the relocation data. RELOC_COUNT is the number of relocs.
614 // LOCAL_SYMBOL_COUNT is the number of local symbols.
615 // OUTPUT_SECTION is the output section.
616 // NEEDS_SPECIAL_OFFSET_HANDLING is true if offsets to the output
617 // sections are not mapped as usual. PLOCAL_SYMBOLS points to the
618 // local symbol data from OBJECT. GLOBAL_SYMBOLS is the array of
619 // pointers to the global symbol table from OBJECT.
621 scan_relocs(Symbol_table
* symtab
,
623 Sized_relobj
<size
, big_endian
>* object
,
624 unsigned int data_shndx
,
625 unsigned int sh_type
,
626 const unsigned char* prelocs
,
628 Output_section
* output_section
,
629 bool needs_special_offset_handling
,
630 size_t local_symbol_count
,
631 const unsigned char* plocal_symbols
) = 0;
633 // Relocate section data. SH_TYPE is the type of the relocation
634 // section, SHT_REL or SHT_RELA. PRELOCS points to the relocation
635 // information. RELOC_COUNT is the number of relocs.
636 // OUTPUT_SECTION is the output section.
637 // NEEDS_SPECIAL_OFFSET_HANDLING is true if offsets must be mapped
638 // to correspond to the output section. VIEW is a view into the
639 // output file holding the section contents, VIEW_ADDRESS is the
640 // virtual address of the view, and VIEW_SIZE is the size of the
641 // view. If NEEDS_SPECIAL_OFFSET_HANDLING is true, the VIEW_xx
642 // parameters refer to the complete output section data, not just
643 // the input section data.
645 relocate_section(const Relocate_info
<size
, big_endian
>*,
646 unsigned int sh_type
,
647 const unsigned char* prelocs
,
649 Output_section
* output_section
,
650 bool needs_special_offset_handling
,
652 typename
elfcpp::Elf_types
<size
>::Elf_Addr view_address
,
653 section_size_type view_size
,
654 const Reloc_symbol_changes
*) = 0;
656 // Scan the relocs during a relocatable link. The parameters are
657 // like scan_relocs, with an additional Relocatable_relocs
658 // parameter, used to record the disposition of the relocs.
660 scan_relocatable_relocs(Symbol_table
* symtab
,
662 Sized_relobj
<size
, big_endian
>* object
,
663 unsigned int data_shndx
,
664 unsigned int sh_type
,
665 const unsigned char* prelocs
,
667 Output_section
* output_section
,
668 bool needs_special_offset_handling
,
669 size_t local_symbol_count
,
670 const unsigned char* plocal_symbols
,
671 Relocatable_relocs
*) = 0;
673 // Relocate a section during a relocatable link. The parameters are
674 // like relocate_section, with additional parameters for the view of
675 // the output reloc section.
677 relocate_for_relocatable(const Relocate_info
<size
, big_endian
>*,
678 unsigned int sh_type
,
679 const unsigned char* prelocs
,
681 Output_section
* output_section
,
682 off_t offset_in_output_section
,
683 const Relocatable_relocs
*,
685 typename
elfcpp::Elf_types
<size
>::Elf_Addr
687 section_size_type view_size
,
688 unsigned char* reloc_view
,
689 section_size_type reloc_view_size
) = 0;
692 Sized_target(const Target::Target_info
* pti
)
695 gold_assert(pti
->size
== size
);
696 gold_assert(pti
->is_big_endian
? big_endian
: !big_endian
);
700 } // End namespace gold.
702 #endif // !defined(GOLD_TARGET_H)