1 // target-reloc.h -- target specific relocation support -*- C++ -*-
3 // Copyright 2006, 2007 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 #ifndef GOLD_TARGET_RELOC_H
24 #define GOLD_TARGET_RELOC_H
29 #include "reloc-types.h"
34 // This function implements the generic part of reloc scanning. This
35 // is an inline function which takes a class whose operator()
36 // implements the machine specific part of scanning. We do it this
37 // way to avoidmaking a function call for each relocation, and to
38 // avoid repeating the generic code for each target.
40 template<int size
, bool big_endian
, typename Target_type
, int sh_type
,
44 const General_options
& options
,
48 Sized_relobj
<size
, big_endian
>* object
,
49 unsigned int data_shndx
,
50 const unsigned char* prelocs
,
53 const unsigned char* plocal_syms
,
56 typedef typename Reloc_types
<sh_type
, size
, big_endian
>::Reloc Reltype
;
57 const int reloc_size
= Reloc_types
<sh_type
, size
, big_endian
>::reloc_size
;
58 const int sym_size
= elfcpp::Elf_sizes
<size
>::sym_size
;
61 for (size_t i
= 0; i
< reloc_count
; ++i
, prelocs
+= reloc_size
)
63 Reltype
reloc(prelocs
);
65 typename
elfcpp::Elf_types
<size
>::Elf_WXword r_info
= reloc
.get_r_info();
66 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(r_info
);
67 unsigned int r_type
= elfcpp::elf_r_type
<size
>(r_info
);
69 if (r_sym
< local_count
)
71 gold_assert(plocal_syms
!= NULL
);
72 typename
elfcpp::Sym
<size
, big_endian
> lsym(plocal_syms
74 const unsigned int shndx
= lsym
.get_st_shndx();
75 if (shndx
< elfcpp::SHN_LORESERVE
76 && shndx
!= elfcpp::SHN_UNDEF
77 && !object
->is_section_included(lsym
.get_st_shndx()))
79 // RELOC is a relocation against a local symbol in a
80 // section we are discarding. We can ignore this
81 // relocation. It will eventually become a reloc
82 // against the value zero.
84 // FIXME: We should issue a warning if this is an
85 // allocated section; is this the best place to do it?
87 // FIXME: The old GNU linker would in some cases look
88 // for the linkonce section which caused this section to
89 // be discarded, and, if the other section was the same
90 // size, change the reloc to refer to the other section.
91 // That seems risky and weird to me, and I don't know of
92 // any case where it is actually required.
97 scan
.local(options
, symtab
, layout
, target
, object
, data_shndx
,
102 Symbol
* gsym
= global_syms
[r_sym
- local_count
];
103 gold_assert(gsym
!= NULL
);
104 if (gsym
->is_forwarder())
105 gsym
= symtab
->resolve_forwards(gsym
);
107 scan
.global(options
, symtab
, layout
, target
, object
, data_shndx
,
108 reloc
, r_type
, gsym
);
113 // This function implements the generic part of relocation processing.
114 // This is an inline function which take a class whose relocate()
115 // implements the machine specific part of relocation. We do it this
116 // way to avoid making a function call for each relocation, and to
117 // avoid repeating the generic relocation handling code for each
120 // SIZE is the ELF size: 32 or 64. BIG_ENDIAN is the endianness of
121 // the data. SH_TYPE is the section type: SHT_REL or SHT_RELA.
122 // RELOCATE implements operator() to do a relocation.
124 // PRELOCS points to the relocation data. RELOC_COUNT is the number
125 // of relocs. VIEW is the section data, VIEW_ADDRESS is its memory
126 // address, and VIEW_SIZE is the size.
128 template<int size
, bool big_endian
, typename Target_type
, int sh_type
,
132 const Relocate_info
<size
, big_endian
>* relinfo
,
134 const unsigned char* prelocs
,
137 typename
elfcpp::Elf_types
<size
>::Elf_Addr view_address
,
140 typedef typename Reloc_types
<sh_type
, size
, big_endian
>::Reloc Reltype
;
141 const int reloc_size
= Reloc_types
<sh_type
, size
, big_endian
>::reloc_size
;
144 unsigned int local_count
= relinfo
->local_symbol_count
;
145 const typename Sized_relobj
<size
, big_endian
>::Local_values
* local_values
=
146 relinfo
->local_values
;
147 const Symbol
* const * global_syms
= relinfo
->symbols
;
149 for (size_t i
= 0; i
< reloc_count
; ++i
, prelocs
+= reloc_size
)
151 Reltype
reloc(prelocs
);
153 off_t offset
= reloc
.get_r_offset();
155 typename
elfcpp::Elf_types
<size
>::Elf_WXword r_info
= reloc
.get_r_info();
156 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(r_info
);
157 unsigned int r_type
= elfcpp::elf_r_type
<size
>(r_info
);
159 const Sized_symbol
<size
>* sym
;
161 Symbol_value
<size
> symval
;
162 const Symbol_value
<size
> *psymval
;
163 if (r_sym
< local_count
)
166 psymval
= &(*local_values
)[r_sym
];
170 const Symbol
* gsym
= global_syms
[r_sym
- local_count
];
171 gold_assert(gsym
!= NULL
);
172 if (gsym
->is_forwarder())
173 gsym
= relinfo
->symtab
->resolve_forwards(gsym
);
175 sym
= static_cast<const Sized_symbol
<size
>*>(gsym
);
176 if (sym
->has_symtab_index())
177 symval
.set_output_symtab_index(sym
->symtab_index());
179 symval
.set_no_output_symtab_entry();
180 symval
.set_output_value(sym
->value());
184 if (!relocate
.relocate(relinfo
, target
, i
, reloc
, r_type
, sym
, psymval
,
185 view
+ offset
, view_address
+ offset
, view_size
))
188 if (offset
< 0 || offset
>= view_size
)
190 fprintf(stderr
, _("%s: %s: reloc has bad offset %zu\n"),
191 program_name
, relinfo
->location(i
, offset
).c_str(),
192 static_cast<size_t>(offset
));
197 && sym
->is_undefined()
198 && sym
->binding() != elfcpp::STB_WEAK
)
200 fprintf(stderr
, _("%s: %s: undefined reference to '%s'\n"),
201 program_name
, relinfo
->location(i
, offset
).c_str(),
206 if (sym
!= NULL
&& sym
->has_warning())
207 relinfo
->symtab
->issue_warning(sym
, relinfo
->location(i
, offset
));
211 } // End namespace gold.
213 #endif // !defined(GOLD_TARGET_RELOC_H)