1 /* SPARC-specific support for ELF
2 Copyright (C) 2005-2017 Free Software Foundation, Inc.
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
22 /* This file handles functionality common to the different SPARC ABI's. */
28 #include "libiberty.h"
30 #include "elf/sparc.h"
31 #include "opcode/sparc.h"
32 #include "elfxx-sparc.h"
33 #include "elf-vxworks.h"
37 /* In case we're on a 32-bit machine, construct a 64-bit "-1" value. */
38 #define MINUS_ONE (~ (bfd_vma) 0)
40 #define ABI_64_P(abfd) \
41 (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
43 /* The relocation "howto" table. */
45 /* Utility for performing the standard initial work of an instruction
47 *PRELOCATION will contain the relocated item.
48 *PINSN will contain the instruction from the input stream.
49 If the result is `bfd_reloc_other' the caller can continue with
50 performing the relocation. Otherwise it must stop and return the
51 value to its caller. */
53 static bfd_reloc_status_type
54 init_insn_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
55 void * data, asection *input_section, bfd *output_bfd,
56 bfd_vma *prelocation, bfd_vma *pinsn)
59 reloc_howto_type *howto = reloc_entry->howto;
61 if (output_bfd != (bfd *) NULL
62 && (symbol->flags & BSF_SECTION_SYM) == 0
63 && (! howto->partial_inplace
64 || reloc_entry->addend == 0))
66 reloc_entry->address += input_section->output_offset;
70 /* This works because partial_inplace is FALSE. */
71 if (output_bfd != NULL)
72 return bfd_reloc_continue;
74 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
75 return bfd_reloc_outofrange;
77 relocation = (symbol->value
78 + symbol->section->output_section->vma
79 + symbol->section->output_offset);
80 relocation += reloc_entry->addend;
81 if (howto->pc_relative)
83 relocation -= (input_section->output_section->vma
84 + input_section->output_offset);
85 relocation -= reloc_entry->address;
88 *prelocation = relocation;
89 *pinsn = bfd_get_32 (abfd, (bfd_byte *) data + reloc_entry->address);
90 return bfd_reloc_other;
93 /* For unsupported relocs. */
95 static bfd_reloc_status_type
96 sparc_elf_notsup_reloc (bfd *abfd ATTRIBUTE_UNUSED,
97 arelent *reloc_entry ATTRIBUTE_UNUSED,
98 asymbol *symbol ATTRIBUTE_UNUSED,
99 void * data ATTRIBUTE_UNUSED,
100 asection *input_section ATTRIBUTE_UNUSED,
101 bfd *output_bfd ATTRIBUTE_UNUSED,
102 char **error_message ATTRIBUTE_UNUSED)
104 return bfd_reloc_notsupported;
107 /* Handle the WDISP16 reloc. */
109 static bfd_reloc_status_type
110 sparc_elf_wdisp16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
111 void * data, asection *input_section, bfd *output_bfd,
112 char **error_message ATTRIBUTE_UNUSED)
116 bfd_reloc_status_type status;
118 status = init_insn_reloc (abfd, reloc_entry, symbol, data,
119 input_section, output_bfd, &relocation, &insn);
120 if (status != bfd_reloc_other)
123 insn &= ~ (bfd_vma) 0x303fff;
124 insn |= (((relocation >> 2) & 0xc000) << 6) | ((relocation >> 2) & 0x3fff);
125 bfd_put_32 (abfd, insn, (bfd_byte *) data + reloc_entry->address);
127 if ((bfd_signed_vma) relocation < - 0x40000
128 || (bfd_signed_vma) relocation > 0x3ffff)
129 return bfd_reloc_overflow;
134 /* Handle the WDISP10 reloc. */
136 static bfd_reloc_status_type
137 sparc_elf_wdisp10_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
138 void * data, asection *input_section, bfd *output_bfd,
139 char **error_message ATTRIBUTE_UNUSED)
143 bfd_reloc_status_type status;
145 status = init_insn_reloc (abfd, reloc_entry, symbol, data,
146 input_section, output_bfd, &relocation, &insn);
147 if (status != bfd_reloc_other)
150 insn &= ~ (bfd_vma) 0x181fe0;
151 insn |= (((relocation >> 2) & 0x300) << 11)
152 | (((relocation >> 2) & 0xff) << 5);
153 bfd_put_32 (abfd, insn, (bfd_byte *) data + reloc_entry->address);
155 if ((bfd_signed_vma) relocation < - 0x1000
156 || (bfd_signed_vma) relocation > 0xfff)
157 return bfd_reloc_overflow;
162 /* Handle the HIX22 reloc. */
164 static bfd_reloc_status_type
165 sparc_elf_hix22_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
166 void * data, asection *input_section, bfd *output_bfd,
167 char **error_message ATTRIBUTE_UNUSED)
171 bfd_reloc_status_type status;
173 status = init_insn_reloc (abfd, reloc_entry, symbol, data,
174 input_section, output_bfd, &relocation, &insn);
175 if (status != bfd_reloc_other)
178 relocation ^= MINUS_ONE;
179 insn = (insn &~ (bfd_vma) 0x3fffff) | ((relocation >> 10) & 0x3fffff);
180 bfd_put_32 (abfd, insn, (bfd_byte *) data + reloc_entry->address);
182 if ((relocation & ~ (bfd_vma) 0xffffffff) != 0)
183 return bfd_reloc_overflow;
188 /* Handle the LOX10 reloc. */
190 static bfd_reloc_status_type
191 sparc_elf_lox10_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
192 void * data, asection *input_section, bfd *output_bfd,
193 char **error_message ATTRIBUTE_UNUSED)
197 bfd_reloc_status_type status;
199 status = init_insn_reloc (abfd, reloc_entry, symbol, data,
200 input_section, output_bfd, &relocation, &insn);
201 if (status != bfd_reloc_other)
204 insn = (insn &~ (bfd_vma) 0x1fff) | 0x1c00 | (relocation & 0x3ff);
205 bfd_put_32 (abfd, insn, (bfd_byte *) data + reloc_entry->address);
210 static reloc_howto_type _bfd_sparc_elf_howto_table[] =
212 HOWTO(R_SPARC_NONE, 0,3, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_NONE", FALSE,0,0x00000000,TRUE),
213 HOWTO(R_SPARC_8, 0,0, 8,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_8", FALSE,0,0x000000ff,TRUE),
214 HOWTO(R_SPARC_16, 0,1,16,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_16", FALSE,0,0x0000ffff,TRUE),
215 HOWTO(R_SPARC_32, 0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_32", FALSE,0,0xffffffff,TRUE),
216 HOWTO(R_SPARC_DISP8, 0,0, 8,TRUE, 0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_DISP8", FALSE,0,0x000000ff,TRUE),
217 HOWTO(R_SPARC_DISP16, 0,1,16,TRUE, 0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_DISP16", FALSE,0,0x0000ffff,TRUE),
218 HOWTO(R_SPARC_DISP32, 0,2,32,TRUE, 0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_DISP32", FALSE,0,0xffffffff,TRUE),
219 HOWTO(R_SPARC_WDISP30, 2,2,30,TRUE, 0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_WDISP30", FALSE,0,0x3fffffff,TRUE),
220 HOWTO(R_SPARC_WDISP22, 2,2,22,TRUE, 0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_WDISP22", FALSE,0,0x003fffff,TRUE),
221 HOWTO(R_SPARC_HI22, 10,2,22,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_HI22", FALSE,0,0x003fffff,TRUE),
222 HOWTO(R_SPARC_22, 0,2,22,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_22", FALSE,0,0x003fffff,TRUE),
223 HOWTO(R_SPARC_13, 0,2,13,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_13", FALSE,0,0x00001fff,TRUE),
224 HOWTO(R_SPARC_LO10, 0,2,10,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_LO10", FALSE,0,0x000003ff,TRUE),
225 HOWTO(R_SPARC_GOT10, 0,2,10,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_GOT10", FALSE,0,0x000003ff,TRUE),
226 HOWTO(R_SPARC_GOT13, 0,2,13,FALSE,0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_GOT13", FALSE,0,0x00001fff,TRUE),
227 HOWTO(R_SPARC_GOT22, 10,2,22,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_GOT22", FALSE,0,0x003fffff,TRUE),
228 HOWTO(R_SPARC_PC10, 0,2,10,TRUE, 0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_PC10", FALSE,0,0x000003ff,TRUE),
229 HOWTO(R_SPARC_PC22, 10,2,22,TRUE, 0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_PC22", FALSE,0,0x003fffff,TRUE),
230 HOWTO(R_SPARC_WPLT30, 2,2,30,TRUE, 0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_WPLT30", FALSE,0,0x3fffffff,TRUE),
231 HOWTO(R_SPARC_COPY, 0,0,00,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_COPY", FALSE,0,0x00000000,TRUE),
232 HOWTO(R_SPARC_GLOB_DAT, 0,0,00,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_GLOB_DAT",FALSE,0,0x00000000,TRUE),
233 HOWTO(R_SPARC_JMP_SLOT, 0,0,00,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_JMP_SLOT",FALSE,0,0x00000000,TRUE),
234 HOWTO(R_SPARC_RELATIVE, 0,0,00,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_RELATIVE",FALSE,0,0x00000000,TRUE),
235 HOWTO(R_SPARC_UA32, 0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_UA32", FALSE,0,0xffffffff,TRUE),
236 HOWTO(R_SPARC_PLT32, 0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_PLT32", FALSE,0,0xffffffff,TRUE),
237 HOWTO(R_SPARC_HIPLT22, 0,0,00,FALSE,0,complain_overflow_dont, sparc_elf_notsup_reloc, "R_SPARC_HIPLT22", FALSE,0,0x00000000,TRUE),
238 HOWTO(R_SPARC_LOPLT10, 0,0,00,FALSE,0,complain_overflow_dont, sparc_elf_notsup_reloc, "R_SPARC_LOPLT10", FALSE,0,0x00000000,TRUE),
239 HOWTO(R_SPARC_PCPLT32, 0,0,00,FALSE,0,complain_overflow_dont, sparc_elf_notsup_reloc, "R_SPARC_PCPLT32", FALSE,0,0x00000000,TRUE),
240 HOWTO(R_SPARC_PCPLT22, 0,0,00,FALSE,0,complain_overflow_dont, sparc_elf_notsup_reloc, "R_SPARC_PCPLT22", FALSE,0,0x00000000,TRUE),
241 HOWTO(R_SPARC_PCPLT10, 0,0,00,FALSE,0,complain_overflow_dont, sparc_elf_notsup_reloc, "R_SPARC_PCPLT10", FALSE,0,0x00000000,TRUE),
242 HOWTO(R_SPARC_10, 0,2,10,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_10", FALSE,0,0x000003ff,TRUE),
243 HOWTO(R_SPARC_11, 0,2,11,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_11", FALSE,0,0x000007ff,TRUE),
244 HOWTO(R_SPARC_64, 0,4,64,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_64", FALSE,0,MINUS_ONE, TRUE),
245 HOWTO(R_SPARC_OLO10, 0,2,13,FALSE,0,complain_overflow_signed, sparc_elf_notsup_reloc, "R_SPARC_OLO10", FALSE,0,0x00001fff,TRUE),
246 HOWTO(R_SPARC_HH22, 42,2,22,FALSE,0,complain_overflow_unsigned,bfd_elf_generic_reloc, "R_SPARC_HH22", FALSE,0,0x003fffff,TRUE),
247 HOWTO(R_SPARC_HM10, 32,2,10,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_HM10", FALSE,0,0x000003ff,TRUE),
248 HOWTO(R_SPARC_LM22, 10,2,22,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_LM22", FALSE,0,0x003fffff,TRUE),
249 HOWTO(R_SPARC_PC_HH22, 42,2,22,TRUE, 0,complain_overflow_unsigned,bfd_elf_generic_reloc, "R_SPARC_PC_HH22", FALSE,0,0x003fffff,TRUE),
250 HOWTO(R_SPARC_PC_HM10, 32,2,10,TRUE, 0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_PC_HM10", FALSE,0,0x000003ff,TRUE),
251 HOWTO(R_SPARC_PC_LM22, 10,2,22,TRUE, 0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_PC_LM22", FALSE,0,0x003fffff,TRUE),
252 HOWTO(R_SPARC_WDISP16, 2,2,16,TRUE, 0,complain_overflow_signed, sparc_elf_wdisp16_reloc,"R_SPARC_WDISP16", FALSE,0,0x00000000,TRUE),
253 HOWTO(R_SPARC_WDISP19, 2,2,19,TRUE, 0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_WDISP19", FALSE,0,0x0007ffff,TRUE),
254 HOWTO(R_SPARC_UNUSED_42, 0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_UNUSED_42",FALSE,0,0x00000000,TRUE),
255 HOWTO(R_SPARC_7, 0,2, 7,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_7", FALSE,0,0x0000007f,TRUE),
256 HOWTO(R_SPARC_5, 0,2, 5,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_5", FALSE,0,0x0000001f,TRUE),
257 HOWTO(R_SPARC_6, 0,2, 6,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_6", FALSE,0,0x0000003f,TRUE),
258 HOWTO(R_SPARC_DISP64, 0,4,64,TRUE, 0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_DISP64", FALSE,0,MINUS_ONE, TRUE),
259 HOWTO(R_SPARC_PLT64, 0,4,64,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_PLT64", FALSE,0,MINUS_ONE, TRUE),
260 HOWTO(R_SPARC_HIX22, 0,4, 0,FALSE,0,complain_overflow_bitfield,sparc_elf_hix22_reloc, "R_SPARC_HIX22", FALSE,0,MINUS_ONE, FALSE),
261 HOWTO(R_SPARC_LOX10, 0,4, 0,FALSE,0,complain_overflow_dont, sparc_elf_lox10_reloc, "R_SPARC_LOX10", FALSE,0,MINUS_ONE, FALSE),
262 HOWTO(R_SPARC_H44, 22,2,22,FALSE,0,complain_overflow_unsigned,bfd_elf_generic_reloc, "R_SPARC_H44", FALSE,0,0x003fffff,FALSE),
263 HOWTO(R_SPARC_M44, 12,2,10,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_M44", FALSE,0,0x000003ff,FALSE),
264 HOWTO(R_SPARC_L44, 0,2,13,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_L44", FALSE,0,0x00000fff,FALSE),
265 HOWTO(R_SPARC_REGISTER, 0,4, 0,FALSE,0,complain_overflow_bitfield,sparc_elf_notsup_reloc, "R_SPARC_REGISTER",FALSE,0,MINUS_ONE, FALSE),
266 HOWTO(R_SPARC_UA64, 0,4,64,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_UA64", FALSE,0,MINUS_ONE, TRUE),
267 HOWTO(R_SPARC_UA16, 0,1,16,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_UA16", FALSE,0,0x0000ffff,TRUE),
268 HOWTO(R_SPARC_TLS_GD_HI22,10,2,22,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_GD_HI22",FALSE,0,0x003fffff,TRUE),
269 HOWTO(R_SPARC_TLS_GD_LO10,0,2,10,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_GD_LO10",FALSE,0,0x000003ff,TRUE),
270 HOWTO(R_SPARC_TLS_GD_ADD,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_GD_ADD",FALSE,0,0x00000000,TRUE),
271 HOWTO(R_SPARC_TLS_GD_CALL,2,2,30,TRUE,0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_TLS_GD_CALL",FALSE,0,0x3fffffff,TRUE),
272 HOWTO(R_SPARC_TLS_LDM_HI22,10,2,22,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_LDM_HI22",FALSE,0,0x003fffff,TRUE),
273 HOWTO(R_SPARC_TLS_LDM_LO10,0,2,10,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_LDM_LO10",FALSE,0,0x000003ff,TRUE),
274 HOWTO(R_SPARC_TLS_LDM_ADD,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_LDM_ADD",FALSE,0,0x00000000,TRUE),
275 HOWTO(R_SPARC_TLS_LDM_CALL,2,2,30,TRUE,0,complain_overflow_signed, bfd_elf_generic_reloc, "R_SPARC_TLS_LDM_CALL",FALSE,0,0x3fffffff,TRUE),
276 HOWTO(R_SPARC_TLS_LDO_HIX22,0,2,0,FALSE,0,complain_overflow_bitfield,sparc_elf_hix22_reloc,"R_SPARC_TLS_LDO_HIX22",FALSE,0,0x003fffff, FALSE),
277 HOWTO(R_SPARC_TLS_LDO_LOX10,0,2,0,FALSE,0,complain_overflow_dont, sparc_elf_lox10_reloc, "R_SPARC_TLS_LDO_LOX10",FALSE,0,0x000003ff, FALSE),
278 HOWTO(R_SPARC_TLS_LDO_ADD,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_LDO_ADD",FALSE,0,0x00000000,TRUE),
279 HOWTO(R_SPARC_TLS_IE_HI22,10,2,22,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_IE_HI22",FALSE,0,0x003fffff,TRUE),
280 HOWTO(R_SPARC_TLS_IE_LO10,0,2,10,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_IE_LO10",FALSE,0,0x000003ff,TRUE),
281 HOWTO(R_SPARC_TLS_IE_LD,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_IE_LD",FALSE,0,0x00000000,TRUE),
282 HOWTO(R_SPARC_TLS_IE_LDX,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_IE_LDX",FALSE,0,0x00000000,TRUE),
283 HOWTO(R_SPARC_TLS_IE_ADD,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_IE_ADD",FALSE,0,0x00000000,TRUE),
284 HOWTO(R_SPARC_TLS_LE_HIX22,0,2,0,FALSE,0,complain_overflow_bitfield,sparc_elf_hix22_reloc, "R_SPARC_TLS_LE_HIX22",FALSE,0,0x003fffff, FALSE),
285 HOWTO(R_SPARC_TLS_LE_LOX10,0,2,0,FALSE,0,complain_overflow_dont, sparc_elf_lox10_reloc, "R_SPARC_TLS_LE_LOX10",FALSE,0,0x000003ff, FALSE),
286 HOWTO(R_SPARC_TLS_DTPMOD32,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_DTPMOD32",FALSE,0,0x00000000,TRUE),
287 HOWTO(R_SPARC_TLS_DTPMOD64,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_DTPMOD64",FALSE,0,0x00000000,TRUE),
288 HOWTO(R_SPARC_TLS_DTPOFF32,0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,"R_SPARC_TLS_DTPOFF32",FALSE,0,0xffffffff,TRUE),
289 HOWTO(R_SPARC_TLS_DTPOFF64,0,4,64,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,"R_SPARC_TLS_DTPOFF64",FALSE,0,MINUS_ONE,TRUE),
290 HOWTO(R_SPARC_TLS_TPOFF32,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_TPOFF32",FALSE,0,0x00000000,TRUE),
291 HOWTO(R_SPARC_TLS_TPOFF64,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_TLS_TPOFF64",FALSE,0,0x00000000,TRUE),
292 HOWTO(R_SPARC_GOTDATA_HIX22,0,2,0,FALSE,0,complain_overflow_bitfield,sparc_elf_hix22_reloc,"R_SPARC_GOTDATA_HIX22",FALSE,0,0x003fffff, FALSE),
293 HOWTO(R_SPARC_GOTDATA_LOX10,0,2,0,FALSE,0,complain_overflow_dont, sparc_elf_lox10_reloc, "R_SPARC_GOTDATA_LOX10",FALSE,0,0x000003ff, FALSE),
294 HOWTO(R_SPARC_GOTDATA_OP_HIX22,0,2,0,FALSE,0,complain_overflow_bitfield,sparc_elf_hix22_reloc,"R_SPARC_GOTDATA_OP_HIX22",FALSE,0,0x003fffff, FALSE),
295 HOWTO(R_SPARC_GOTDATA_OP_LOX10,0,2,0,FALSE,0,complain_overflow_dont, sparc_elf_lox10_reloc, "R_SPARC_GOTDATA_OP_LOX10",FALSE,0,0x000003ff, FALSE),
296 HOWTO(R_SPARC_GOTDATA_OP,0,0, 0,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_GOTDATA_OP",FALSE,0,0x00000000,TRUE),
297 HOWTO(R_SPARC_H34,12,2,22,FALSE,0,complain_overflow_unsigned,bfd_elf_generic_reloc,"R_SPARC_H34",FALSE,0,0x003fffff,FALSE),
298 HOWTO(R_SPARC_SIZE32,0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,"R_SPARC_SIZE32",FALSE,0,0xffffffff,TRUE),
299 HOWTO(R_SPARC_SIZE64,0,4,64,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc,"R_SPARC_SIZE64",FALSE,0,MINUS_ONE, TRUE),
300 HOWTO(R_SPARC_WDISP10,2,2,10,TRUE, 0,complain_overflow_signed,sparc_elf_wdisp10_reloc,"R_SPARC_WDISP10",FALSE,0,0x00000000,TRUE),
302 static reloc_howto_type sparc_jmp_irel_howto =
303 HOWTO(R_SPARC_JMP_IREL, 0,0,00,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_JMP_IREL",FALSE,0,0x00000000,TRUE);
304 static reloc_howto_type sparc_irelative_howto =
305 HOWTO(R_SPARC_IRELATIVE, 0,0,00,FALSE,0,complain_overflow_dont, bfd_elf_generic_reloc, "R_SPARC_IRELATIVE",FALSE,0,0x00000000,TRUE);
306 static reloc_howto_type sparc_vtinherit_howto =
307 HOWTO (R_SPARC_GNU_VTINHERIT, 0,2,0,FALSE,0,complain_overflow_dont, NULL, "R_SPARC_GNU_VTINHERIT", FALSE,0, 0, FALSE);
308 static reloc_howto_type sparc_vtentry_howto =
309 HOWTO (R_SPARC_GNU_VTENTRY, 0,2,0,FALSE,0,complain_overflow_dont, _bfd_elf_rel_vtable_reloc_fn,"R_SPARC_GNU_VTENTRY", FALSE,0,0, FALSE);
310 static reloc_howto_type sparc_rev32_howto =
311 HOWTO(R_SPARC_REV32, 0,2,32,FALSE,0,complain_overflow_bitfield,bfd_elf_generic_reloc, "R_SPARC_REV32", FALSE,0,0xffffffff,TRUE);
314 _bfd_sparc_elf_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
315 bfd_reloc_code_real_type code)
317 /* We explicitly handle each relocation type in the switch
318 instead of using a lookup table for efficiency. */
322 return &_bfd_sparc_elf_howto_table[R_SPARC_NONE];
325 return &_bfd_sparc_elf_howto_table[R_SPARC_8];
328 return &_bfd_sparc_elf_howto_table[R_SPARC_16];
331 return &_bfd_sparc_elf_howto_table[R_SPARC_32];
333 case BFD_RELOC_8_PCREL:
334 return &_bfd_sparc_elf_howto_table[R_SPARC_DISP8];
336 case BFD_RELOC_16_PCREL:
337 return &_bfd_sparc_elf_howto_table[R_SPARC_DISP16];
339 case BFD_RELOC_32_PCREL:
340 return &_bfd_sparc_elf_howto_table[R_SPARC_DISP32];
342 case BFD_RELOC_32_PCREL_S2:
343 return &_bfd_sparc_elf_howto_table[R_SPARC_WDISP30];
345 case BFD_RELOC_SPARC_WDISP22:
346 return &_bfd_sparc_elf_howto_table[R_SPARC_WDISP22];
349 return &_bfd_sparc_elf_howto_table[R_SPARC_HI22];
351 case BFD_RELOC_SPARC22:
352 return &_bfd_sparc_elf_howto_table[R_SPARC_22];
354 case BFD_RELOC_SPARC13:
355 return &_bfd_sparc_elf_howto_table[R_SPARC_13];
358 return &_bfd_sparc_elf_howto_table[R_SPARC_LO10];
360 case BFD_RELOC_SPARC_GOT10:
361 return &_bfd_sparc_elf_howto_table[R_SPARC_GOT10];
363 case BFD_RELOC_SPARC_GOT13:
364 return &_bfd_sparc_elf_howto_table[R_SPARC_GOT13];
366 case BFD_RELOC_SPARC_GOT22:
367 return &_bfd_sparc_elf_howto_table[R_SPARC_GOT22];
369 case BFD_RELOC_SPARC_PC10:
370 return &_bfd_sparc_elf_howto_table[R_SPARC_PC10];
372 case BFD_RELOC_SPARC_PC22:
373 return &_bfd_sparc_elf_howto_table[R_SPARC_PC22];
375 case BFD_RELOC_SPARC_WPLT30:
376 return &_bfd_sparc_elf_howto_table[R_SPARC_WPLT30];
378 case BFD_RELOC_SPARC_COPY:
379 return &_bfd_sparc_elf_howto_table[R_SPARC_COPY];
381 case BFD_RELOC_SPARC_GLOB_DAT:
382 return &_bfd_sparc_elf_howto_table[R_SPARC_GLOB_DAT];
384 case BFD_RELOC_SPARC_JMP_SLOT:
385 return &_bfd_sparc_elf_howto_table[R_SPARC_JMP_SLOT];
387 case BFD_RELOC_SPARC_RELATIVE:
388 return &_bfd_sparc_elf_howto_table[R_SPARC_RELATIVE];
390 case BFD_RELOC_SPARC_UA32:
391 return &_bfd_sparc_elf_howto_table[R_SPARC_UA32];
393 case BFD_RELOC_SPARC_PLT32:
394 return &_bfd_sparc_elf_howto_table[R_SPARC_PLT32];
396 case BFD_RELOC_SPARC_10:
397 return &_bfd_sparc_elf_howto_table[R_SPARC_10];
399 case BFD_RELOC_SPARC_11:
400 return &_bfd_sparc_elf_howto_table[R_SPARC_11];
402 case BFD_RELOC_SPARC_64:
403 return &_bfd_sparc_elf_howto_table[R_SPARC_64];
405 case BFD_RELOC_SPARC_OLO10:
406 return &_bfd_sparc_elf_howto_table[R_SPARC_OLO10];
408 case BFD_RELOC_SPARC_HH22:
409 return &_bfd_sparc_elf_howto_table[R_SPARC_HH22];
411 case BFD_RELOC_SPARC_HM10:
412 return &_bfd_sparc_elf_howto_table[R_SPARC_HM10];
414 case BFD_RELOC_SPARC_LM22:
415 return &_bfd_sparc_elf_howto_table[R_SPARC_LM22];
417 case BFD_RELOC_SPARC_PC_HH22:
418 return &_bfd_sparc_elf_howto_table[R_SPARC_PC_HH22];
420 case BFD_RELOC_SPARC_PC_HM10:
421 return &_bfd_sparc_elf_howto_table[R_SPARC_PC_HM10];
423 case BFD_RELOC_SPARC_PC_LM22:
424 return &_bfd_sparc_elf_howto_table[R_SPARC_PC_LM22];
426 case BFD_RELOC_SPARC_WDISP16:
427 return &_bfd_sparc_elf_howto_table[R_SPARC_WDISP16];
429 case BFD_RELOC_SPARC_WDISP19:
430 return &_bfd_sparc_elf_howto_table[R_SPARC_WDISP19];
432 case BFD_RELOC_SPARC_7:
433 return &_bfd_sparc_elf_howto_table[R_SPARC_7];
435 case BFD_RELOC_SPARC_5:
436 return &_bfd_sparc_elf_howto_table[R_SPARC_5];
438 case BFD_RELOC_SPARC_6:
439 return &_bfd_sparc_elf_howto_table[R_SPARC_6];
441 case BFD_RELOC_SPARC_DISP64:
442 return &_bfd_sparc_elf_howto_table[R_SPARC_DISP64];
444 case BFD_RELOC_SPARC_PLT64:
445 return &_bfd_sparc_elf_howto_table[R_SPARC_PLT64];
447 case BFD_RELOC_SPARC_HIX22:
448 return &_bfd_sparc_elf_howto_table[R_SPARC_HIX22];
450 case BFD_RELOC_SPARC_LOX10:
451 return &_bfd_sparc_elf_howto_table[R_SPARC_LOX10];
453 case BFD_RELOC_SPARC_H44:
454 return &_bfd_sparc_elf_howto_table[R_SPARC_H44];
456 case BFD_RELOC_SPARC_M44:
457 return &_bfd_sparc_elf_howto_table[R_SPARC_M44];
459 case BFD_RELOC_SPARC_L44:
460 return &_bfd_sparc_elf_howto_table[R_SPARC_L44];
462 case BFD_RELOC_SPARC_REGISTER:
463 return &_bfd_sparc_elf_howto_table[R_SPARC_REGISTER];
465 case BFD_RELOC_SPARC_UA64:
466 return &_bfd_sparc_elf_howto_table[R_SPARC_UA64];
468 case BFD_RELOC_SPARC_UA16:
469 return &_bfd_sparc_elf_howto_table[R_SPARC_UA16];
471 case BFD_RELOC_SPARC_TLS_GD_HI22:
472 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_GD_HI22];
474 case BFD_RELOC_SPARC_TLS_GD_LO10:
475 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_GD_LO10];
477 case BFD_RELOC_SPARC_TLS_GD_ADD:
478 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_GD_ADD];
480 case BFD_RELOC_SPARC_TLS_GD_CALL:
481 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_GD_CALL];
483 case BFD_RELOC_SPARC_TLS_LDM_HI22:
484 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_LDM_HI22];
486 case BFD_RELOC_SPARC_TLS_LDM_LO10:
487 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_LDM_LO10];
489 case BFD_RELOC_SPARC_TLS_LDM_ADD:
490 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_LDM_ADD];
492 case BFD_RELOC_SPARC_TLS_LDM_CALL:
493 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_LDM_CALL];
495 case BFD_RELOC_SPARC_TLS_LDO_HIX22:
496 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_LDO_HIX22];
498 case BFD_RELOC_SPARC_TLS_LDO_LOX10:
499 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_LDO_LOX10];
501 case BFD_RELOC_SPARC_TLS_LDO_ADD:
502 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_LDO_ADD];
504 case BFD_RELOC_SPARC_TLS_IE_HI22:
505 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_IE_HI22];
507 case BFD_RELOC_SPARC_TLS_IE_LO10:
508 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_IE_LO10];
510 case BFD_RELOC_SPARC_TLS_IE_LD:
511 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_IE_LD];
513 case BFD_RELOC_SPARC_TLS_IE_LDX:
514 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_IE_LDX];
516 case BFD_RELOC_SPARC_TLS_IE_ADD:
517 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_IE_ADD];
519 case BFD_RELOC_SPARC_TLS_LE_HIX22:
520 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_LE_HIX22];
522 case BFD_RELOC_SPARC_TLS_LE_LOX10:
523 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_LE_LOX10];
525 case BFD_RELOC_SPARC_TLS_DTPMOD32:
526 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_DTPMOD32];
528 case BFD_RELOC_SPARC_TLS_DTPMOD64:
529 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_DTPMOD64];
531 case BFD_RELOC_SPARC_TLS_DTPOFF32:
532 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_DTPOFF32];
534 case BFD_RELOC_SPARC_TLS_DTPOFF64:
535 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_DTPOFF64];
537 case BFD_RELOC_SPARC_TLS_TPOFF32:
538 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_TPOFF32];
540 case BFD_RELOC_SPARC_TLS_TPOFF64:
541 return &_bfd_sparc_elf_howto_table[R_SPARC_TLS_TPOFF64];
543 case BFD_RELOC_SPARC_GOTDATA_HIX22:
544 return &_bfd_sparc_elf_howto_table[R_SPARC_GOTDATA_HIX22];
546 case BFD_RELOC_SPARC_GOTDATA_LOX10:
547 return &_bfd_sparc_elf_howto_table[R_SPARC_GOTDATA_LOX10];
549 case BFD_RELOC_SPARC_GOTDATA_OP_HIX22:
550 return &_bfd_sparc_elf_howto_table[R_SPARC_GOTDATA_OP_HIX22];
552 case BFD_RELOC_SPARC_GOTDATA_OP_LOX10:
553 return &_bfd_sparc_elf_howto_table[R_SPARC_GOTDATA_OP_LOX10];
555 case BFD_RELOC_SPARC_GOTDATA_OP:
556 return &_bfd_sparc_elf_howto_table[R_SPARC_GOTDATA_OP];
558 case BFD_RELOC_SPARC_H34:
559 return &_bfd_sparc_elf_howto_table[R_SPARC_H34];
561 case BFD_RELOC_SPARC_SIZE32:
562 return &_bfd_sparc_elf_howto_table[R_SPARC_SIZE32];
564 case BFD_RELOC_SPARC_SIZE64:
565 return &_bfd_sparc_elf_howto_table[R_SPARC_SIZE64];
567 case BFD_RELOC_SPARC_WDISP10:
568 return &_bfd_sparc_elf_howto_table[R_SPARC_WDISP10];
570 case BFD_RELOC_SPARC_JMP_IREL:
571 return &sparc_jmp_irel_howto;
573 case BFD_RELOC_SPARC_IRELATIVE:
574 return &sparc_irelative_howto;
576 case BFD_RELOC_VTABLE_INHERIT:
577 return &sparc_vtinherit_howto;
579 case BFD_RELOC_VTABLE_ENTRY:
580 return &sparc_vtentry_howto;
582 case BFD_RELOC_SPARC_REV32:
583 return &sparc_rev32_howto;
588 bfd_set_error (bfd_error_bad_value);
593 _bfd_sparc_elf_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
599 i < (sizeof (_bfd_sparc_elf_howto_table)
600 / sizeof (_bfd_sparc_elf_howto_table[0]));
602 if (_bfd_sparc_elf_howto_table[i].name != NULL
603 && strcasecmp (_bfd_sparc_elf_howto_table[i].name, r_name) == 0)
604 return &_bfd_sparc_elf_howto_table[i];
606 if (strcasecmp (sparc_vtinherit_howto.name, r_name) == 0)
607 return &sparc_vtinherit_howto;
608 if (strcasecmp (sparc_vtentry_howto.name, r_name) == 0)
609 return &sparc_vtentry_howto;
610 if (strcasecmp (sparc_rev32_howto.name, r_name) == 0)
611 return &sparc_rev32_howto;
617 _bfd_sparc_elf_info_to_howto_ptr (unsigned int r_type)
621 case R_SPARC_JMP_IREL:
622 return &sparc_jmp_irel_howto;
624 case R_SPARC_IRELATIVE:
625 return &sparc_irelative_howto;
627 case R_SPARC_GNU_VTINHERIT:
628 return &sparc_vtinherit_howto;
630 case R_SPARC_GNU_VTENTRY:
631 return &sparc_vtentry_howto;
634 return &sparc_rev32_howto;
637 if (r_type >= (unsigned int) R_SPARC_max_std)
639 _bfd_error_handler (_("invalid relocation type %d"), (int) r_type);
640 r_type = R_SPARC_NONE;
642 return &_bfd_sparc_elf_howto_table[r_type];
646 /* Both 32-bit and 64-bit sparc encode this in an identical manner,
647 so just take advantage of that. */
648 #define SPARC_ELF_R_TYPE(r_info) \
652 _bfd_sparc_elf_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *cache_ptr,
653 Elf_Internal_Rela *dst)
655 unsigned int r_type = SPARC_ELF_R_TYPE (dst->r_info);
657 cache_ptr->howto = _bfd_sparc_elf_info_to_howto_ptr (r_type);
661 /* The nop opcode we use. */
662 #define SPARC_NOP 0x01000000
664 #define SPARC_INSN_BYTES 4
666 /* The SPARC linker needs to keep track of the number of relocs that it
667 decides to copy as dynamic relocs in check_relocs for each symbol.
668 This is so that it can later discard them if they are found to be
669 unnecessary. We store the information in a field extending the
670 regular ELF linker hash table. */
672 struct _bfd_sparc_elf_dyn_relocs
674 struct _bfd_sparc_elf_dyn_relocs *next;
676 /* The input section of the reloc. */
679 /* Total number of relocs copied for the input section. */
682 /* Number of pc-relative relocs copied for the input section. */
683 bfd_size_type pc_count;
686 /* Is an undefined weak symbol resolved to 0 ?
687 Reference to an undefined weak symbol is resolved to 0 when
688 building an executable if it isn't dynamic and
689 1. Has non-GOT/non-PLT relocations in text section.
691 2. Has no GOT/PLT relocation. */
692 #define UNDEFINED_WEAK_RESOLVED_TO_ZERO(INFO, EH) \
693 ((EH)->elf.root.type == bfd_link_hash_undefweak \
694 && bfd_link_executable (INFO) \
695 && (_bfd_sparc_elf_hash_table (INFO)->interp == NULL \
696 || !(EH)->has_got_reloc \
697 || (EH)->has_non_got_reloc \
698 || !(INFO)->dynamic_undefined_weak))
700 /* SPARC ELF linker hash entry. */
702 struct _bfd_sparc_elf_link_hash_entry
704 struct elf_link_hash_entry elf;
706 /* Track dynamic relocs copied for this symbol. */
707 struct _bfd_sparc_elf_dyn_relocs *dyn_relocs;
709 #define GOT_UNKNOWN 0
713 unsigned char tls_type;
715 /* Symbol has GOT or PLT relocations. */
716 unsigned int has_got_reloc : 1;
718 /* Symbol has non-GOT/non-PLT relocations in text sections. */
719 unsigned int has_non_got_reloc : 1;
723 #define _bfd_sparc_elf_hash_entry(ent) ((struct _bfd_sparc_elf_link_hash_entry *)(ent))
725 struct _bfd_sparc_elf_obj_tdata
727 struct elf_obj_tdata root;
729 /* tls_type for each local got entry. */
730 char *local_got_tls_type;
732 /* TRUE if TLS GD relocs has been seen for this object. */
733 bfd_boolean has_tlsgd;
736 #define _bfd_sparc_elf_tdata(abfd) \
737 ((struct _bfd_sparc_elf_obj_tdata *) (abfd)->tdata.any)
739 #define _bfd_sparc_elf_local_got_tls_type(abfd) \
740 (_bfd_sparc_elf_tdata (abfd)->local_got_tls_type)
742 #define is_sparc_elf(bfd) \
743 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
744 && elf_tdata (bfd) != NULL \
745 && elf_object_id (bfd) == SPARC_ELF_DATA)
748 _bfd_sparc_elf_mkobject (bfd *abfd)
750 return bfd_elf_allocate_object (abfd, sizeof (struct _bfd_sparc_elf_obj_tdata),
755 sparc_put_word_32 (bfd *abfd, bfd_vma val, void *ptr)
757 bfd_put_32 (abfd, val, ptr);
761 sparc_put_word_64 (bfd *abfd, bfd_vma val, void *ptr)
763 bfd_put_64 (abfd, val, ptr);
767 sparc_elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
769 const struct elf_backend_data *bed;
772 bed = get_elf_backend_data (abfd);
773 loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
774 bed->s->swap_reloca_out (abfd, rel, loc);
778 sparc_elf_r_info_64 (Elf_Internal_Rela *in_rel ATTRIBUTE_UNUSED,
779 bfd_vma rel_index ATTRIBUTE_UNUSED,
780 bfd_vma type ATTRIBUTE_UNUSED)
782 return ELF64_R_INFO (rel_index,
784 ELF64_R_TYPE_INFO (ELF64_R_TYPE_DATA (in_rel->r_info),
789 sparc_elf_r_info_32 (Elf_Internal_Rela *in_rel ATTRIBUTE_UNUSED,
790 bfd_vma rel_index, bfd_vma type)
792 return ELF32_R_INFO (rel_index, type);
796 sparc_elf_r_symndx_64 (bfd_vma r_info)
798 bfd_vma r_symndx = ELF32_R_SYM (r_info);
799 return (r_symndx >> 24);
803 sparc_elf_r_symndx_32 (bfd_vma r_info)
805 return ELF32_R_SYM (r_info);
810 #define PLT32_ENTRY_SIZE 12
811 #define PLT32_HEADER_SIZE (4 * PLT32_ENTRY_SIZE)
813 /* The first four entries in a 32-bit procedure linkage table are reserved,
814 and the initial contents are unimportant (we zero them out).
815 Subsequent entries look like this. See the SVR4 ABI SPARC
816 supplement to see how this works. */
818 /* sethi %hi(.-.plt0),%g1. We fill in the address later. */
819 #define PLT32_ENTRY_WORD0 0x03000000
820 /* b,a .plt0. We fill in the offset later. */
821 #define PLT32_ENTRY_WORD1 0x30800000
823 #define PLT32_ENTRY_WORD2 SPARC_NOP
826 sparc32_plt_entry_build (bfd *output_bfd, asection *splt, bfd_vma offset,
827 bfd_vma max ATTRIBUTE_UNUSED,
830 bfd_put_32 (output_bfd,
831 PLT32_ENTRY_WORD0 + offset,
832 splt->contents + offset);
833 bfd_put_32 (output_bfd,
835 + (((- (offset + 4)) >> 2) & 0x3fffff)),
836 splt->contents + offset + 4);
837 bfd_put_32 (output_bfd, (bfd_vma) PLT32_ENTRY_WORD2,
838 splt->contents + offset + 8);
842 return offset / PLT32_ENTRY_SIZE - 4;
845 /* Both the headers and the entries are icache aligned. */
846 #define PLT64_ENTRY_SIZE 32
847 #define PLT64_HEADER_SIZE (4 * PLT64_ENTRY_SIZE)
848 #define PLT64_LARGE_THRESHOLD 32768
851 sparc64_plt_entry_build (bfd *output_bfd, asection *splt, bfd_vma offset,
852 bfd_vma max, bfd_vma *r_offset)
854 unsigned char *entry = splt->contents + offset;
855 const unsigned int nop = SPARC_NOP;
858 if (offset < (PLT64_LARGE_THRESHOLD * PLT64_ENTRY_SIZE))
860 unsigned int sethi, ba;
864 plt_index = (offset / PLT64_ENTRY_SIZE);
866 sethi = 0x03000000 | (plt_index * PLT64_ENTRY_SIZE);
868 | (((splt->contents + PLT64_ENTRY_SIZE) - (entry + 4)) / 4 & 0x7ffff);
870 bfd_put_32 (output_bfd, (bfd_vma) sethi, entry);
871 bfd_put_32 (output_bfd, (bfd_vma) ba, entry + 4);
872 bfd_put_32 (output_bfd, (bfd_vma) nop, entry + 8);
873 bfd_put_32 (output_bfd, (bfd_vma) nop, entry + 12);
874 bfd_put_32 (output_bfd, (bfd_vma) nop, entry + 16);
875 bfd_put_32 (output_bfd, (bfd_vma) nop, entry + 20);
876 bfd_put_32 (output_bfd, (bfd_vma) nop, entry + 24);
877 bfd_put_32 (output_bfd, (bfd_vma) nop, entry + 28);
883 int block, last_block, ofs, last_ofs, chunks_this_block;
884 const int insn_chunk_size = (6 * 4);
885 const int ptr_chunk_size = (1 * 8);
886 const int entries_per_block = 160;
887 const int block_size = entries_per_block * (insn_chunk_size
890 /* Entries 32768 and higher are grouped into blocks of 160.
891 The blocks are further subdivided into 160 sequences of
892 6 instructions and 160 pointers. If a block does not require
893 the full 160 entries, let's say it requires N, then there
894 will be N sequences of 6 instructions and N pointers. */
896 offset -= (PLT64_LARGE_THRESHOLD * PLT64_ENTRY_SIZE);
897 max -= (PLT64_LARGE_THRESHOLD * PLT64_ENTRY_SIZE);
899 block = offset / block_size;
900 last_block = max / block_size;
901 if (block != last_block)
903 chunks_this_block = 160;
907 last_ofs = max % block_size;
908 chunks_this_block = last_ofs / (insn_chunk_size + ptr_chunk_size);
911 ofs = offset % block_size;
913 plt_index = (PLT64_LARGE_THRESHOLD +
915 (ofs / insn_chunk_size));
918 + (PLT64_LARGE_THRESHOLD * PLT64_ENTRY_SIZE)
919 + (block * block_size)
920 + (chunks_this_block * insn_chunk_size)
921 + (ofs / insn_chunk_size) * ptr_chunk_size;
923 *r_offset = (bfd_vma) (ptr - splt->contents);
925 ldx = 0xc25be000 | ((ptr - (entry+4)) & 0x1fff);
933 bfd_put_32 (output_bfd, (bfd_vma) 0x8a10000f, entry);
934 bfd_put_32 (output_bfd, (bfd_vma) 0x40000002, entry + 4);
935 bfd_put_32 (output_bfd, (bfd_vma) SPARC_NOP, entry + 8);
936 bfd_put_32 (output_bfd, (bfd_vma) ldx, entry + 12);
937 bfd_put_32 (output_bfd, (bfd_vma) 0x83c3c001, entry + 16);
938 bfd_put_32 (output_bfd, (bfd_vma) 0x9e100005, entry + 20);
940 bfd_put_64 (output_bfd, (bfd_vma) (splt->contents - (entry + 4)), ptr);
943 return plt_index - 4;
946 /* The format of the first PLT entry in a VxWorks executable. */
947 static const bfd_vma sparc_vxworks_exec_plt0_entry[] =
949 0x05000000, /* sethi %hi(_GLOBAL_OFFSET_TABLE_+8), %g2 */
950 0x8410a000, /* or %g2, %lo(_GLOBAL_OFFSET_TABLE_+8), %g2 */
951 0xc4008000, /* ld [ %g2 ], %g2 */
952 0x81c08000, /* jmp %g2 */
956 /* The format of subsequent PLT entries. */
957 static const bfd_vma sparc_vxworks_exec_plt_entry[] =
959 0x03000000, /* sethi %hi(_GLOBAL_OFFSET_TABLE_+f@got), %g1 */
960 0x82106000, /* or %g1, %lo(_GLOBAL_OFFSET_TABLE_+f@got), %g1 */
961 0xc2004000, /* ld [ %g1 ], %g1 */
962 0x81c04000, /* jmp %g1 */
963 0x01000000, /* nop */
964 0x03000000, /* sethi %hi(f@pltindex), %g1 */
965 0x10800000, /* b _PLT_resolve */
966 0x82106000 /* or %g1, %lo(f@pltindex), %g1 */
969 /* The format of the first PLT entry in a VxWorks shared object. */
970 static const bfd_vma sparc_vxworks_shared_plt0_entry[] =
972 0xc405e008, /* ld [ %l7 + 8 ], %g2 */
973 0x81c08000, /* jmp %g2 */
977 /* The format of subsequent PLT entries. */
978 static const bfd_vma sparc_vxworks_shared_plt_entry[] =
980 0x03000000, /* sethi %hi(f@got), %g1 */
981 0x82106000, /* or %g1, %lo(f@got), %g1 */
982 0xc205c001, /* ld [ %l7 + %g1 ], %g1 */
983 0x81c04000, /* jmp %g1 */
984 0x01000000, /* nop */
985 0x03000000, /* sethi %hi(f@pltindex), %g1 */
986 0x10800000, /* b _PLT_resolve */
987 0x82106000 /* or %g1, %lo(f@pltindex), %g1 */
990 #define SPARC_ELF_PUT_WORD(htab, bfd, val, ptr) \
991 htab->put_word(bfd, val, ptr)
993 #define SPARC_ELF_R_INFO(htab, in_rel, index, type) \
994 htab->r_info(in_rel, index, type)
996 #define SPARC_ELF_R_SYMNDX(htab, r_info) \
997 htab->r_symndx(r_info)
999 #define SPARC_ELF_WORD_BYTES(htab) \
1000 htab->bytes_per_word
1002 #define SPARC_ELF_RELA_BYTES(htab) \
1003 htab->bytes_per_rela
1005 #define SPARC_ELF_DTPOFF_RELOC(htab) \
1008 #define SPARC_ELF_DTPMOD_RELOC(htab) \
1011 #define SPARC_ELF_TPOFF_RELOC(htab) \
1014 #define SPARC_ELF_BUILD_PLT_ENTRY(htab, obfd, splt, off, max, r_off) \
1015 htab->build_plt_entry (obfd, splt, off, max, r_off)
1017 /* Create an entry in an SPARC ELF linker hash table. */
1019 static struct bfd_hash_entry *
1020 link_hash_newfunc (struct bfd_hash_entry *entry,
1021 struct bfd_hash_table *table, const char *string)
1023 /* Allocate the structure if it has not already been allocated by a
1027 entry = bfd_hash_allocate (table,
1028 sizeof (struct _bfd_sparc_elf_link_hash_entry));
1033 /* Call the allocation method of the superclass. */
1034 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
1037 struct _bfd_sparc_elf_link_hash_entry *eh;
1039 eh = (struct _bfd_sparc_elf_link_hash_entry *) entry;
1040 eh->dyn_relocs = NULL;
1041 eh->tls_type = GOT_UNKNOWN;
1042 eh->has_got_reloc = 0;
1043 eh->has_non_got_reloc = 0;
1049 /* The name of the dynamic interpreter. This is put in the .interp
1052 #define ELF32_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
1053 #define ELF64_DYNAMIC_INTERPRETER "/usr/lib/sparcv9/ld.so.1"
1055 /* Compute a hash of a local hash entry. We use elf_link_hash_entry
1056 for local symbol so that we can handle local STT_GNU_IFUNC symbols
1057 as global symbol. We reuse indx and dynstr_index for local symbol
1058 hash since they aren't used by global symbols in this backend. */
1061 elf_sparc_local_htab_hash (const void *ptr)
1063 struct elf_link_hash_entry *h
1064 = (struct elf_link_hash_entry *) ptr;
1065 return ELF_LOCAL_SYMBOL_HASH (h->indx, h->dynstr_index);
1068 /* Compare local hash entries. */
1071 elf_sparc_local_htab_eq (const void *ptr1, const void *ptr2)
1073 struct elf_link_hash_entry *h1
1074 = (struct elf_link_hash_entry *) ptr1;
1075 struct elf_link_hash_entry *h2
1076 = (struct elf_link_hash_entry *) ptr2;
1078 return h1->indx == h2->indx && h1->dynstr_index == h2->dynstr_index;
1081 /* Find and/or create a hash entry for local symbol. */
1083 static struct elf_link_hash_entry *
1084 elf_sparc_get_local_sym_hash (struct _bfd_sparc_elf_link_hash_table *htab,
1085 bfd *abfd, const Elf_Internal_Rela *rel,
1088 struct _bfd_sparc_elf_link_hash_entry e, *ret;
1089 asection *sec = abfd->sections;
1090 unsigned long r_symndx;
1094 r_symndx = SPARC_ELF_R_SYMNDX (htab, rel->r_info);
1095 h = ELF_LOCAL_SYMBOL_HASH (sec->id, r_symndx);
1097 e.elf.indx = sec->id;
1098 e.elf.dynstr_index = r_symndx;
1099 slot = htab_find_slot_with_hash (htab->loc_hash_table, &e, h,
1100 create ? INSERT : NO_INSERT);
1107 ret = (struct _bfd_sparc_elf_link_hash_entry *) *slot;
1111 ret = (struct _bfd_sparc_elf_link_hash_entry *)
1112 objalloc_alloc ((struct objalloc *) htab->loc_hash_memory,
1113 sizeof (struct _bfd_sparc_elf_link_hash_entry));
1116 memset (ret, 0, sizeof (*ret));
1117 ret->elf.indx = sec->id;
1118 ret->elf.dynstr_index = r_symndx;
1119 ret->elf.dynindx = -1;
1120 ret->elf.plt.offset = (bfd_vma) -1;
1121 ret->elf.got.offset = (bfd_vma) -1;
1127 /* Destroy a SPARC ELF linker hash table. */
1130 _bfd_sparc_elf_link_hash_table_free (bfd *obfd)
1132 struct _bfd_sparc_elf_link_hash_table *htab
1133 = (struct _bfd_sparc_elf_link_hash_table *) obfd->link.hash;
1135 if (htab->loc_hash_table)
1136 htab_delete (htab->loc_hash_table);
1137 if (htab->loc_hash_memory)
1138 objalloc_free ((struct objalloc *) htab->loc_hash_memory);
1139 _bfd_elf_link_hash_table_free (obfd);
1142 /* Create a SPARC ELF linker hash table. */
1144 struct bfd_link_hash_table *
1145 _bfd_sparc_elf_link_hash_table_create (bfd *abfd)
1147 struct _bfd_sparc_elf_link_hash_table *ret;
1148 bfd_size_type amt = sizeof (struct _bfd_sparc_elf_link_hash_table);
1150 ret = (struct _bfd_sparc_elf_link_hash_table *) bfd_zmalloc (amt);
1154 if (ABI_64_P (abfd))
1156 ret->put_word = sparc_put_word_64;
1157 ret->r_info = sparc_elf_r_info_64;
1158 ret->r_symndx = sparc_elf_r_symndx_64;
1159 ret->dtpoff_reloc = R_SPARC_TLS_DTPOFF64;
1160 ret->dtpmod_reloc = R_SPARC_TLS_DTPMOD64;
1161 ret->tpoff_reloc = R_SPARC_TLS_TPOFF64;
1162 ret->word_align_power = 3;
1163 ret->align_power_max = 4;
1164 ret->bytes_per_word = 8;
1165 ret->bytes_per_rela = sizeof (Elf64_External_Rela);
1166 ret->dynamic_interpreter = ELF64_DYNAMIC_INTERPRETER;
1167 ret->dynamic_interpreter_size = sizeof ELF64_DYNAMIC_INTERPRETER;
1169 ret->build_plt_entry = sparc64_plt_entry_build;
1170 ret->plt_header_size = PLT64_HEADER_SIZE;
1171 ret->plt_entry_size = PLT64_ENTRY_SIZE;
1175 ret->put_word = sparc_put_word_32;
1176 ret->r_info = sparc_elf_r_info_32;
1177 ret->r_symndx = sparc_elf_r_symndx_32;
1178 ret->dtpoff_reloc = R_SPARC_TLS_DTPOFF32;
1179 ret->dtpmod_reloc = R_SPARC_TLS_DTPMOD32;
1180 ret->tpoff_reloc = R_SPARC_TLS_TPOFF32;
1181 ret->word_align_power = 2;
1182 ret->align_power_max = 3;
1183 ret->bytes_per_word = 4;
1184 ret->bytes_per_rela = sizeof (Elf32_External_Rela);
1185 ret->dynamic_interpreter = ELF32_DYNAMIC_INTERPRETER;
1186 ret->dynamic_interpreter_size = sizeof ELF32_DYNAMIC_INTERPRETER;
1188 ret->build_plt_entry = sparc32_plt_entry_build;
1189 ret->plt_header_size = PLT32_HEADER_SIZE;
1190 ret->plt_entry_size = PLT32_ENTRY_SIZE;
1193 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd, link_hash_newfunc,
1194 sizeof (struct _bfd_sparc_elf_link_hash_entry),
1201 ret->loc_hash_table = htab_try_create (1024,
1202 elf_sparc_local_htab_hash,
1203 elf_sparc_local_htab_eq,
1205 ret->loc_hash_memory = objalloc_create ();
1206 if (!ret->loc_hash_table || !ret->loc_hash_memory)
1208 _bfd_sparc_elf_link_hash_table_free (abfd);
1211 ret->elf.root.hash_table_free = _bfd_sparc_elf_link_hash_table_free;
1213 return &ret->elf.root;
1216 /* Create .plt, .rela.plt, .got, .rela.got, .dynbss, and
1217 .rela.bss sections in DYNOBJ, and set up shortcuts to them in our
1221 _bfd_sparc_elf_create_dynamic_sections (bfd *dynobj,
1222 struct bfd_link_info *info)
1224 struct _bfd_sparc_elf_link_hash_table *htab;
1226 htab = _bfd_sparc_elf_hash_table (info);
1227 BFD_ASSERT (htab != NULL);
1229 if (!_bfd_elf_create_dynamic_sections (dynobj, info))
1232 if (htab->is_vxworks)
1234 if (!elf_vxworks_create_dynamic_sections (dynobj, info, &htab->srelplt2))
1236 if (bfd_link_pic (info))
1238 htab->plt_header_size
1239 = 4 * ARRAY_SIZE (sparc_vxworks_shared_plt0_entry);
1240 htab->plt_entry_size
1241 = 4 * ARRAY_SIZE (sparc_vxworks_shared_plt_entry);
1245 htab->plt_header_size
1246 = 4 * ARRAY_SIZE (sparc_vxworks_exec_plt0_entry);
1247 htab->plt_entry_size
1248 = 4 * ARRAY_SIZE (sparc_vxworks_exec_plt_entry);
1252 if (!htab->elf.splt || !htab->elf.srelplt || !htab->elf.sdynbss
1253 || (!bfd_link_pic (info) && !htab->elf.srelbss))
1260 create_ifunc_sections (bfd *abfd, struct bfd_link_info *info)
1262 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1263 struct elf_link_hash_table *htab = elf_hash_table (info);
1264 flagword flags, pltflags;
1267 if (htab->irelifunc != NULL || htab->iplt != NULL)
1270 flags = bed->dynamic_sec_flags;
1271 pltflags = flags | SEC_ALLOC | SEC_CODE | SEC_LOAD;
1273 s = bfd_make_section_with_flags (abfd, ".iplt", pltflags);
1275 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
1279 s = bfd_make_section_with_flags (abfd, ".rela.iplt",
1280 flags | SEC_READONLY);
1282 || ! bfd_set_section_alignment (abfd, s,
1283 bed->s->log_file_align))
1290 /* Copy the extra info we tack onto an elf_link_hash_entry. */
1293 _bfd_sparc_elf_copy_indirect_symbol (struct bfd_link_info *info,
1294 struct elf_link_hash_entry *dir,
1295 struct elf_link_hash_entry *ind)
1297 struct _bfd_sparc_elf_link_hash_entry *edir, *eind;
1299 edir = (struct _bfd_sparc_elf_link_hash_entry *) dir;
1300 eind = (struct _bfd_sparc_elf_link_hash_entry *) ind;
1302 if (eind->dyn_relocs != NULL)
1304 if (edir->dyn_relocs != NULL)
1306 struct _bfd_sparc_elf_dyn_relocs **pp;
1307 struct _bfd_sparc_elf_dyn_relocs *p;
1309 /* Add reloc counts against the indirect sym to the direct sym
1310 list. Merge any entries against the same section. */
1311 for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
1313 struct _bfd_sparc_elf_dyn_relocs *q;
1315 for (q = edir->dyn_relocs; q != NULL; q = q->next)
1316 if (q->sec == p->sec)
1318 q->pc_count += p->pc_count;
1319 q->count += p->count;
1326 *pp = edir->dyn_relocs;
1329 edir->dyn_relocs = eind->dyn_relocs;
1330 eind->dyn_relocs = NULL;
1333 if (ind->root.type == bfd_link_hash_indirect
1334 && dir->got.refcount <= 0)
1336 edir->tls_type = eind->tls_type;
1337 eind->tls_type = GOT_UNKNOWN;
1340 /* Copy has_got_reloc and has_non_got_reloc. */
1341 edir->has_got_reloc |= eind->has_got_reloc;
1342 edir->has_non_got_reloc |= eind->has_non_got_reloc;
1344 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
1348 sparc_elf_tls_transition (struct bfd_link_info *info, bfd *abfd,
1349 int r_type, int is_local)
1351 if (! ABI_64_P (abfd)
1352 && r_type == R_SPARC_TLS_GD_HI22
1353 && ! _bfd_sparc_elf_tdata (abfd)->has_tlsgd)
1354 r_type = R_SPARC_REV32;
1356 if (!bfd_link_executable (info))
1361 case R_SPARC_TLS_GD_HI22:
1363 return R_SPARC_TLS_LE_HIX22;
1364 return R_SPARC_TLS_IE_HI22;
1365 case R_SPARC_TLS_GD_LO10:
1367 return R_SPARC_TLS_LE_LOX10;
1368 return R_SPARC_TLS_IE_LO10;
1369 case R_SPARC_TLS_IE_HI22:
1371 return R_SPARC_TLS_LE_HIX22;
1373 case R_SPARC_TLS_IE_LO10:
1375 return R_SPARC_TLS_LE_LOX10;
1377 case R_SPARC_TLS_LDM_HI22:
1378 return R_SPARC_TLS_LE_HIX22;
1379 case R_SPARC_TLS_LDM_LO10:
1380 return R_SPARC_TLS_LE_LOX10;
1386 /* Look through the relocs for a section during the first phase, and
1387 allocate space in the global offset table or procedure linkage
1391 _bfd_sparc_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
1392 asection *sec, const Elf_Internal_Rela *relocs)
1394 struct _bfd_sparc_elf_link_hash_table *htab;
1395 Elf_Internal_Shdr *symtab_hdr;
1396 struct elf_link_hash_entry **sym_hashes;
1397 const Elf_Internal_Rela *rel;
1398 const Elf_Internal_Rela *rel_end;
1401 bfd_boolean checked_tlsgd = FALSE;
1403 if (bfd_link_relocatable (info))
1406 htab = _bfd_sparc_elf_hash_table (info);
1407 BFD_ASSERT (htab != NULL);
1408 symtab_hdr = &elf_symtab_hdr (abfd);
1409 sym_hashes = elf_sym_hashes (abfd);
1413 if (ABI_64_P (abfd))
1414 num_relocs = NUM_SHDR_ENTRIES (_bfd_elf_single_rel_hdr (sec));
1416 num_relocs = sec->reloc_count;
1418 BFD_ASSERT (is_sparc_elf (abfd) || num_relocs == 0);
1420 if (htab->elf.dynobj == NULL)
1421 htab->elf.dynobj = abfd;
1422 if (!create_ifunc_sections (htab->elf.dynobj, info))
1425 rel_end = relocs + num_relocs;
1426 for (rel = relocs; rel < rel_end; rel++)
1428 unsigned int r_type;
1429 unsigned int r_symndx;
1430 struct elf_link_hash_entry *h;
1431 struct _bfd_sparc_elf_link_hash_entry *eh;
1432 Elf_Internal_Sym *isym;
1434 r_symndx = SPARC_ELF_R_SYMNDX (htab, rel->r_info);
1435 r_type = SPARC_ELF_R_TYPE (rel->r_info);
1437 if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
1439 /* xgettext:c-format */
1440 _bfd_error_handler (_("%B: bad symbol index: %d"), abfd, r_symndx);
1445 if (r_symndx < symtab_hdr->sh_info)
1447 /* A local symbol. */
1448 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1453 /* Check relocation against local STT_GNU_IFUNC symbol. */
1454 if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
1456 h = elf_sparc_get_local_sym_hash (htab, abfd, rel,
1461 /* Fake a STT_GNU_IFUNC symbol. */
1462 h->type = STT_GNU_IFUNC;
1465 h->forced_local = 1;
1466 h->root.type = bfd_link_hash_defined;
1473 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1474 while (h->root.type == bfd_link_hash_indirect
1475 || h->root.type == bfd_link_hash_warning)
1476 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1478 /* PR15323, ref flags aren't set for references in the same
1480 h->root.non_ir_ref_regular = 1;
1483 if (h && h->type == STT_GNU_IFUNC)
1488 h->plt.refcount += 1;
1492 /* Compatibility with old R_SPARC_REV32 reloc conflicting
1493 with R_SPARC_TLS_GD_HI22. */
1494 if (! ABI_64_P (abfd) && ! checked_tlsgd)
1497 case R_SPARC_TLS_GD_HI22:
1499 const Elf_Internal_Rela *relt;
1501 for (relt = rel + 1; relt < rel_end; relt++)
1502 if (ELF32_R_TYPE (relt->r_info) == R_SPARC_TLS_GD_LO10
1503 || ELF32_R_TYPE (relt->r_info) == R_SPARC_TLS_GD_ADD
1504 || ELF32_R_TYPE (relt->r_info) == R_SPARC_TLS_GD_CALL)
1506 checked_tlsgd = TRUE;
1507 _bfd_sparc_elf_tdata (abfd)->has_tlsgd = relt < rel_end;
1510 case R_SPARC_TLS_GD_LO10:
1511 case R_SPARC_TLS_GD_ADD:
1512 case R_SPARC_TLS_GD_CALL:
1513 checked_tlsgd = TRUE;
1514 _bfd_sparc_elf_tdata (abfd)->has_tlsgd = TRUE;
1518 r_type = sparc_elf_tls_transition (info, abfd, r_type, h == NULL);
1519 eh = (struct _bfd_sparc_elf_link_hash_entry *) h;
1523 case R_SPARC_TLS_LDM_HI22:
1524 case R_SPARC_TLS_LDM_LO10:
1525 htab->tls_ldm_got.refcount += 1;
1527 eh->has_got_reloc = 1;
1530 case R_SPARC_TLS_LE_HIX22:
1531 case R_SPARC_TLS_LE_LOX10:
1532 if (!bfd_link_executable (info))
1536 case R_SPARC_TLS_IE_HI22:
1537 case R_SPARC_TLS_IE_LO10:
1538 if (!bfd_link_executable (info))
1539 info->flags |= DF_STATIC_TLS;
1545 case R_SPARC_GOTDATA_HIX22:
1546 case R_SPARC_GOTDATA_LOX10:
1547 case R_SPARC_GOTDATA_OP_HIX22:
1548 case R_SPARC_GOTDATA_OP_LOX10:
1549 case R_SPARC_TLS_GD_HI22:
1550 case R_SPARC_TLS_GD_LO10:
1551 /* This symbol requires a global offset table entry. */
1553 int tls_type, old_tls_type;
1561 case R_SPARC_GOTDATA_OP_HIX22:
1562 case R_SPARC_GOTDATA_OP_LOX10:
1563 tls_type = GOT_NORMAL;
1565 case R_SPARC_TLS_GD_HI22:
1566 case R_SPARC_TLS_GD_LO10:
1567 tls_type = GOT_TLS_GD;
1569 case R_SPARC_TLS_IE_HI22:
1570 case R_SPARC_TLS_IE_LO10:
1571 tls_type = GOT_TLS_IE;
1577 h->got.refcount += 1;
1578 old_tls_type = _bfd_sparc_elf_hash_entry(h)->tls_type;
1582 bfd_signed_vma *local_got_refcounts;
1584 /* This is a global offset table entry for a local symbol. */
1585 local_got_refcounts = elf_local_got_refcounts (abfd);
1586 if (local_got_refcounts == NULL)
1590 size = symtab_hdr->sh_info;
1591 size *= (sizeof (bfd_signed_vma) + sizeof(char));
1592 local_got_refcounts = ((bfd_signed_vma *)
1593 bfd_zalloc (abfd, size));
1594 if (local_got_refcounts == NULL)
1596 elf_local_got_refcounts (abfd) = local_got_refcounts;
1597 _bfd_sparc_elf_local_got_tls_type (abfd)
1598 = (char *) (local_got_refcounts + symtab_hdr->sh_info);
1602 case R_SPARC_GOTDATA_OP_HIX22:
1603 case R_SPARC_GOTDATA_OP_LOX10:
1607 local_got_refcounts[r_symndx] += 1;
1610 old_tls_type = _bfd_sparc_elf_local_got_tls_type (abfd) [r_symndx];
1613 /* If a TLS symbol is accessed using IE at least once,
1614 there is no point to use dynamic model for it. */
1615 if (old_tls_type != tls_type && old_tls_type != GOT_UNKNOWN
1616 && (old_tls_type != GOT_TLS_GD
1617 || tls_type != GOT_TLS_IE))
1619 if (old_tls_type == GOT_TLS_IE && tls_type == GOT_TLS_GD)
1620 tls_type = old_tls_type;
1624 /* xgettext:c-format */
1625 (_("%B: `%s' accessed both as normal and thread local symbol"),
1626 abfd, h ? h->root.root.string : "<local>");
1631 if (old_tls_type != tls_type)
1634 _bfd_sparc_elf_hash_entry (h)->tls_type = tls_type;
1636 _bfd_sparc_elf_local_got_tls_type (abfd) [r_symndx] = tls_type;
1640 if (htab->elf.sgot == NULL)
1642 if (!_bfd_elf_create_got_section (htab->elf.dynobj, info))
1647 eh->has_got_reloc = 1;
1650 case R_SPARC_TLS_GD_CALL:
1651 case R_SPARC_TLS_LDM_CALL:
1652 if (!bfd_link_executable (info))
1654 /* These are basically R_SPARC_TLS_WPLT30 relocs against
1656 struct bfd_link_hash_entry *bh = NULL;
1657 if (! _bfd_generic_link_add_one_symbol (info, abfd,
1658 "__tls_get_addr", 0,
1659 bfd_und_section_ptr, 0,
1663 h = (struct elf_link_hash_entry *) bh;
1670 case R_SPARC_WPLT30:
1671 case R_SPARC_HIPLT22:
1672 case R_SPARC_LOPLT10:
1673 case R_SPARC_PCPLT32:
1674 case R_SPARC_PCPLT22:
1675 case R_SPARC_PCPLT10:
1677 /* This symbol requires a procedure linkage table entry. We
1678 actually build the entry in adjust_dynamic_symbol,
1679 because this might be a case of linking PIC code without
1680 linking in any dynamic objects, in which case we don't
1681 need to generate a procedure linkage table after all. */
1685 if (! ABI_64_P (abfd))
1687 /* The Solaris native assembler will generate a WPLT30
1688 reloc for a local symbol if you assemble a call from
1689 one section to another when using -K pic. We treat
1691 if (ELF32_R_TYPE (rel->r_info) == R_SPARC_PLT32)
1695 /* PR 7027: We need similar behaviour for 64-bit binaries. */
1696 else if (r_type == R_SPARC_WPLT30)
1699 /* It does not make sense to have a procedure linkage
1700 table entry for a local symbol. */
1701 bfd_set_error (bfd_error_bad_value);
1710 this_r_type = SPARC_ELF_R_TYPE (rel->r_info);
1711 if (this_r_type == R_SPARC_PLT32
1712 || this_r_type == R_SPARC_PLT64)
1715 h->plt.refcount += 1;
1717 eh = (struct _bfd_sparc_elf_link_hash_entry *) h;
1718 eh->has_got_reloc = 1;
1723 case R_SPARC_PC_HH22:
1724 case R_SPARC_PC_HM10:
1725 case R_SPARC_PC_LM22:
1730 && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
1735 case R_SPARC_DISP16:
1736 case R_SPARC_DISP32:
1737 case R_SPARC_DISP64:
1738 case R_SPARC_WDISP30:
1739 case R_SPARC_WDISP22:
1740 case R_SPARC_WDISP19:
1741 case R_SPARC_WDISP16:
1742 case R_SPARC_WDISP10:
1772 if (eh != NULL && (sec->flags & SEC_CODE) != 0)
1773 eh->has_non_got_reloc = 1;
1776 if (h != NULL && !bfd_link_pic (info))
1778 /* We may need a .plt entry if the function this reloc
1779 refers to is in a shared lib. */
1780 h->plt.refcount += 1;
1783 /* If we are creating a shared library, and this is a reloc
1784 against a global symbol, or a non PC relative reloc
1785 against a local symbol, then we need to copy the reloc
1786 into the shared library. However, if we are linking with
1787 -Bsymbolic, we do not need to copy a reloc against a
1788 global symbol which is defined in an object we are
1789 including in the link (i.e., DEF_REGULAR is set). At
1790 this point we have not seen all the input files, so it is
1791 possible that DEF_REGULAR is not set now but will be set
1792 later (it is never cleared). In case of a weak definition,
1793 DEF_REGULAR may be cleared later by a strong definition in
1794 a shared library. We account for that possibility below by
1795 storing information in the relocs_copied field of the hash
1796 table entry. A similar situation occurs when creating
1797 shared libraries and symbol visibility changes render the
1800 If on the other hand, we are creating an executable, we
1801 may need to keep relocations for symbols satisfied by a
1802 dynamic library if we manage to avoid copy relocs for the
1804 if ((bfd_link_pic (info)
1805 && (sec->flags & SEC_ALLOC) != 0
1806 && (! _bfd_sparc_elf_howto_table[r_type].pc_relative
1808 && (! SYMBOLIC_BIND (info, h)
1809 || h->root.type == bfd_link_hash_defweak
1810 || !h->def_regular))))
1811 || (!bfd_link_pic (info)
1812 && (sec->flags & SEC_ALLOC) != 0
1814 && (h->root.type == bfd_link_hash_defweak
1815 || !h->def_regular))
1816 || (!bfd_link_pic (info)
1818 && h->type == STT_GNU_IFUNC))
1820 struct _bfd_sparc_elf_dyn_relocs *p;
1821 struct _bfd_sparc_elf_dyn_relocs **head;
1823 /* When creating a shared object, we must copy these
1824 relocs into the output file. We create a reloc
1825 section in dynobj and make room for the reloc. */
1828 sreloc = _bfd_elf_make_dynamic_reloc_section
1829 (sec, htab->elf.dynobj, htab->word_align_power,
1830 abfd, /*rela?*/ TRUE);
1836 /* If this is a global symbol, we count the number of
1837 relocations we need for this symbol. */
1839 head = &((struct _bfd_sparc_elf_link_hash_entry *) h)->dyn_relocs;
1842 /* Track dynamic relocs needed for local syms too.
1843 We really need local syms available to do this
1848 BFD_ASSERT (isym != NULL);
1849 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
1853 vpp = &elf_section_data (s)->local_dynrel;
1854 head = (struct _bfd_sparc_elf_dyn_relocs **) vpp;
1858 if (p == NULL || p->sec != sec)
1860 bfd_size_type amt = sizeof *p;
1861 p = ((struct _bfd_sparc_elf_dyn_relocs *)
1862 bfd_alloc (htab->elf.dynobj, amt));
1873 if (_bfd_sparc_elf_howto_table[r_type].pc_relative)
1879 case R_SPARC_GNU_VTINHERIT:
1880 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
1884 case R_SPARC_GNU_VTENTRY:
1885 BFD_ASSERT (h != NULL);
1887 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
1891 case R_SPARC_REGISTER:
1892 /* Nothing to do. */
1904 _bfd_sparc_elf_gc_mark_hook (asection *sec,
1905 struct bfd_link_info *info,
1906 Elf_Internal_Rela *rel,
1907 struct elf_link_hash_entry *h,
1908 Elf_Internal_Sym *sym)
1911 switch (SPARC_ELF_R_TYPE (rel->r_info))
1913 case R_SPARC_GNU_VTINHERIT:
1914 case R_SPARC_GNU_VTENTRY:
1918 /* FIXME: The test here, in check_relocs and in relocate_section
1919 dealing with TLS optimization, ought to be !bfd_link_executable (info). */
1920 if (bfd_link_pic (info))
1922 switch (SPARC_ELF_R_TYPE (rel->r_info))
1924 case R_SPARC_TLS_GD_CALL:
1925 case R_SPARC_TLS_LDM_CALL:
1926 /* This reloc implicitly references __tls_get_addr. We know
1927 another reloc will reference the same symbol as the one
1928 on this reloc, so the real symbol and section will be
1929 gc marked when processing the other reloc. That lets
1930 us handle __tls_get_addr here. */
1931 h = elf_link_hash_lookup (elf_hash_table (info), "__tls_get_addr",
1932 FALSE, FALSE, TRUE);
1933 BFD_ASSERT (h != NULL);
1935 if (h->u.weakdef != NULL)
1936 h->u.weakdef->mark = 1;
1941 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
1944 static Elf_Internal_Rela *
1945 sparc_elf_find_reloc_at_ofs (Elf_Internal_Rela *rel,
1946 Elf_Internal_Rela *relend,
1949 while (rel < relend)
1951 if (rel->r_offset == offset)
1958 /* Remove undefined weak symbol from the dynamic symbol table if it
1959 is resolved to 0. */
1962 _bfd_sparc_elf_fixup_symbol (struct bfd_link_info *info,
1963 struct elf_link_hash_entry *h)
1965 if (h->dynindx != -1
1966 && UNDEFINED_WEAK_RESOLVED_TO_ZERO (info,
1967 _bfd_sparc_elf_hash_entry (h)))
1970 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
1976 /* Adjust a symbol defined by a dynamic object and referenced by a
1977 regular object. The current definition is in some section of the
1978 dynamic object, but we're not including those sections. We have to
1979 change the definition to something the rest of the link can
1983 _bfd_sparc_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
1984 struct elf_link_hash_entry *h)
1986 struct _bfd_sparc_elf_link_hash_table *htab;
1987 struct _bfd_sparc_elf_link_hash_entry * eh;
1988 struct _bfd_sparc_elf_dyn_relocs *p;
1991 htab = _bfd_sparc_elf_hash_table (info);
1992 BFD_ASSERT (htab != NULL);
1994 /* Make sure we know what is going on here. */
1995 BFD_ASSERT (htab->elf.dynobj != NULL
1997 || h->type == STT_GNU_IFUNC
1998 || h->u.weakdef != NULL
2001 && !h->def_regular)));
2003 /* If this is a function, put it in the procedure linkage table. We
2004 will fill in the contents of the procedure linkage table later
2005 (although we could actually do it here). The STT_NOTYPE
2006 condition is a hack specifically for the Oracle libraries
2007 delivered for Solaris; for some inexplicable reason, they define
2008 some of their functions as STT_NOTYPE when they really should be
2010 if (h->type == STT_FUNC
2011 || h->type == STT_GNU_IFUNC
2013 || (h->type == STT_NOTYPE
2014 && (h->root.type == bfd_link_hash_defined
2015 || h->root.type == bfd_link_hash_defweak)
2016 && (h->root.u.def.section->flags & SEC_CODE) != 0))
2018 if (h->plt.refcount <= 0
2019 || (h->type != STT_GNU_IFUNC
2020 && (SYMBOL_CALLS_LOCAL (info, h)
2021 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2022 && h->root.type == bfd_link_hash_undefweak))))
2024 /* This case can occur if we saw a WPLT30 reloc in an input
2025 file, but the symbol was never referred to by a dynamic
2026 object, or if all references were garbage collected. In
2027 such a case, we don't actually need to build a procedure
2028 linkage table, and we can just do a WDISP30 reloc instead. */
2029 h->plt.offset = (bfd_vma) -1;
2036 h->plt.offset = (bfd_vma) -1;
2038 /* If this is a weak symbol, and there is a real definition, the
2039 processor independent code will have arranged for us to see the
2040 real definition first, and we can just use the same value. */
2041 if (h->u.weakdef != NULL)
2043 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
2044 || h->u.weakdef->root.type == bfd_link_hash_defweak);
2045 h->root.u.def.section = h->u.weakdef->root.u.def.section;
2046 h->root.u.def.value = h->u.weakdef->root.u.def.value;
2050 /* This is a reference to a symbol defined by a dynamic object which
2051 is not a function. */
2053 /* If we are creating a shared library, we must presume that the
2054 only references to the symbol are via the global offset table.
2055 For such cases we need not do anything here; the relocations will
2056 be handled correctly by relocate_section. */
2057 if (bfd_link_pic (info))
2060 /* If there are no references to this symbol that do not use the
2061 GOT, we don't need to generate a copy reloc. */
2062 if (!h->non_got_ref)
2065 /* If -z nocopyreloc was given, we won't generate them either. */
2066 if (info->nocopyreloc)
2072 eh = (struct _bfd_sparc_elf_link_hash_entry *) h;
2073 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2075 s = p->sec->output_section;
2076 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2080 /* If we didn't find any dynamic relocs in read-only sections, then
2081 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
2088 /* We must allocate the symbol in our .dynbss section, which will
2089 become part of the .bss section of the executable. There will be
2090 an entry for this symbol in the .dynsym section. The dynamic
2091 object will contain position independent code, so all references
2092 from the dynamic object to this symbol will go through the global
2093 offset table. The dynamic linker will use the .dynsym entry to
2094 determine the address it must put in the global offset table, so
2095 both the dynamic object and the regular object will refer to the
2096 same memory location for the variable. */
2098 /* We must generate a R_SPARC_COPY reloc to tell the dynamic linker
2099 to copy the initial value out of the dynamic object and into the
2100 runtime process image. We need to remember the offset into the
2101 .rel.bss section we are going to use. */
2102 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
2104 s = htab->elf.sdynrelro;
2105 srel = htab->elf.sreldynrelro;
2109 s = htab->elf.sdynbss;
2110 srel = htab->elf.srelbss;
2112 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
2114 srel->size += SPARC_ELF_RELA_BYTES (htab);
2118 return _bfd_elf_adjust_dynamic_copy (info, h, s);
2121 /* Allocate space in .plt, .got and associated reloc sections for
2125 allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
2127 struct bfd_link_info *info;
2128 struct _bfd_sparc_elf_link_hash_table *htab;
2129 struct _bfd_sparc_elf_link_hash_entry *eh;
2130 struct _bfd_sparc_elf_dyn_relocs *p;
2131 bfd_boolean resolved_to_zero;
2133 if (h->root.type == bfd_link_hash_indirect)
2136 info = (struct bfd_link_info *) inf;
2137 htab = _bfd_sparc_elf_hash_table (info);
2138 BFD_ASSERT (htab != NULL);
2140 eh = (struct _bfd_sparc_elf_link_hash_entry *) h;
2141 resolved_to_zero = UNDEFINED_WEAK_RESOLVED_TO_ZERO (info, eh);
2143 if ((htab->elf.dynamic_sections_created
2144 && h->plt.refcount > 0)
2145 || (h->type == STT_GNU_IFUNC
2149 /* Make sure this symbol is output as a dynamic symbol.
2150 Undefined weak syms won't yet be marked as dynamic. */
2151 if (h->dynindx == -1
2153 && !resolved_to_zero
2154 && h->root.type == bfd_link_hash_undefweak)
2156 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2160 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, bfd_link_pic (info), h)
2161 || (h->type == STT_GNU_IFUNC
2164 asection *s = htab->elf.splt;
2169 /* Allocate room for the header. */
2172 s->size = htab->plt_header_size;
2174 /* Allocate space for the .rela.plt.unloaded relocations. */
2175 if (htab->is_vxworks && !bfd_link_pic (info))
2176 htab->srelplt2->size = sizeof (Elf32_External_Rela) * 2;
2179 /* The procedure linkage table size is bounded by the magnitude
2180 of the offset we can describe in the entry. */
2181 if (s->size >= (SPARC_ELF_WORD_BYTES(htab) == 8 ?
2182 (((bfd_vma)1 << 31) << 1) : 0x400000))
2184 bfd_set_error (bfd_error_bad_value);
2188 if (SPARC_ELF_WORD_BYTES(htab) == 8
2189 && s->size >= PLT64_LARGE_THRESHOLD * PLT64_ENTRY_SIZE)
2191 bfd_vma off = s->size - PLT64_LARGE_THRESHOLD * PLT64_ENTRY_SIZE;
2194 off = (off % (160 * PLT64_ENTRY_SIZE)) / PLT64_ENTRY_SIZE;
2196 h->plt.offset = (s->size - (off * 8));
2199 h->plt.offset = s->size;
2201 /* If this symbol is not defined in a regular file, and we are
2202 not generating a shared library, then set the symbol to this
2203 location in the .plt. This is required to make function
2204 pointers compare as equal between the normal executable and
2205 the shared library. */
2206 if (! bfd_link_pic (info)
2209 h->root.u.def.section = s;
2210 h->root.u.def.value = h->plt.offset;
2213 /* Make room for this entry. */
2214 s->size += htab->plt_entry_size;
2216 /* There should be no PLT relocations against resolved undefined
2217 weak symbols in the executable. */
2218 if (!resolved_to_zero)
2220 /* We also need to make an entry in the .rela.plt section. */
2221 if (s == htab->elf.splt)
2222 htab->elf.srelplt->size += SPARC_ELF_RELA_BYTES (htab);
2224 htab->elf.irelplt->size += SPARC_ELF_RELA_BYTES (htab);
2227 if (htab->is_vxworks)
2229 /* Allocate space for the .got.plt entry. */
2230 htab->elf.sgotplt->size += 4;
2232 /* ...and for the .rela.plt.unloaded relocations. */
2233 if (!bfd_link_pic (info))
2234 htab->srelplt2->size += sizeof (Elf32_External_Rela) * 3;
2239 h->plt.offset = (bfd_vma) -1;
2245 h->plt.offset = (bfd_vma) -1;
2249 /* If R_SPARC_TLS_IE_{HI22,LO10} symbol is now local to the binary,
2250 make it a R_SPARC_TLS_LE_{HI22,LO10} requiring no TLS entry. */
2251 if (h->got.refcount > 0
2252 && bfd_link_executable (info)
2254 && _bfd_sparc_elf_hash_entry(h)->tls_type == GOT_TLS_IE)
2255 h->got.offset = (bfd_vma) -1;
2256 else if (h->got.refcount > 0)
2260 int tls_type = _bfd_sparc_elf_hash_entry(h)->tls_type;
2262 /* Make sure this symbol is output as a dynamic symbol.
2263 Undefined weak syms won't yet be marked as dynamic. */
2264 if (h->dynindx == -1
2266 && !resolved_to_zero
2267 && h->root.type == bfd_link_hash_undefweak)
2269 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2274 h->got.offset = s->size;
2275 s->size += SPARC_ELF_WORD_BYTES (htab);
2276 /* R_SPARC_TLS_GD_HI{22,LO10} needs 2 consecutive GOT slots. */
2277 if (tls_type == GOT_TLS_GD)
2278 s->size += SPARC_ELF_WORD_BYTES (htab);
2279 dyn = htab->elf.dynamic_sections_created;
2280 /* R_SPARC_TLS_IE_{HI22,LO10} needs one dynamic relocation,
2281 R_SPARC_TLS_GD_{HI22,LO10} needs one if local symbol and two if
2282 global. No dynamic relocations are needed against resolved
2283 undefined weak symbols in an executable. */
2284 if ((tls_type == GOT_TLS_GD && h->dynindx == -1)
2285 || tls_type == GOT_TLS_IE
2286 || h->type == STT_GNU_IFUNC)
2287 htab->elf.srelgot->size += SPARC_ELF_RELA_BYTES (htab);
2288 else if (tls_type == GOT_TLS_GD)
2289 htab->elf.srelgot->size += 2 * SPARC_ELF_RELA_BYTES (htab);
2290 else if (((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2291 && !resolved_to_zero)
2292 || h->root.type != bfd_link_hash_undefweak)
2293 && WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
2294 bfd_link_pic (info),
2296 htab->elf.srelgot->size += SPARC_ELF_RELA_BYTES (htab);
2299 h->got.offset = (bfd_vma) -1;
2301 if (eh->dyn_relocs == NULL)
2304 /* In the shared -Bsymbolic case, discard space allocated for
2305 dynamic pc-relative relocs against symbols which turn out to be
2306 defined in regular objects. For the normal shared case, discard
2307 space for pc-relative relocs that have become local due to symbol
2308 visibility changes. */
2310 if (bfd_link_pic (info))
2312 if (SYMBOL_CALLS_LOCAL (info, h))
2314 struct _bfd_sparc_elf_dyn_relocs **pp;
2316 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2318 p->count -= p->pc_count;
2327 if (htab->is_vxworks)
2329 struct _bfd_sparc_elf_dyn_relocs **pp;
2331 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2333 if (strcmp (p->sec->output_section->name, ".tls_vars") == 0)
2340 /* Also discard relocs on undefined weak syms with non-default
2341 visibility or in PIE. */
2342 if (eh->dyn_relocs != NULL
2343 && h->root.type == bfd_link_hash_undefweak)
2345 /* An undefined weak symbol is never
2346 bound locally in a shared library. */
2348 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2349 || resolved_to_zero)
2353 /* Keep dynamic non-GOT/non-PLT relocation so that we
2354 can branch to 0 without PLT. */
2355 struct _bfd_sparc_elf_dyn_relocs **pp;
2357 for (pp = &eh->dyn_relocs; (p = *pp) != NULL;)
2358 if (p->pc_count == 0)
2362 /* Remove other relocations. */
2363 p->count = p->pc_count;
2367 if (eh->dyn_relocs != NULL)
2369 /* Make sure undefined weak symbols are output
2370 as dynamic symbols in PIEs for dynamic non-GOT
2371 non-PLT reloations. */
2372 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2377 eh->dyn_relocs = NULL;
2380 /* Make sure undefined weak symbols are output as a dynamic
2382 else if (h->dynindx == -1
2383 && !h->forced_local)
2385 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2392 /* For the non-shared case, discard space for relocs against
2393 symbols which turn out to need copy relocs or are not
2396 if ((!h->non_got_ref
2397 || (h->root.type == bfd_link_hash_undefweak
2398 && !resolved_to_zero))
2401 || (htab->elf.dynamic_sections_created
2402 && (h->root.type == bfd_link_hash_undefweak
2403 || h->root.type == bfd_link_hash_undefined))))
2405 /* Make sure this symbol is output as a dynamic symbol.
2406 Undefined weak syms won't yet be marked as dynamic. */
2407 if (h->dynindx == -1
2409 && !resolved_to_zero
2410 && h->root.type == bfd_link_hash_undefweak)
2412 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2416 /* If that succeeded, we know we'll be keeping all the
2418 if (h->dynindx != -1)
2422 eh->dyn_relocs = NULL;
2427 /* Finally, allocate space. */
2428 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2430 asection *sreloc = elf_section_data (p->sec)->sreloc;
2431 sreloc->size += p->count * SPARC_ELF_RELA_BYTES (htab);
2437 /* Allocate space in .plt, .got and associated reloc sections for
2438 local dynamic relocs. */
2441 allocate_local_dynrelocs (void **slot, void *inf)
2443 struct elf_link_hash_entry *h
2444 = (struct elf_link_hash_entry *) *slot;
2446 if (h->type != STT_GNU_IFUNC
2450 || h->root.type != bfd_link_hash_defined)
2453 return allocate_dynrelocs (h, inf);
2456 /* Find any dynamic relocs that apply to read-only sections. */
2459 readonly_dynrelocs (struct elf_link_hash_entry *h, void * inf)
2461 struct _bfd_sparc_elf_link_hash_entry *eh;
2462 struct _bfd_sparc_elf_dyn_relocs *p;
2464 eh = (struct _bfd_sparc_elf_link_hash_entry *) h;
2465 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2467 asection *s = p->sec->output_section;
2469 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2471 struct bfd_link_info *info = (struct bfd_link_info *) inf;
2473 info->flags |= DF_TEXTREL;
2475 info->callbacks->minfo (_("%B: dynamic relocation in read-only section `%A'\n"),
2476 p->sec->owner, p->sec);
2478 /* Not an error, just cut short the traversal. */
2485 /* Return true if the dynamic symbol for a given section should be
2486 omitted when creating a shared library. */
2489 _bfd_sparc_elf_omit_section_dynsym (bfd *output_bfd,
2490 struct bfd_link_info *info,
2493 /* We keep the .got section symbol so that explicit relocations
2494 against the _GLOBAL_OFFSET_TABLE_ symbol emitted in PIC mode
2495 can be turned into relocations against the .got symbol. */
2496 if (strcmp (p->name, ".got") == 0)
2499 return _bfd_elf_link_omit_section_dynsym (output_bfd, info, p);
2502 /* Set the sizes of the dynamic sections. */
2505 _bfd_sparc_elf_size_dynamic_sections (bfd *output_bfd,
2506 struct bfd_link_info *info)
2508 struct _bfd_sparc_elf_link_hash_table *htab;
2513 htab = _bfd_sparc_elf_hash_table (info);
2514 BFD_ASSERT (htab != NULL);
2515 dynobj = htab->elf.dynobj;
2516 BFD_ASSERT (dynobj != NULL);
2518 if (elf_hash_table (info)->dynamic_sections_created)
2520 /* Set the contents of the .interp section to the interpreter. */
2521 if (bfd_link_executable (info) && !info->nointerp)
2523 s = bfd_get_linker_section (dynobj, ".interp");
2524 BFD_ASSERT (s != NULL);
2525 s->size = htab->dynamic_interpreter_size;
2526 s->contents = (unsigned char *) htab->dynamic_interpreter;
2531 /* Set up .got offsets for local syms, and space for local dynamic
2533 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
2535 bfd_signed_vma *local_got;
2536 bfd_signed_vma *end_local_got;
2537 char *local_tls_type;
2538 bfd_size_type locsymcount;
2539 Elf_Internal_Shdr *symtab_hdr;
2542 if (! is_sparc_elf (ibfd))
2545 for (s = ibfd->sections; s != NULL; s = s->next)
2547 struct _bfd_sparc_elf_dyn_relocs *p;
2549 for (p = elf_section_data (s)->local_dynrel; p != NULL; p = p->next)
2551 if (!bfd_is_abs_section (p->sec)
2552 && bfd_is_abs_section (p->sec->output_section))
2554 /* Input section has been discarded, either because
2555 it is a copy of a linkonce section or due to
2556 linker script /DISCARD/, so we'll be discarding
2559 else if (htab->is_vxworks
2560 && strcmp (p->sec->output_section->name,
2563 /* Relocations in vxworks .tls_vars sections are
2564 handled specially by the loader. */
2566 else if (p->count != 0)
2568 srel = elf_section_data (p->sec)->sreloc;
2569 if (!htab->elf.dynamic_sections_created)
2570 srel = htab->elf.irelplt;
2571 srel->size += p->count * SPARC_ELF_RELA_BYTES (htab);
2572 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
2574 info->flags |= DF_TEXTREL;
2575 info->callbacks->minfo (_("%B: dynamic relocation in read-only section `%A'\n"),
2576 p->sec->owner, p->sec);
2582 local_got = elf_local_got_refcounts (ibfd);
2586 symtab_hdr = &elf_symtab_hdr (ibfd);
2587 locsymcount = symtab_hdr->sh_info;
2588 end_local_got = local_got + locsymcount;
2589 local_tls_type = _bfd_sparc_elf_local_got_tls_type (ibfd);
2591 srel = htab->elf.srelgot;
2592 for (; local_got < end_local_got; ++local_got, ++local_tls_type)
2596 *local_got = s->size;
2597 s->size += SPARC_ELF_WORD_BYTES (htab);
2598 if (*local_tls_type == GOT_TLS_GD)
2599 s->size += SPARC_ELF_WORD_BYTES (htab);
2600 if (bfd_link_pic (info)
2601 || *local_tls_type == GOT_TLS_GD
2602 || *local_tls_type == GOT_TLS_IE)
2603 srel->size += SPARC_ELF_RELA_BYTES (htab);
2606 *local_got = (bfd_vma) -1;
2610 if (htab->tls_ldm_got.refcount > 0)
2612 /* Allocate 2 got entries and 1 dynamic reloc for
2613 R_SPARC_TLS_LDM_{HI22,LO10} relocs. */
2614 htab->tls_ldm_got.offset = htab->elf.sgot->size;
2615 htab->elf.sgot->size += (2 * SPARC_ELF_WORD_BYTES (htab));
2616 htab->elf.srelgot->size += SPARC_ELF_RELA_BYTES (htab);
2619 htab->tls_ldm_got.offset = -1;
2621 /* Allocate global sym .plt and .got entries, and space for global
2622 sym dynamic relocs. */
2623 elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, info);
2625 /* Allocate .plt and .got entries, and space for local symbols. */
2626 htab_traverse (htab->loc_hash_table, allocate_local_dynrelocs, info);
2628 if (! ABI_64_P (output_bfd)
2629 && !htab->is_vxworks
2630 && elf_hash_table (info)->dynamic_sections_created)
2632 /* Make space for the trailing nop in .plt. */
2633 if (htab->elf.splt->size > 0)
2634 htab->elf.splt->size += 1 * SPARC_INSN_BYTES;
2636 /* If the .got section is more than 0x1000 bytes, we add
2637 0x1000 to the value of _GLOBAL_OFFSET_TABLE_, so that 13
2638 bit relocations have a greater chance of working.
2640 FIXME: Make this optimization work for 64-bit too. */
2641 if (htab->elf.sgot->size >= 0x1000
2642 && elf_hash_table (info)->hgot->root.u.def.value == 0)
2643 elf_hash_table (info)->hgot->root.u.def.value = 0x1000;
2646 /* The check_relocs and adjust_dynamic_symbol entry points have
2647 determined the sizes of the various dynamic sections. Allocate
2649 for (s = dynobj->sections; s != NULL; s = s->next)
2651 if ((s->flags & SEC_LINKER_CREATED) == 0)
2654 if (s == htab->elf.splt
2655 || s == htab->elf.sgot
2656 || s == htab->elf.sdynbss
2657 || s == htab->elf.sdynrelro
2658 || s == htab->elf.iplt
2659 || s == htab->elf.sgotplt)
2661 /* Strip this section if we don't need it; see the
2664 else if (CONST_STRNEQ (s->name, ".rela"))
2668 /* We use the reloc_count field as a counter if we need
2669 to copy relocs into the output file. */
2675 /* It's not one of our sections. */
2681 /* If we don't need this section, strip it from the
2682 output file. This is mostly to handle .rela.bss and
2683 .rela.plt. We must create both sections in
2684 create_dynamic_sections, because they must be created
2685 before the linker maps input sections to output
2686 sections. The linker does that before
2687 adjust_dynamic_symbol is called, and it is that
2688 function which decides whether anything needs to go
2689 into these sections. */
2690 s->flags |= SEC_EXCLUDE;
2694 if ((s->flags & SEC_HAS_CONTENTS) == 0)
2697 /* Allocate memory for the section contents. Zero the memory
2698 for the benefit of .rela.plt, which has 4 unused entries
2699 at the beginning, and we don't want garbage. */
2700 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
2701 if (s->contents == NULL)
2705 if (elf_hash_table (info)->dynamic_sections_created)
2707 /* Add some entries to the .dynamic section. We fill in the
2708 values later, in _bfd_sparc_elf_finish_dynamic_sections, but we
2709 must add the entries now so that we get the correct size for
2710 the .dynamic section. The DT_DEBUG entry is filled in by the
2711 dynamic linker and used by the debugger. */
2712 #define add_dynamic_entry(TAG, VAL) \
2713 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
2715 if (bfd_link_executable (info))
2717 if (!add_dynamic_entry (DT_DEBUG, 0))
2721 if (htab->elf.srelplt->size != 0)
2723 if (!add_dynamic_entry (DT_PLTGOT, 0)
2724 || !add_dynamic_entry (DT_PLTRELSZ, 0)
2725 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
2726 || !add_dynamic_entry (DT_JMPREL, 0))
2730 if (!add_dynamic_entry (DT_RELA, 0)
2731 || !add_dynamic_entry (DT_RELASZ, 0)
2732 || !add_dynamic_entry (DT_RELAENT,
2733 SPARC_ELF_RELA_BYTES (htab)))
2736 /* If any dynamic relocs apply to a read-only section,
2737 then we need a DT_TEXTREL entry. */
2738 if ((info->flags & DF_TEXTREL) == 0)
2739 elf_link_hash_traverse (&htab->elf, readonly_dynrelocs, info);
2741 if (info->flags & DF_TEXTREL)
2743 if (!add_dynamic_entry (DT_TEXTREL, 0))
2747 if (ABI_64_P (output_bfd))
2750 struct _bfd_sparc_elf_app_reg * app_regs;
2751 struct elf_strtab_hash *dynstr;
2752 struct elf_link_hash_table *eht = elf_hash_table (info);
2754 /* Add dynamic STT_REGISTER symbols and corresponding DT_SPARC_REGISTER
2755 entries if needed. */
2756 app_regs = _bfd_sparc_elf_hash_table (info)->app_regs;
2757 dynstr = eht->dynstr;
2759 for (reg = 0; reg < 4; reg++)
2760 if (app_regs [reg].name != NULL)
2762 struct elf_link_local_dynamic_entry *entry, *e;
2764 if (!add_dynamic_entry (DT_SPARC_REGISTER, 0))
2767 entry = (struct elf_link_local_dynamic_entry *)
2768 bfd_hash_allocate (&info->hash->table, sizeof (*entry));
2772 /* We cheat here a little bit: the symbol will not be local, so we
2773 put it at the end of the dynlocal linked list. We will fix it
2774 later on, as we have to fix other fields anyway. */
2775 entry->isym.st_value = reg < 2 ? reg + 2 : reg + 4;
2776 entry->isym.st_size = 0;
2777 if (*app_regs [reg].name != '\0')
2779 = _bfd_elf_strtab_add (dynstr, app_regs[reg].name, FALSE);
2781 entry->isym.st_name = 0;
2782 entry->isym.st_other = 0;
2783 entry->isym.st_info = ELF_ST_INFO (app_regs [reg].bind,
2785 entry->isym.st_shndx = app_regs [reg].shndx;
2786 entry->isym.st_target_internal = 0;
2788 entry->input_bfd = output_bfd;
2789 entry->input_indx = -1;
2791 if (eht->dynlocal == NULL)
2792 eht->dynlocal = entry;
2795 for (e = eht->dynlocal; e->next; e = e->next)
2802 if (htab->is_vxworks
2803 && !elf_vxworks_add_dynamic_entries (output_bfd, info))
2806 #undef add_dynamic_entry
2812 _bfd_sparc_elf_new_section_hook (bfd *abfd, asection *sec)
2814 if (!sec->used_by_bfd)
2816 struct _bfd_sparc_elf_section_data *sdata;
2817 bfd_size_type amt = sizeof (*sdata);
2819 sdata = bfd_zalloc (abfd, amt);
2822 sec->used_by_bfd = sdata;
2825 return _bfd_elf_new_section_hook (abfd, sec);
2829 _bfd_sparc_elf_relax_section (bfd *abfd ATTRIBUTE_UNUSED,
2830 struct bfd_section *section,
2831 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
2834 if (bfd_link_relocatable (link_info))
2835 (*link_info->callbacks->einfo)
2836 (_("%P%F: --relax and -r may not be used together\n"));
2839 sec_do_relax (section) = 1;
2843 /* Return the base VMA address which should be subtracted from real addresses
2844 when resolving @dtpoff relocation.
2845 This is PT_TLS segment p_vaddr. */
2848 dtpoff_base (struct bfd_link_info *info)
2850 /* If tls_sec is NULL, we should have signalled an error already. */
2851 if (elf_hash_table (info)->tls_sec == NULL)
2853 return elf_hash_table (info)->tls_sec->vma;
2856 /* Return the relocation value for @tpoff relocation
2857 if STT_TLS virtual address is ADDRESS. */
2860 tpoff (struct bfd_link_info *info, bfd_vma address)
2862 struct elf_link_hash_table *htab = elf_hash_table (info);
2863 const struct elf_backend_data *bed = get_elf_backend_data (info->output_bfd);
2864 bfd_vma static_tls_size;
2866 /* If tls_sec is NULL, we should have signalled an error already. */
2867 if (htab->tls_sec == NULL)
2870 /* Consider special static TLS alignment requirements. */
2871 static_tls_size = BFD_ALIGN (htab->tls_size, bed->static_tls_alignment);
2872 return address - static_tls_size - htab->tls_sec->vma;
2875 /* Return the relocation value for a %gdop relocation. */
2878 gdopoff (struct bfd_link_info *info, bfd_vma address)
2880 struct elf_link_hash_table *htab = elf_hash_table (info);
2883 got_base = (htab->hgot->root.u.def.value
2884 + htab->hgot->root.u.def.section->output_offset
2885 + htab->hgot->root.u.def.section->output_section->vma);
2887 return address - got_base;
2890 /* Return whether H is local and its ADDRESS is within 4G of
2891 _GLOBAL_OFFSET_TABLE_ and thus the offset may be calculated by a
2892 sethi, xor sequence. */
2895 gdop_relative_offset_ok (struct bfd_link_info *info,
2896 struct elf_link_hash_entry *h,
2897 bfd_vma address ATTRIBUTE_UNUSED)
2899 if (!SYMBOL_REFERENCES_LOCAL (info, h))
2901 /* If H is undefined, ADDRESS will be zero. We can't allow a
2902 relative offset to "zero" when producing PIEs or shared libs.
2903 Note that to get here with an undefined symbol it must also be
2904 hidden or internal visibility. */
2905 if (bfd_link_pic (info)
2907 && (h->root.type == bfd_link_hash_undefweak
2908 || h->root.type == bfd_link_hash_undefined))
2911 return gdopoff (info, address) + ((bfd_vma) 1 << 32) < (bfd_vma) 2 << 32;
2917 /* Relocate a SPARC ELF section. */
2920 _bfd_sparc_elf_relocate_section (bfd *output_bfd,
2921 struct bfd_link_info *info,
2923 asection *input_section,
2925 Elf_Internal_Rela *relocs,
2926 Elf_Internal_Sym *local_syms,
2927 asection **local_sections)
2929 struct _bfd_sparc_elf_link_hash_table *htab;
2930 Elf_Internal_Shdr *symtab_hdr;
2931 struct elf_link_hash_entry **sym_hashes;
2932 bfd_vma *local_got_offsets;
2935 Elf_Internal_Rela *rel;
2936 Elf_Internal_Rela *relend;
2938 bfd_boolean is_vxworks_tls;
2940 htab = _bfd_sparc_elf_hash_table (info);
2941 BFD_ASSERT (htab != NULL);
2942 symtab_hdr = &elf_symtab_hdr (input_bfd);
2943 sym_hashes = elf_sym_hashes (input_bfd);
2944 local_got_offsets = elf_local_got_offsets (input_bfd);
2946 if (elf_hash_table (info)->hgot == NULL)
2949 got_base = elf_hash_table (info)->hgot->root.u.def.value;
2951 sreloc = elf_section_data (input_section)->sreloc;
2952 /* We have to handle relocations in vxworks .tls_vars sections
2953 specially, because the dynamic loader is 'weird'. */
2954 is_vxworks_tls = (htab->is_vxworks && bfd_link_pic (info)
2955 && !strcmp (input_section->output_section->name,
2959 if (ABI_64_P (output_bfd))
2960 num_relocs = NUM_SHDR_ENTRIES (_bfd_elf_single_rel_hdr (input_section));
2962 num_relocs = input_section->reloc_count;
2963 relend = relocs + num_relocs;
2964 for (; rel < relend; rel++)
2966 int r_type, tls_type;
2967 reloc_howto_type *howto;
2968 unsigned long r_symndx;
2969 struct elf_link_hash_entry *h;
2970 struct _bfd_sparc_elf_link_hash_entry *eh;
2971 Elf_Internal_Sym *sym;
2973 bfd_vma relocation, off;
2974 bfd_reloc_status_type r;
2975 bfd_boolean is_plt = FALSE;
2976 bfd_boolean unresolved_reloc;
2977 bfd_boolean resolved_to_zero;
2978 bfd_boolean relative_reloc;
2980 r_type = SPARC_ELF_R_TYPE (rel->r_info);
2981 if (r_type == R_SPARC_GNU_VTINHERIT
2982 || r_type == R_SPARC_GNU_VTENTRY)
2985 if (r_type < 0 || r_type >= (int) R_SPARC_max_std)
2987 bfd_set_error (bfd_error_bad_value);
2990 howto = _bfd_sparc_elf_howto_table + r_type;
2992 r_symndx = SPARC_ELF_R_SYMNDX (htab, rel->r_info);
2996 unresolved_reloc = FALSE;
2997 if (r_symndx < symtab_hdr->sh_info)
2999 sym = local_syms + r_symndx;
3000 sec = local_sections[r_symndx];
3001 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
3003 if (!bfd_link_relocatable (info)
3004 && ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
3006 /* Relocate against local STT_GNU_IFUNC symbol. */
3007 h = elf_sparc_get_local_sym_hash (htab, input_bfd,
3012 /* Set STT_GNU_IFUNC symbol value. */
3013 h->root.u.def.value = sym->st_value;
3014 h->root.u.def.section = sec;
3019 bfd_boolean warned, ignored;
3021 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
3022 r_symndx, symtab_hdr, sym_hashes,
3024 unresolved_reloc, warned, ignored);
3027 /* To avoid generating warning messages about truncated
3028 relocations, set the relocation's address to be the same as
3029 the start of this section. */
3030 if (input_section->output_section != NULL)
3031 relocation = input_section->output_section->vma;
3037 if (sec != NULL && discarded_section (sec))
3038 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
3039 rel, 1, relend, howto, 0, contents);
3041 if (bfd_link_relocatable (info))
3045 && h->type == STT_GNU_IFUNC
3051 if ((input_section->flags & SEC_ALLOC) == 0
3052 || h->plt.offset == (bfd_vma) -1)
3055 plt_sec = htab->elf.splt;
3057 plt_sec =htab->elf.iplt;
3061 case R_SPARC_GOTDATA_OP:
3064 case R_SPARC_GOTDATA_OP_HIX22:
3065 case R_SPARC_GOTDATA_OP_LOX10:
3066 r_type = (r_type == R_SPARC_GOTDATA_OP_HIX22
3069 howto = _bfd_sparc_elf_howto_table + r_type;
3075 if (htab->elf.sgot == NULL)
3077 off = h->got.offset;
3078 if (off == (bfd_vma) -1)
3080 relocation = htab->elf.sgot->output_offset + off - got_base;
3083 case R_SPARC_WPLT30:
3084 case R_SPARC_WDISP30:
3085 relocation = (plt_sec->output_section->vma
3086 + plt_sec->output_offset + h->plt.offset);
3091 if (bfd_link_pic (info) && h->non_got_ref)
3093 Elf_Internal_Rela outrel;
3096 offset = _bfd_elf_section_offset (output_bfd, info,
3099 if (offset == (bfd_vma) -1
3100 || offset == (bfd_vma) -2)
3103 outrel.r_offset = (input_section->output_section->vma
3104 + input_section->output_offset
3107 if (h->dynindx == -1
3109 || bfd_link_executable (info))
3111 outrel.r_info = SPARC_ELF_R_INFO (htab, NULL,
3112 0, R_SPARC_IRELATIVE);
3113 outrel.r_addend = relocation + rel->r_addend;
3117 if (h->dynindx == -1)
3119 outrel.r_info = SPARC_ELF_R_INFO (htab, rel, h->dynindx, r_type);
3120 outrel.r_addend = rel->r_addend;
3123 sparc_elf_append_rela (output_bfd, sreloc, &outrel);
3127 relocation = (plt_sec->output_section->vma
3128 + plt_sec->output_offset + h->plt.offset);
3133 /* We should only see such relocs in static links. */
3134 if (bfd_link_pic (info))
3136 relocation = (plt_sec->output_section->vma
3137 + plt_sec->output_offset + h->plt.offset);
3141 if (h->root.root.string)
3142 name = h->root.root.string;
3144 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
3147 /* xgettext:c-format */
3148 (_("%B: relocation %s against STT_GNU_IFUNC "
3149 "symbol `%s' isn't handled by %s"), input_bfd,
3150 _bfd_sparc_elf_howto_table[r_type].name,
3151 name, __FUNCTION__);
3152 bfd_set_error (bfd_error_bad_value);
3157 eh = (struct _bfd_sparc_elf_link_hash_entry *) h;
3158 resolved_to_zero = (eh != NULL
3159 && UNDEFINED_WEAK_RESOLVED_TO_ZERO (info, eh));
3163 case R_SPARC_GOTDATA_OP_HIX22:
3164 case R_SPARC_GOTDATA_OP_LOX10:
3165 if (gdop_relative_offset_ok (info, h, relocation))
3167 r_type = (r_type == R_SPARC_GOTDATA_OP_HIX22
3168 ? R_SPARC_GOTDATA_HIX22
3169 : R_SPARC_GOTDATA_LOX10);
3170 howto = _bfd_sparc_elf_howto_table + r_type;
3174 case R_SPARC_GOTDATA_OP:
3175 if (gdop_relative_offset_ok (info, h, relocation))
3177 bfd_vma insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
3179 /* {ld,ldx} [%rs1 + %rs2], %rd --> add %rs1, %rs2, %rd */
3180 relocation = 0x80000000 | (insn & 0x3e07c01f);
3181 bfd_put_32 (output_bfd, relocation, contents + rel->r_offset);
3188 case R_SPARC_GOTDATA_HIX22:
3189 case R_SPARC_GOTDATA_LOX10:
3190 relocation = gdopoff (info, relocation);
3193 case R_SPARC_GOTDATA_OP_HIX22:
3194 case R_SPARC_GOTDATA_OP_LOX10:
3198 /* Relocation is to the entry for this symbol in the global
3200 if (htab->elf.sgot == NULL)
3203 relative_reloc = FALSE;
3208 off = h->got.offset;
3209 BFD_ASSERT (off != (bfd_vma) -1);
3210 dyn = elf_hash_table (info)->dynamic_sections_created;
3212 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
3213 bfd_link_pic (info),
3215 || (bfd_link_pic (info)
3216 && SYMBOL_REFERENCES_LOCAL (info, h)))
3218 /* This is actually a static link, or it is a
3219 -Bsymbolic link and the symbol is defined
3220 locally, or the symbol was forced to be local
3221 because of a version file. We must initialize
3222 this entry in the global offset table. Since the
3223 offset must always be a multiple of 8 for 64-bit
3224 and 4 for 32-bit, we use the least significant bit
3225 to record whether we have initialized it already.
3227 When doing a dynamic link, we create a .rela.got
3228 relocation entry to initialize the value. This
3229 is done in the finish_dynamic_symbol routine. */
3234 SPARC_ELF_PUT_WORD (htab, output_bfd, relocation,
3235 htab->elf.sgot->contents + off);
3238 if (h->dynindx == -1
3240 && h->root.type != bfd_link_hash_undefweak
3241 && bfd_link_pic (info))
3243 /* If this symbol isn't dynamic in PIC
3244 generate R_SPARC_RELATIVE here. */
3245 relative_reloc = TRUE;
3250 unresolved_reloc = FALSE;
3254 BFD_ASSERT (local_got_offsets != NULL
3255 && local_got_offsets[r_symndx] != (bfd_vma) -1);
3257 off = local_got_offsets[r_symndx];
3259 /* The offset must always be a multiple of 8 on 64-bit and
3260 4 on 32-bit. We use the least significant bit to record
3261 whether we have already processed this entry. */
3266 if (bfd_link_pic (info))
3268 relative_reloc = TRUE;
3271 SPARC_ELF_PUT_WORD (htab, output_bfd, relocation,
3272 htab->elf.sgot->contents + off);
3273 local_got_offsets[r_symndx] |= 1;
3280 Elf_Internal_Rela outrel;
3282 /* We need to generate a R_SPARC_RELATIVE reloc
3283 for the dynamic linker. */
3284 s = htab->elf.srelgot;
3285 BFD_ASSERT (s != NULL);
3287 outrel.r_offset = (htab->elf.sgot->output_section->vma
3288 + htab->elf.sgot->output_offset
3290 outrel.r_info = SPARC_ELF_R_INFO (htab, NULL,
3291 0, R_SPARC_RELATIVE);
3292 outrel.r_addend = relocation;
3294 sparc_elf_append_rela (output_bfd, s, &outrel);
3297 relocation = htab->elf.sgot->output_offset + off - got_base;
3302 if (h == NULL || h->plt.offset == (bfd_vma) -1)
3304 r_type = (r_type == R_SPARC_PLT32) ? R_SPARC_32 : R_SPARC_64;
3309 case R_SPARC_WPLT30:
3310 case R_SPARC_HIPLT22:
3311 case R_SPARC_LOPLT10:
3312 case R_SPARC_PCPLT32:
3313 case R_SPARC_PCPLT22:
3314 case R_SPARC_PCPLT10:
3316 /* Relocation is to the entry for this symbol in the
3317 procedure linkage table. */
3319 if (! ABI_64_P (output_bfd))
3321 /* The Solaris native assembler will generate a WPLT30 reloc
3322 for a local symbol if you assemble a call from one
3323 section to another when using -K pic. We treat it as
3328 /* PR 7027: We need similar behaviour for 64-bit binaries. */
3329 else if (r_type == R_SPARC_WPLT30 && h == NULL)
3333 BFD_ASSERT (h != NULL);
3336 if (h->plt.offset == (bfd_vma) -1 || htab->elf.splt == NULL)
3338 /* We didn't make a PLT entry for this symbol. This
3339 happens when statically linking PIC code, or when
3340 using -Bsymbolic. */
3344 relocation = (htab->elf.splt->output_section->vma
3345 + htab->elf.splt->output_offset
3347 unresolved_reloc = FALSE;
3348 if (r_type == R_SPARC_PLT32 || r_type == R_SPARC_PLT64)
3350 r_type = r_type == R_SPARC_PLT32 ? R_SPARC_32 : R_SPARC_64;
3358 case R_SPARC_PC_HH22:
3359 case R_SPARC_PC_HM10:
3360 case R_SPARC_PC_LM22:
3362 && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
3366 case R_SPARC_DISP16:
3367 case R_SPARC_DISP32:
3368 case R_SPARC_DISP64:
3369 case R_SPARC_WDISP30:
3370 case R_SPARC_WDISP22:
3371 case R_SPARC_WDISP19:
3372 case R_SPARC_WDISP16:
3373 case R_SPARC_WDISP10:
3401 if ((input_section->flags & SEC_ALLOC) == 0
3405 /* Copy dynamic function pointer relocations. Don't generate
3406 dynamic relocations against resolved undefined weak symbols
3408 if ((bfd_link_pic (info)
3410 || ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
3411 && !resolved_to_zero)
3412 || h->root.type != bfd_link_hash_undefweak))
3413 && (! howto->pc_relative
3414 || !SYMBOL_CALLS_LOCAL (info, h)))
3415 || (!bfd_link_pic (info)
3421 || (h->root.type == bfd_link_hash_undefweak
3422 && !resolved_to_zero)
3423 || h->root.type == bfd_link_hash_undefined)))
3425 Elf_Internal_Rela outrel;
3426 bfd_boolean skip, relocate = FALSE;
3428 /* When generating a shared object, these relocations
3429 are copied into the output file to be resolved at run
3432 BFD_ASSERT (sreloc != NULL);
3437 _bfd_elf_section_offset (output_bfd, info, input_section,
3439 if (outrel.r_offset == (bfd_vma) -1)
3441 else if (outrel.r_offset == (bfd_vma) -2)
3442 skip = TRUE, relocate = TRUE;
3443 outrel.r_offset += (input_section->output_section->vma
3444 + input_section->output_offset);
3446 /* Optimize unaligned reloc usage now that we know where
3447 it finally resides. */
3451 if (outrel.r_offset & 1)
3452 r_type = R_SPARC_UA16;
3455 if (!(outrel.r_offset & 1))
3456 r_type = R_SPARC_16;
3459 if (outrel.r_offset & 3)
3460 r_type = R_SPARC_UA32;
3463 if (!(outrel.r_offset & 3))
3464 r_type = R_SPARC_32;
3467 if (outrel.r_offset & 7)
3468 r_type = R_SPARC_UA64;
3471 if (!(outrel.r_offset & 7))
3472 r_type = R_SPARC_64;
3475 case R_SPARC_DISP16:
3476 case R_SPARC_DISP32:
3477 case R_SPARC_DISP64:
3478 /* If the symbol is not dynamic, we should not keep
3479 a dynamic relocation. But an .rela.* slot has been
3480 allocated for it, output R_SPARC_NONE.
3481 FIXME: Add code tracking needed dynamic relocs as
3483 if (h->dynindx == -1)
3484 skip = TRUE, relocate = TRUE;
3489 memset (&outrel, 0, sizeof outrel);
3490 /* h->dynindx may be -1 if the symbol was marked to
3494 && (_bfd_sparc_elf_howto_table[r_type].pc_relative
3495 || !bfd_link_pic (info)
3496 || !SYMBOLIC_BIND (info, h)
3497 || !h->def_regular))
3499 BFD_ASSERT (h->dynindx != -1);
3500 outrel.r_info = SPARC_ELF_R_INFO (htab, rel, h->dynindx, r_type);
3501 outrel.r_addend = rel->r_addend;
3505 if ( (!ABI_64_P (output_bfd) && r_type == R_SPARC_32)
3506 || (ABI_64_P (output_bfd) && r_type == R_SPARC_64))
3508 outrel.r_info = SPARC_ELF_R_INFO (htab, NULL,
3509 0, R_SPARC_RELATIVE);
3510 outrel.r_addend = relocation + rel->r_addend;
3516 outrel.r_addend = relocation + rel->r_addend;
3519 sec = htab->elf.splt;
3521 if (bfd_is_abs_section (sec))
3523 else if (sec == NULL || sec->owner == NULL)
3525 bfd_set_error (bfd_error_bad_value);
3532 /* We are turning this relocation into one
3533 against a section symbol. It would be
3534 proper to subtract the symbol's value,
3535 osec->vma, from the emitted reloc addend,
3536 but ld.so expects buggy relocs. */
3537 osec = sec->output_section;
3538 indx = elf_section_data (osec)->dynindx;
3542 osec = htab->elf.text_index_section;
3543 indx = elf_section_data (osec)->dynindx;
3546 /* FIXME: we really should be able to link non-pic
3547 shared libraries. */
3552 (_("%B: probably compiled without -fPIC?"),
3554 bfd_set_error (bfd_error_bad_value);
3559 outrel.r_info = SPARC_ELF_R_INFO (htab, rel, indx,
3564 sparc_elf_append_rela (output_bfd, sreloc, &outrel);
3566 /* This reloc will be computed at runtime, so there's no
3567 need to do anything now. */
3573 case R_SPARC_TLS_GD_HI22:
3574 if (! ABI_64_P (input_bfd)
3575 && ! _bfd_sparc_elf_tdata (input_bfd)->has_tlsgd)
3577 /* R_SPARC_REV32 used the same reloc number as
3578 R_SPARC_TLS_GD_HI22. */
3579 r_type = R_SPARC_REV32;
3584 case R_SPARC_TLS_GD_LO10:
3585 case R_SPARC_TLS_IE_HI22:
3586 case R_SPARC_TLS_IE_LO10:
3587 r_type = sparc_elf_tls_transition (info, input_bfd, r_type, h == NULL);
3588 tls_type = GOT_UNKNOWN;
3589 if (h == NULL && local_got_offsets)
3590 tls_type = _bfd_sparc_elf_local_got_tls_type (input_bfd) [r_symndx];
3593 tls_type = _bfd_sparc_elf_hash_entry(h)->tls_type;
3594 if (bfd_link_executable (info)
3596 && tls_type == GOT_TLS_IE)
3597 switch (SPARC_ELF_R_TYPE (rel->r_info))
3599 case R_SPARC_TLS_GD_HI22:
3600 case R_SPARC_TLS_IE_HI22:
3601 r_type = R_SPARC_TLS_LE_HIX22;
3604 r_type = R_SPARC_TLS_LE_LOX10;
3608 if (tls_type == GOT_TLS_IE)
3611 case R_SPARC_TLS_GD_HI22:
3612 r_type = R_SPARC_TLS_IE_HI22;
3614 case R_SPARC_TLS_GD_LO10:
3615 r_type = R_SPARC_TLS_IE_LO10;
3619 if (r_type == R_SPARC_TLS_LE_HIX22)
3621 relocation = tpoff (info, relocation);
3624 if (r_type == R_SPARC_TLS_LE_LOX10)
3626 /* Change add into xor. */
3627 relocation = tpoff (info, relocation);
3628 bfd_put_32 (output_bfd, (bfd_get_32 (input_bfd,
3629 contents + rel->r_offset)
3630 | 0x80182000), contents + rel->r_offset);
3636 off = h->got.offset;
3641 BFD_ASSERT (local_got_offsets != NULL);
3642 off = local_got_offsets[r_symndx];
3643 local_got_offsets[r_symndx] |= 1;
3647 if (htab->elf.sgot == NULL)
3654 Elf_Internal_Rela outrel;
3657 if (htab->elf.srelgot == NULL)
3660 SPARC_ELF_PUT_WORD (htab, output_bfd, 0,
3661 htab->elf.sgot->contents + off);
3662 outrel.r_offset = (htab->elf.sgot->output_section->vma
3663 + htab->elf.sgot->output_offset + off);
3664 indx = h && h->dynindx != -1 ? h->dynindx : 0;
3665 if (r_type == R_SPARC_TLS_IE_HI22
3666 || r_type == R_SPARC_TLS_IE_LO10)
3667 dr_type = SPARC_ELF_TPOFF_RELOC (htab);
3669 dr_type = SPARC_ELF_DTPMOD_RELOC (htab);
3670 if (dr_type == SPARC_ELF_TPOFF_RELOC (htab) && indx == 0)
3671 outrel.r_addend = relocation - dtpoff_base (info);
3673 outrel.r_addend = 0;
3674 outrel.r_info = SPARC_ELF_R_INFO (htab, NULL, indx, dr_type);
3675 sparc_elf_append_rela (output_bfd, htab->elf.srelgot, &outrel);
3677 if (r_type == R_SPARC_TLS_GD_HI22
3678 || r_type == R_SPARC_TLS_GD_LO10)
3682 BFD_ASSERT (! unresolved_reloc);
3683 SPARC_ELF_PUT_WORD (htab, output_bfd,
3684 relocation - dtpoff_base (info),
3685 (htab->elf.sgot->contents + off
3686 + SPARC_ELF_WORD_BYTES (htab)));
3690 SPARC_ELF_PUT_WORD (htab, output_bfd, 0,
3691 (htab->elf.sgot->contents + off
3692 + SPARC_ELF_WORD_BYTES (htab)));
3693 outrel.r_info = SPARC_ELF_R_INFO (htab, NULL, indx,
3694 SPARC_ELF_DTPOFF_RELOC (htab));
3695 outrel.r_offset += SPARC_ELF_WORD_BYTES (htab);
3696 sparc_elf_append_rela (output_bfd, htab->elf.srelgot,
3700 else if (dr_type == SPARC_ELF_DTPMOD_RELOC (htab))
3702 SPARC_ELF_PUT_WORD (htab, output_bfd, 0,
3703 (htab->elf.sgot->contents + off
3704 + SPARC_ELF_WORD_BYTES (htab)));
3708 if (off >= (bfd_vma) -2)
3711 relocation = htab->elf.sgot->output_offset + off - got_base;
3712 unresolved_reloc = FALSE;
3713 howto = _bfd_sparc_elf_howto_table + r_type;
3716 case R_SPARC_TLS_LDM_HI22:
3717 case R_SPARC_TLS_LDM_LO10:
3718 if (! bfd_link_pic (info))
3720 bfd_put_32 (output_bfd, SPARC_NOP, contents + rel->r_offset);
3723 off = htab->tls_ldm_got.offset;
3724 htab->tls_ldm_got.offset |= 1;
3725 goto r_sparc_tlsldm;
3727 case R_SPARC_TLS_LDO_HIX22:
3728 case R_SPARC_TLS_LDO_LOX10:
3729 if (bfd_link_pic (info))
3731 relocation -= dtpoff_base (info);
3735 r_type = (r_type == R_SPARC_TLS_LDO_HIX22
3736 ? R_SPARC_TLS_LE_HIX22 : R_SPARC_TLS_LE_LOX10);
3739 case R_SPARC_TLS_LE_HIX22:
3740 case R_SPARC_TLS_LE_LOX10:
3741 if (!bfd_link_executable (info))
3743 Elf_Internal_Rela outrel;
3746 BFD_ASSERT (sreloc != NULL);
3749 _bfd_elf_section_offset (output_bfd, info, input_section,
3751 if (outrel.r_offset == (bfd_vma) -1)
3753 else if (outrel.r_offset == (bfd_vma) -2)
3755 outrel.r_offset += (input_section->output_section->vma
3756 + input_section->output_offset);
3758 memset (&outrel, 0, sizeof outrel);
3761 outrel.r_info = SPARC_ELF_R_INFO (htab, NULL, 0, r_type);
3762 outrel.r_addend = relocation - dtpoff_base (info)
3766 sparc_elf_append_rela (output_bfd, sreloc, &outrel);
3769 relocation = tpoff (info, relocation);
3772 case R_SPARC_TLS_LDM_CALL:
3773 if (bfd_link_executable (info))
3776 bfd_put_32 (output_bfd, 0x90100000, contents + rel->r_offset);
3781 case R_SPARC_TLS_GD_CALL:
3782 tls_type = GOT_UNKNOWN;
3783 if (h == NULL && local_got_offsets)
3784 tls_type = _bfd_sparc_elf_local_got_tls_type (input_bfd) [r_symndx];
3786 tls_type = _bfd_sparc_elf_hash_entry(h)->tls_type;
3787 if (bfd_link_executable (info)
3788 || (r_type == R_SPARC_TLS_GD_CALL && tls_type == GOT_TLS_IE))
3790 Elf_Internal_Rela *rel2;
3793 if (!bfd_link_pic (info) && (h == NULL || h->dynindx == -1))
3796 bfd_put_32 (output_bfd, SPARC_NOP, contents + rel->r_offset);
3801 if (rel + 1 < relend
3802 && SPARC_ELF_R_TYPE (rel[1].r_info) == R_SPARC_TLS_GD_ADD
3803 && rel[1].r_offset == rel->r_offset + 4
3804 && SPARC_ELF_R_SYMNDX (htab, rel[1].r_info) == r_symndx
3805 && (((insn = bfd_get_32 (input_bfd,
3806 contents + rel[1].r_offset))
3807 >> 25) & 0x1f) == 8)
3810 call __tls_get_addr, %tgd_call(foo)
3811 add %reg1, %reg2, %o0, %tgd_add(foo)
3812 and change it into IE:
3813 {ld,ldx} [%reg1 + %reg2], %o0, %tie_ldx(foo)
3814 add %g7, %o0, %o0, %tie_add(foo).
3815 add is 0x80000000 | (rd << 25) | (rs1 << 14) | rs2,
3816 ld is 0xc0000000 | (rd << 25) | (rs1 << 14) | rs2,
3817 ldx is 0xc0580000 | (rd << 25) | (rs1 << 14) | rs2. */
3818 bfd_put_32 (output_bfd, insn | (ABI_64_P (output_bfd) ? 0xc0580000 : 0xc0000000),
3819 contents + rel->r_offset);
3820 bfd_put_32 (output_bfd, 0x9001c008,
3821 contents + rel->r_offset + 4);
3826 /* We cannot just overwrite the delay slot instruction,
3827 as it might be what puts the %o0 argument to
3828 __tls_get_addr into place. So we have to transpose
3829 the delay slot with the add we patch in. */
3830 insn = bfd_get_32 (input_bfd, contents + rel->r_offset + 4);
3831 bfd_put_32 (output_bfd, insn,
3832 contents + rel->r_offset);
3833 bfd_put_32 (output_bfd, 0x9001c008,
3834 contents + rel->r_offset + 4);
3837 while ((rel2 = sparc_elf_find_reloc_at_ofs (rel2 + 1, relend,
3841 /* If the instruction we moved has a relocation attached to
3842 it, adjust the offset so that it will apply to the correct
3844 rel2->r_offset -= 4;
3849 h = (struct elf_link_hash_entry *)
3850 bfd_link_hash_lookup (info->hash, "__tls_get_addr", FALSE,
3852 BFD_ASSERT (h != NULL);
3853 r_type = R_SPARC_WPLT30;
3854 howto = _bfd_sparc_elf_howto_table + r_type;
3855 goto r_sparc_wplt30;
3857 case R_SPARC_TLS_GD_ADD:
3858 tls_type = GOT_UNKNOWN;
3859 if (h == NULL && local_got_offsets)
3860 tls_type = _bfd_sparc_elf_local_got_tls_type (input_bfd) [r_symndx];
3862 tls_type = _bfd_sparc_elf_hash_entry(h)->tls_type;
3863 if (! bfd_link_pic (info) || tls_type == GOT_TLS_IE)
3865 /* add %reg1, %reg2, %reg3, %tgd_add(foo)
3867 {ld,ldx} [%reg1 + %reg2], %reg3, %tie_ldx(foo)
3869 add %g7, %reg2, %reg3. */
3870 bfd_vma insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
3871 if ((h != NULL && h->dynindx != -1) || bfd_link_pic (info))
3872 relocation = insn | (ABI_64_P (output_bfd) ? 0xc0580000 : 0xc0000000);
3874 relocation = (insn & ~0x7c000) | 0x1c000;
3875 bfd_put_32 (output_bfd, relocation, contents + rel->r_offset);
3879 case R_SPARC_TLS_LDM_ADD:
3880 if (! bfd_link_pic (info))
3881 bfd_put_32 (output_bfd, SPARC_NOP, contents + rel->r_offset);
3884 case R_SPARC_TLS_LDO_ADD:
3885 if (! bfd_link_pic (info))
3887 /* Change rs1 into %g7. */
3888 bfd_vma insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
3889 insn = (insn & ~0x7c000) | 0x1c000;
3890 bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
3894 case R_SPARC_TLS_IE_LD:
3895 case R_SPARC_TLS_IE_LDX:
3896 if (bfd_link_executable (info) && (h == NULL || h->dynindx == -1))
3898 bfd_vma insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
3899 int rs2 = insn & 0x1f;
3900 int rd = (insn >> 25) & 0x1f;
3903 relocation = SPARC_NOP;
3905 relocation = 0x80100000 | (insn & 0x3e00001f);
3906 bfd_put_32 (output_bfd, relocation, contents + rel->r_offset);
3910 case R_SPARC_TLS_IE_ADD:
3911 /* Totally useless relocation. */
3914 case R_SPARC_TLS_DTPOFF32:
3915 case R_SPARC_TLS_DTPOFF64:
3916 relocation -= dtpoff_base (info);
3923 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
3924 because such sections are not SEC_ALLOC and thus ld.so will
3925 not process them. */
3926 if (unresolved_reloc
3927 && !((input_section->flags & SEC_DEBUGGING) != 0
3929 && _bfd_elf_section_offset (output_bfd, info, input_section,
3930 rel->r_offset) != (bfd_vma) -1)
3932 /* xgettext:c-format */
3933 (_("%B(%A+%#Lx): unresolvable %s relocation against symbol `%s'"),
3938 h->root.root.string);
3940 r = bfd_reloc_continue;
3941 if (r_type == R_SPARC_OLO10)
3945 if (! ABI_64_P (output_bfd))
3948 relocation += rel->r_addend;
3949 relocation = (relocation & 0x3ff) + ELF64_R_TYPE_DATA (rel->r_info);
3951 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
3952 x = (x & ~(bfd_vma) 0x1fff) | (relocation & 0x1fff);
3953 bfd_put_32 (input_bfd, x, contents + rel->r_offset);
3955 r = bfd_check_overflow (howto->complain_on_overflow,
3956 howto->bitsize, howto->rightshift,
3957 bfd_arch_bits_per_address (input_bfd),
3960 else if (r_type == R_SPARC_WDISP16)
3964 relocation += rel->r_addend;
3965 relocation -= (input_section->output_section->vma
3966 + input_section->output_offset);
3967 relocation -= rel->r_offset;
3969 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
3970 x |= ((((relocation >> 2) & 0xc000) << 6)
3971 | ((relocation >> 2) & 0x3fff));
3972 bfd_put_32 (input_bfd, x, contents + rel->r_offset);
3974 r = bfd_check_overflow (howto->complain_on_overflow,
3975 howto->bitsize, howto->rightshift,
3976 bfd_arch_bits_per_address (input_bfd),
3979 else if (r_type == R_SPARC_WDISP10)
3983 relocation += rel->r_addend;
3984 relocation -= (input_section->output_section->vma
3985 + input_section->output_offset);
3986 relocation -= rel->r_offset;
3988 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
3989 x |= ((((relocation >> 2) & 0x300) << 11)
3990 | (((relocation >> 2) & 0xff) << 5));
3991 bfd_put_32 (input_bfd, x, contents + rel->r_offset);
3993 r = bfd_check_overflow (howto->complain_on_overflow,
3994 howto->bitsize, howto->rightshift,
3995 bfd_arch_bits_per_address (input_bfd),
3998 else if (r_type == R_SPARC_REV32)
4002 relocation = relocation + rel->r_addend;
4004 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
4006 bfd_putl32 (/*input_bfd,*/ x, contents + rel->r_offset);
4009 else if (r_type == R_SPARC_TLS_LDO_HIX22
4010 || r_type == R_SPARC_TLS_LE_HIX22)
4014 relocation += rel->r_addend;
4015 if (r_type == R_SPARC_TLS_LE_HIX22)
4016 relocation ^= MINUS_ONE;
4018 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
4019 x = (x & ~(bfd_vma) 0x3fffff) | ((relocation >> 10) & 0x3fffff);
4020 bfd_put_32 (input_bfd, x, contents + rel->r_offset);
4023 else if (r_type == R_SPARC_TLS_LDO_LOX10
4024 || r_type == R_SPARC_TLS_LE_LOX10)
4028 relocation += rel->r_addend;
4029 relocation &= 0x3ff;
4030 if (r_type == R_SPARC_TLS_LE_LOX10)
4031 relocation |= 0x1c00;
4033 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
4034 x = (x & ~(bfd_vma) 0x1fff) | relocation;
4035 bfd_put_32 (input_bfd, x, contents + rel->r_offset);
4039 else if (r_type == R_SPARC_HIX22
4040 || r_type == R_SPARC_GOTDATA_HIX22
4041 || r_type == R_SPARC_GOTDATA_OP_HIX22)
4045 relocation += rel->r_addend;
4046 if (r_type == R_SPARC_HIX22
4047 || (bfd_signed_vma) relocation < 0)
4048 relocation = relocation ^ MINUS_ONE;
4050 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
4051 x = (x & ~(bfd_vma) 0x3fffff) | ((relocation >> 10) & 0x3fffff);
4052 bfd_put_32 (input_bfd, x, contents + rel->r_offset);
4054 r = bfd_check_overflow (howto->complain_on_overflow,
4055 howto->bitsize, howto->rightshift,
4056 bfd_arch_bits_per_address (input_bfd),
4059 else if (r_type == R_SPARC_LOX10
4060 || r_type == R_SPARC_GOTDATA_LOX10
4061 || r_type == R_SPARC_GOTDATA_OP_LOX10)
4065 relocation += rel->r_addend;
4066 if (r_type == R_SPARC_LOX10
4067 || (bfd_signed_vma) relocation < 0)
4068 relocation = (relocation & 0x3ff) | 0x1c00;
4070 relocation = (relocation & 0x3ff);
4072 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
4073 x = (x & ~(bfd_vma) 0x1fff) | relocation;
4074 bfd_put_32 (input_bfd, x, contents + rel->r_offset);
4078 else if ((r_type == R_SPARC_WDISP30 || r_type == R_SPARC_WPLT30)
4079 && sec_do_relax (input_section)
4080 && rel->r_offset + 4 < input_section->size)
4084 #define XCC (2 << 20)
4085 #define COND(x) (((x)&0xf)<<25)
4086 #define CONDA COND(0x8)
4087 #define INSN_BPA (F2(0,1) | CONDA | BPRED | XCC)
4088 #define INSN_BA (F2(0,2) | CONDA)
4089 #define INSN_OR F3(2, 0x2, 0)
4090 #define INSN_NOP F2(0,4)
4094 /* If the instruction is a call with either:
4096 arithmetic instruction with rd == %o7
4097 where rs1 != %o7 and rs2 if it is register != %o7
4098 then we can optimize if the call destination is near
4099 by changing the call into a branch always. */
4100 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
4101 y = bfd_get_32 (input_bfd, contents + rel->r_offset + 4);
4102 if ((x & OP(~0)) == OP(1) && (y & OP(~0)) == OP(2))
4104 if (((y & OP3(~0)) == OP3(0x3d) /* restore */
4105 || ((y & OP3(0x28)) == 0 /* arithmetic */
4106 && (y & RD(~0)) == RD(O7)))
4107 && (y & RS1(~0)) != RS1(O7)
4109 || (y & RS2(~0)) != RS2(O7)))
4113 reloc = relocation + rel->r_addend - rel->r_offset;
4114 reloc -= (input_section->output_section->vma
4115 + input_section->output_offset);
4117 /* Ensure the branch fits into simm22. */
4118 if ((reloc & 3) == 0
4119 && ((reloc & ~(bfd_vma)0x7fffff) == 0
4120 || ((reloc | 0x7fffff) == ~(bfd_vma)0)))
4124 /* Check whether it fits into simm19. */
4125 if (((reloc & 0x3c0000) == 0
4126 || (reloc & 0x3c0000) == 0x3c0000)
4127 && (ABI_64_P (output_bfd)
4128 || elf_elfheader (output_bfd)->e_flags & EF_SPARC_32PLUS))
4129 x = INSN_BPA | (reloc & 0x7ffff); /* ba,pt %xcc */
4131 x = INSN_BA | (reloc & 0x3fffff); /* ba */
4132 bfd_put_32 (input_bfd, x, contents + rel->r_offset);
4134 if (rel->r_offset >= 4
4135 && (y & (0xffffffff ^ RS1(~0)))
4136 == (INSN_OR | RD(O7) | RS2(G0)))
4141 z = bfd_get_32 (input_bfd,
4142 contents + rel->r_offset - 4);
4143 if ((z & (0xffffffff ^ RD(~0)))
4144 != (INSN_OR | RS1(O7) | RS2(G0)))
4152 If call foo was replaced with ba, replace
4153 or %rN, %g0, %o7 with nop. */
4155 reg = (y & RS1(~0)) >> 14;
4156 if (reg != ((z & RD(~0)) >> 25)
4157 || reg == G0 || reg == O7)
4160 bfd_put_32 (input_bfd, (bfd_vma) INSN_NOP,
4161 contents + rel->r_offset + 4);
4169 if (r == bfd_reloc_continue)
4172 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
4173 contents, rel->r_offset,
4174 relocation, rel->r_addend);
4176 if (r != bfd_reloc_ok)
4181 case bfd_reloc_outofrange:
4183 case bfd_reloc_overflow:
4187 /* The Solaris native linker silently disregards overflows.
4188 We don't, but this breaks stabs debugging info, whose
4189 relocations are only 32-bits wide. Ignore overflows in
4190 this case and also for discarded entries. */
4191 if ((r_type == R_SPARC_32
4192 || r_type == R_SPARC_UA32
4193 || r_type == R_SPARC_DISP32)
4194 && (((input_section->flags & SEC_DEBUGGING) != 0
4195 && strcmp (bfd_section_name (input_bfd,
4198 || _bfd_elf_section_offset (output_bfd, info,
4206 /* Assume this is a call protected by other code that
4207 detect the symbol is undefined. If this is the case,
4208 we can safely ignore the overflow. If not, the
4209 program is hosed anyway, and a little warning isn't
4211 if (h->root.type == bfd_link_hash_undefweak
4212 && howto->pc_relative)
4219 name = bfd_elf_string_from_elf_section (input_bfd,
4220 symtab_hdr->sh_link,
4225 name = bfd_section_name (input_bfd, sec);
4227 (*info->callbacks->reloc_overflow)
4228 (info, (h ? &h->root : NULL), name, howto->name,
4229 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
4239 /* Build a VxWorks PLT entry. PLT_INDEX is the index of the PLT entry
4240 and PLT_OFFSET is the byte offset from the start of .plt. GOT_OFFSET
4241 is the offset of the associated .got.plt entry from
4242 _GLOBAL_OFFSET_TABLE_. */
4245 sparc_vxworks_build_plt_entry (bfd *output_bfd, struct bfd_link_info *info,
4246 bfd_vma plt_offset, bfd_vma plt_index,
4250 const bfd_vma *plt_entry;
4251 struct _bfd_sparc_elf_link_hash_table *htab;
4253 Elf_Internal_Rela rela;
4255 htab = _bfd_sparc_elf_hash_table (info);
4256 BFD_ASSERT (htab != NULL);
4258 if (bfd_link_pic (info))
4260 plt_entry = sparc_vxworks_shared_plt_entry;
4265 plt_entry = sparc_vxworks_exec_plt_entry;
4266 got_base = (htab->elf.hgot->root.u.def.value
4267 + htab->elf.hgot->root.u.def.section->output_offset
4268 + htab->elf.hgot->root.u.def.section->output_section->vma);
4271 /* Fill in the entry in the procedure linkage table. */
4272 bfd_put_32 (output_bfd, plt_entry[0] + ((got_base + got_offset) >> 10),
4273 htab->elf.splt->contents + plt_offset);
4274 bfd_put_32 (output_bfd, plt_entry[1] + ((got_base + got_offset) & 0x3ff),
4275 htab->elf.splt->contents + plt_offset + 4);
4276 bfd_put_32 (output_bfd, plt_entry[2],
4277 htab->elf.splt->contents + plt_offset + 8);
4278 bfd_put_32 (output_bfd, plt_entry[3],
4279 htab->elf.splt->contents + plt_offset + 12);
4280 bfd_put_32 (output_bfd, plt_entry[4],
4281 htab->elf.splt->contents + plt_offset + 16);
4282 bfd_put_32 (output_bfd, plt_entry[5] + (plt_index >> 10),
4283 htab->elf.splt->contents + plt_offset + 20);
4284 /* PC-relative displacement for a branch to the start of
4286 bfd_put_32 (output_bfd, plt_entry[6] + (((-plt_offset - 24) >> 2)
4288 htab->elf.splt->contents + plt_offset + 24);
4289 bfd_put_32 (output_bfd, plt_entry[7] + (plt_index & 0x3ff),
4290 htab->elf.splt->contents + plt_offset + 28);
4292 /* Fill in the .got.plt entry, pointing initially at the
4293 second half of the PLT entry. */
4294 BFD_ASSERT (htab->elf.sgotplt != NULL);
4295 bfd_put_32 (output_bfd,
4296 htab->elf.splt->output_section->vma
4297 + htab->elf.splt->output_offset
4299 htab->elf.sgotplt->contents + got_offset);
4301 /* Add relocations to .rela.plt.unloaded. */
4302 if (!bfd_link_pic (info))
4304 loc = (htab->srelplt2->contents
4305 + (2 + 3 * plt_index) * sizeof (Elf32_External_Rela));
4307 /* Relocate the initial sethi. */
4308 rela.r_offset = (htab->elf.splt->output_section->vma
4309 + htab->elf.splt->output_offset
4311 rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_SPARC_HI22);
4312 rela.r_addend = got_offset;
4313 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
4314 loc += sizeof (Elf32_External_Rela);
4316 /* Likewise the following or. */
4318 rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_SPARC_LO10);
4319 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
4320 loc += sizeof (Elf32_External_Rela);
4322 /* Relocate the .got.plt entry. */
4323 rela.r_offset = (htab->elf.sgotplt->output_section->vma
4324 + htab->elf.sgotplt->output_offset
4326 rela.r_info = ELF32_R_INFO (htab->elf.hplt->indx, R_SPARC_32);
4327 rela.r_addend = plt_offset + 20;
4328 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
4332 /* Finish up dynamic symbol handling. We set the contents of various
4333 dynamic sections here. */
4336 _bfd_sparc_elf_finish_dynamic_symbol (bfd *output_bfd,
4337 struct bfd_link_info *info,
4338 struct elf_link_hash_entry *h,
4339 Elf_Internal_Sym *sym)
4341 struct _bfd_sparc_elf_link_hash_table *htab;
4342 const struct elf_backend_data *bed;
4343 struct _bfd_sparc_elf_link_hash_entry *eh;
4344 bfd_boolean local_undefweak;
4346 htab = _bfd_sparc_elf_hash_table (info);
4347 BFD_ASSERT (htab != NULL);
4348 bed = get_elf_backend_data (output_bfd);
4350 eh = (struct _bfd_sparc_elf_link_hash_entry *) h;
4352 /* We keep PLT/GOT entries without dynamic PLT/GOT relocations for
4353 resolved undefined weak symbols in executable so that their
4354 references have value 0 at run-time. */
4355 local_undefweak = UNDEFINED_WEAK_RESOLVED_TO_ZERO (info, eh);
4357 if (h->plt.offset != (bfd_vma) -1)
4361 Elf_Internal_Rela rela;
4363 bfd_vma r_offset, got_offset;
4366 /* When building a static executable, use .iplt and
4367 .rela.iplt sections for STT_GNU_IFUNC symbols. */
4368 if (htab->elf.splt != NULL)
4370 splt = htab->elf.splt;
4371 srela = htab->elf.srelplt;
4375 splt = htab->elf.iplt;
4376 srela = htab->elf.irelplt;
4379 if (splt == NULL || srela == NULL)
4382 /* Fill in the entry in the .rela.plt section. */
4383 if (htab->is_vxworks)
4385 /* Work out the index of this PLT entry. */
4386 rela_index = ((h->plt.offset - htab->plt_header_size)
4387 / htab->plt_entry_size);
4389 /* Calculate the offset of the associated .got.plt entry.
4390 The first three entries are reserved. */
4391 got_offset = (rela_index + 3) * 4;
4393 sparc_vxworks_build_plt_entry (output_bfd, info, h->plt.offset,
4394 rela_index, got_offset);
4397 /* On VxWorks, the relocation points to the .got.plt entry,
4398 not the .plt entry. */
4399 rela.r_offset = (htab->elf.sgotplt->output_section->vma
4400 + htab->elf.sgotplt->output_offset
4403 rela.r_info = SPARC_ELF_R_INFO (htab, NULL, h->dynindx,
4408 bfd_boolean ifunc = FALSE;
4410 /* Fill in the entry in the procedure linkage table. */
4411 rela_index = SPARC_ELF_BUILD_PLT_ENTRY (htab, output_bfd, splt,
4412 h->plt.offset, splt->size,
4417 || ((bfd_link_executable (info)
4418 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
4420 && h->type == STT_GNU_IFUNC))
4423 BFD_ASSERT (h == NULL
4424 || (h->type == STT_GNU_IFUNC
4426 && (h->root.type == bfd_link_hash_defined
4427 || h->root.type == bfd_link_hash_defweak)));
4430 rela.r_offset = r_offset
4431 + (splt->output_section->vma + splt->output_offset);
4432 if (ABI_64_P (output_bfd)
4433 && h->plt.offset >= (PLT64_LARGE_THRESHOLD * PLT64_ENTRY_SIZE))
4437 rela.r_addend = (h->root.u.def.section->output_section->vma
4438 + h->root.u.def.section->output_offset
4439 + h->root.u.def.value);
4440 rela.r_info = SPARC_ELF_R_INFO (htab, NULL, 0,
4445 rela.r_addend = (-(h->plt.offset + 4)
4446 - splt->output_section->vma
4447 - splt->output_offset);
4448 rela.r_info = SPARC_ELF_R_INFO (htab, NULL, h->dynindx,
4456 rela.r_addend = (h->root.u.def.section->output_section->vma
4457 + h->root.u.def.section->output_offset
4458 + h->root.u.def.value);
4459 rela.r_info = SPARC_ELF_R_INFO (htab, NULL, 0,
4465 rela.r_info = SPARC_ELF_R_INFO (htab, NULL, h->dynindx,
4471 /* Adjust for the first 4 reserved elements in the .plt section
4472 when setting the offset in the .rela.plt section.
4473 Sun forgot to read their own ABI and copied elf32-sparc behaviour,
4474 thus .plt[4] has corresponding .rela.plt[0] and so on. */
4476 loc = srela->contents;
4477 loc += rela_index * bed->s->sizeof_rela;
4478 bed->s->swap_reloca_out (output_bfd, &rela, loc);
4480 if (!local_undefweak
4483 /* Mark the symbol as undefined, rather than as defined in
4484 the .plt section. Leave the value alone. */
4485 sym->st_shndx = SHN_UNDEF;
4486 /* If the symbol is weak, we do need to clear the value.
4487 Otherwise, the PLT entry would provide a definition for
4488 the symbol even if the symbol wasn't defined anywhere,
4489 and so the symbol would never be NULL. */
4490 if (!h->ref_regular_nonweak)
4495 /* Don't generate dynamic GOT relocation against undefined weak
4496 symbol in executable. */
4497 if (h->got.offset != (bfd_vma) -1
4498 && _bfd_sparc_elf_hash_entry(h)->tls_type != GOT_TLS_GD
4499 && _bfd_sparc_elf_hash_entry(h)->tls_type != GOT_TLS_IE
4500 && !local_undefweak)
4504 Elf_Internal_Rela rela;
4506 /* This symbol has an entry in the GOT. Set it up. */
4508 sgot = htab->elf.sgot;
4509 srela = htab->elf.srelgot;
4510 BFD_ASSERT (sgot != NULL && srela != NULL);
4512 rela.r_offset = (sgot->output_section->vma
4513 + sgot->output_offset
4514 + (h->got.offset &~ (bfd_vma) 1));
4516 /* If this is a -Bsymbolic link, and the symbol is defined
4517 locally, we just want to emit a RELATIVE reloc. Likewise if
4518 the symbol was forced to be local because of a version file.
4519 The entry in the global offset table will already have been
4520 initialized in the relocate_section function. */
4521 if (! bfd_link_pic (info)
4522 && h->type == STT_GNU_IFUNC
4527 /* We load the GOT entry with the PLT entry. */
4528 plt = htab->elf.splt ? htab->elf.splt : htab->elf.iplt;
4529 SPARC_ELF_PUT_WORD (htab, output_bfd,
4530 (plt->output_section->vma
4531 + plt->output_offset + h->plt.offset),
4532 htab->elf.sgot->contents
4533 + (h->got.offset & ~(bfd_vma) 1));
4536 else if (bfd_link_pic (info)
4537 && SYMBOL_REFERENCES_LOCAL (info, h))
4539 asection *sec = h->root.u.def.section;
4540 if (h->type == STT_GNU_IFUNC)
4541 rela.r_info = SPARC_ELF_R_INFO (htab, NULL, 0, R_SPARC_IRELATIVE);
4543 rela.r_info = SPARC_ELF_R_INFO (htab, NULL, 0, R_SPARC_RELATIVE);
4544 rela.r_addend = (h->root.u.def.value
4545 + sec->output_section->vma
4546 + sec->output_offset);
4550 rela.r_info = SPARC_ELF_R_INFO (htab, NULL, h->dynindx, R_SPARC_GLOB_DAT);
4554 SPARC_ELF_PUT_WORD (htab, output_bfd, 0,
4555 sgot->contents + (h->got.offset & ~(bfd_vma) 1));
4556 sparc_elf_append_rela (output_bfd, srela, &rela);
4562 Elf_Internal_Rela rela;
4564 /* This symbols needs a copy reloc. Set it up. */
4565 BFD_ASSERT (h->dynindx != -1);
4567 rela.r_offset = (h->root.u.def.value
4568 + h->root.u.def.section->output_section->vma
4569 + h->root.u.def.section->output_offset);
4570 rela.r_info = SPARC_ELF_R_INFO (htab, NULL, h->dynindx, R_SPARC_COPY);
4572 if (h->root.u.def.section == htab->elf.sdynrelro)
4573 s = htab->elf.sreldynrelro;
4575 s = htab->elf.srelbss;
4576 sparc_elf_append_rela (output_bfd, s, &rela);
4579 /* Mark some specially defined symbols as absolute. On VxWorks,
4580 _GLOBAL_OFFSET_TABLE_ is not absolute: it is relative to the
4581 ".got" section. Likewise _PROCEDURE_LINKAGE_TABLE_ and ".plt". */
4583 && (h == htab->elf.hdynamic
4584 || (!htab->is_vxworks
4585 && (h == htab->elf.hgot || h == htab->elf.hplt))))
4586 sym->st_shndx = SHN_ABS;
4591 /* Finish up the dynamic sections. */
4594 sparc_finish_dyn (bfd *output_bfd, struct bfd_link_info *info,
4595 bfd *dynobj, asection *sdyn,
4596 asection *splt ATTRIBUTE_UNUSED)
4598 struct _bfd_sparc_elf_link_hash_table *htab;
4599 const struct elf_backend_data *bed;
4600 bfd_byte *dyncon, *dynconend;
4602 int stt_regidx = -1;
4603 bfd_boolean abi_64_p;
4605 htab = _bfd_sparc_elf_hash_table (info);
4606 BFD_ASSERT (htab != NULL);
4607 bed = get_elf_backend_data (output_bfd);
4608 dynsize = bed->s->sizeof_dyn;
4609 dynconend = sdyn->contents + sdyn->size;
4610 abi_64_p = ABI_64_P (output_bfd);
4611 for (dyncon = sdyn->contents; dyncon < dynconend; dyncon += dynsize)
4613 Elf_Internal_Dyn dyn;
4616 bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
4618 if (htab->is_vxworks && dyn.d_tag == DT_PLTGOT)
4620 /* On VxWorks, DT_PLTGOT should point to the start of the GOT,
4621 not to the start of the PLT. */
4622 if (htab->elf.sgotplt)
4624 dyn.d_un.d_val = (htab->elf.sgotplt->output_section->vma
4625 + htab->elf.sgotplt->output_offset);
4626 bed->s->swap_dyn_out (output_bfd, &dyn, dyncon);
4629 else if (htab->is_vxworks
4630 && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
4631 bed->s->swap_dyn_out (output_bfd, &dyn, dyncon);
4632 else if (abi_64_p && dyn.d_tag == DT_SPARC_REGISTER)
4634 if (stt_regidx == -1)
4637 _bfd_elf_link_lookup_local_dynindx (info, output_bfd, -1);
4638 if (stt_regidx == -1)
4641 dyn.d_un.d_val = stt_regidx++;
4642 bed->s->swap_dyn_out (output_bfd, &dyn, dyncon);
4655 s = htab->elf.srelplt;
4659 s = htab->elf.srelplt;
4671 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
4673 dyn.d_un.d_val = s->size;
4675 bed->s->swap_dyn_out (output_bfd, &dyn, dyncon);
4681 /* Install the first PLT entry in a VxWorks executable and make sure that
4682 .rela.plt.unloaded relocations have the correct symbol indexes. */
4685 sparc_vxworks_finish_exec_plt (bfd *output_bfd, struct bfd_link_info *info)
4687 struct _bfd_sparc_elf_link_hash_table *htab;
4688 Elf_Internal_Rela rela;
4692 htab = _bfd_sparc_elf_hash_table (info);
4693 BFD_ASSERT (htab != NULL);
4695 /* Calculate the absolute value of _GLOBAL_OFFSET_TABLE_. */
4696 got_base = (htab->elf.hgot->root.u.def.section->output_section->vma
4697 + htab->elf.hgot->root.u.def.section->output_offset
4698 + htab->elf.hgot->root.u.def.value);
4700 /* Install the initial PLT entry. */
4701 bfd_put_32 (output_bfd,
4702 sparc_vxworks_exec_plt0_entry[0] + ((got_base + 8) >> 10),
4703 htab->elf.splt->contents);
4704 bfd_put_32 (output_bfd,
4705 sparc_vxworks_exec_plt0_entry[1] + ((got_base + 8) & 0x3ff),
4706 htab->elf.splt->contents + 4);
4707 bfd_put_32 (output_bfd,
4708 sparc_vxworks_exec_plt0_entry[2],
4709 htab->elf.splt->contents + 8);
4710 bfd_put_32 (output_bfd,
4711 sparc_vxworks_exec_plt0_entry[3],
4712 htab->elf.splt->contents + 12);
4713 bfd_put_32 (output_bfd,
4714 sparc_vxworks_exec_plt0_entry[4],
4715 htab->elf.splt->contents + 16);
4717 loc = htab->srelplt2->contents;
4719 /* Add an unloaded relocation for the initial entry's "sethi". */
4720 rela.r_offset = (htab->elf.splt->output_section->vma
4721 + htab->elf.splt->output_offset);
4722 rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_SPARC_HI22);
4724 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
4725 loc += sizeof (Elf32_External_Rela);
4727 /* Likewise the following "or". */
4729 rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_SPARC_LO10);
4730 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
4731 loc += sizeof (Elf32_External_Rela);
4733 /* Fix up the remaining .rela.plt.unloaded relocations. They may have
4734 the wrong symbol index for _G_O_T_ or _P_L_T_ depending on the order
4735 in which symbols were output. */
4736 while (loc < htab->srelplt2->contents + htab->srelplt2->size)
4738 Elf_Internal_Rela rel;
4740 /* The entry's initial "sethi" (against _G_O_T_). */
4741 bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
4742 rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_SPARC_HI22);
4743 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
4744 loc += sizeof (Elf32_External_Rela);
4746 /* The following "or" (also against _G_O_T_). */
4747 bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
4748 rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_SPARC_LO10);
4749 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
4750 loc += sizeof (Elf32_External_Rela);
4752 /* The .got.plt entry (against _P_L_T_). */
4753 bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
4754 rel.r_info = ELF32_R_INFO (htab->elf.hplt->indx, R_SPARC_32);
4755 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
4756 loc += sizeof (Elf32_External_Rela);
4760 /* Install the first PLT entry in a VxWorks shared object. */
4763 sparc_vxworks_finish_shared_plt (bfd *output_bfd, struct bfd_link_info *info)
4765 struct _bfd_sparc_elf_link_hash_table *htab;
4768 htab = _bfd_sparc_elf_hash_table (info);
4769 BFD_ASSERT (htab != NULL);
4771 for (i = 0; i < ARRAY_SIZE (sparc_vxworks_shared_plt0_entry); i++)
4772 bfd_put_32 (output_bfd, sparc_vxworks_shared_plt0_entry[i],
4773 htab->elf.splt->contents + i * 4);
4776 /* Finish up local dynamic symbol handling. We set the contents of
4777 various dynamic sections here. */
4780 finish_local_dynamic_symbol (void **slot, void *inf)
4782 struct elf_link_hash_entry *h
4783 = (struct elf_link_hash_entry *) *slot;
4784 struct bfd_link_info *info
4785 = (struct bfd_link_info *) inf;
4787 return _bfd_sparc_elf_finish_dynamic_symbol (info->output_bfd, info,
4791 /* Finish up undefined weak symbol handling in PIE. Fill its PLT entry
4792 here since undefined weak symbol may not be dynamic and may not be
4793 called for _bfd_sparc_elf_finish_dynamic_symbol. */
4796 pie_finish_undefweak_symbol (struct bfd_hash_entry *bh,
4799 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
4800 struct bfd_link_info *info = (struct bfd_link_info *) inf;
4802 if (h->root.type != bfd_link_hash_undefweak
4803 || h->dynindx != -1)
4806 return _bfd_sparc_elf_finish_dynamic_symbol (info->output_bfd, info,
4811 _bfd_sparc_elf_finish_dynamic_sections (bfd *output_bfd, struct bfd_link_info *info)
4815 struct _bfd_sparc_elf_link_hash_table *htab;
4817 htab = _bfd_sparc_elf_hash_table (info);
4818 BFD_ASSERT (htab != NULL);
4819 dynobj = htab->elf.dynobj;
4821 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
4823 if (elf_hash_table (info)->dynamic_sections_created)
4827 splt = htab->elf.splt;
4828 BFD_ASSERT (splt != NULL && sdyn != NULL);
4830 if (!sparc_finish_dyn (output_bfd, info, dynobj, sdyn, splt))
4833 /* Initialize the contents of the .plt section. */
4836 if (htab->is_vxworks)
4838 if (bfd_link_pic (info))
4839 sparc_vxworks_finish_shared_plt (output_bfd, info);
4841 sparc_vxworks_finish_exec_plt (output_bfd, info);
4845 memset (splt->contents, 0, htab->plt_header_size);
4846 if (!ABI_64_P (output_bfd))
4847 bfd_put_32 (output_bfd, (bfd_vma) SPARC_NOP,
4848 splt->contents + splt->size - 4);
4852 if (elf_section_data (splt->output_section) != NULL)
4853 elf_section_data (splt->output_section)->this_hdr.sh_entsize
4854 = ((htab->is_vxworks || !ABI_64_P (output_bfd))
4855 ? 0 : htab->plt_entry_size);
4858 /* Set the first entry in the global offset table to the address of
4859 the dynamic section. */
4860 if (htab->elf.sgot && htab->elf.sgot->size > 0)
4862 bfd_vma val = (sdyn ?
4863 sdyn->output_section->vma + sdyn->output_offset :
4866 SPARC_ELF_PUT_WORD (htab, output_bfd, val, htab->elf.sgot->contents);
4870 elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize =
4871 SPARC_ELF_WORD_BYTES (htab);
4873 /* Fill PLT and GOT entries for local STT_GNU_IFUNC symbols. */
4874 htab_traverse (htab->loc_hash_table, finish_local_dynamic_symbol, info);
4876 /* Fill PLT entries for undefined weak symbols in PIE. */
4877 if (bfd_link_pie (info))
4878 bfd_hash_traverse (&info->hash->table,
4879 pie_finish_undefweak_symbol,
4885 /* Set the right machine number for a SPARC ELF file. */
4888 _bfd_sparc_elf_object_p (bfd *abfd)
4890 obj_attribute *attrs = elf_known_obj_attributes (abfd)[OBJ_ATTR_GNU];
4891 obj_attribute *hwcaps = &attrs[Tag_GNU_Sparc_HWCAPS];
4892 obj_attribute *hwcaps2 = &attrs[Tag_GNU_Sparc_HWCAPS2];
4894 unsigned int v9c_hwcaps_mask = ELF_SPARC_HWCAP_ASI_BLK_INIT;
4895 unsigned int v9d_hwcaps_mask = (ELF_SPARC_HWCAP_FMAF
4896 | ELF_SPARC_HWCAP_VIS3
4897 | ELF_SPARC_HWCAP_HPC);
4898 unsigned int v9e_hwcaps_mask = (ELF_SPARC_HWCAP_AES
4899 | ELF_SPARC_HWCAP_DES
4900 | ELF_SPARC_HWCAP_KASUMI
4901 | ELF_SPARC_HWCAP_CAMELLIA
4902 | ELF_SPARC_HWCAP_MD5
4903 | ELF_SPARC_HWCAP_SHA1
4904 | ELF_SPARC_HWCAP_SHA256
4905 | ELF_SPARC_HWCAP_SHA512
4906 | ELF_SPARC_HWCAP_MPMUL
4907 | ELF_SPARC_HWCAP_MONT
4908 | ELF_SPARC_HWCAP_CRC32C
4909 | ELF_SPARC_HWCAP_CBCOND
4910 | ELF_SPARC_HWCAP_PAUSE);
4911 unsigned int v9v_hwcaps_mask = (ELF_SPARC_HWCAP_FJFMAU
4912 | ELF_SPARC_HWCAP_IMA);
4913 unsigned int v9m_hwcaps2_mask = (ELF_SPARC_HWCAP2_SPARC5
4914 | ELF_SPARC_HWCAP2_MWAIT
4915 | ELF_SPARC_HWCAP2_XMPMUL
4916 | ELF_SPARC_HWCAP2_XMONT);
4917 unsigned int m8_hwcaps2_mask = (ELF_SPARC_HWCAP2_SPARC6
4918 | ELF_SPARC_HWCAP2_ONADDSUB
4919 | ELF_SPARC_HWCAP2_ONMUL
4920 | ELF_SPARC_HWCAP2_ONDIV
4921 | ELF_SPARC_HWCAP2_DICTUNP
4922 | ELF_SPARC_HWCAP2_FPCMPSHL
4923 | ELF_SPARC_HWCAP2_RLE
4924 | ELF_SPARC_HWCAP2_SHA3);
4926 if (ABI_64_P (abfd))
4928 unsigned long mach = bfd_mach_sparc_v9;
4930 if (hwcaps2->i & m8_hwcaps2_mask)
4931 mach = bfd_mach_sparc_v9m8;
4932 else if (hwcaps2->i & v9m_hwcaps2_mask)
4933 mach = bfd_mach_sparc_v9m;
4934 else if (hwcaps->i & v9v_hwcaps_mask)
4935 mach = bfd_mach_sparc_v9v;
4936 else if (hwcaps->i & v9e_hwcaps_mask)
4937 mach = bfd_mach_sparc_v9e;
4938 else if (hwcaps->i & v9d_hwcaps_mask)
4939 mach = bfd_mach_sparc_v9d;
4940 else if (hwcaps->i & v9c_hwcaps_mask)
4941 mach = bfd_mach_sparc_v9c;
4942 else if (elf_elfheader (abfd)->e_flags & EF_SPARC_SUN_US3)
4943 mach = bfd_mach_sparc_v9b;
4944 else if (elf_elfheader (abfd)->e_flags & EF_SPARC_SUN_US1)
4945 mach = bfd_mach_sparc_v9a;
4946 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc, mach);
4950 if (elf_elfheader (abfd)->e_machine == EM_SPARC32PLUS)
4952 if (hwcaps2->i & m8_hwcaps2_mask)
4953 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4954 bfd_mach_sparc_v8plusm8);
4955 else if (hwcaps2->i & v9m_hwcaps2_mask)
4956 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4957 bfd_mach_sparc_v8plusm);
4958 else if (hwcaps->i & v9v_hwcaps_mask)
4959 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4960 bfd_mach_sparc_v8plusv);
4961 else if (hwcaps->i & v9e_hwcaps_mask)
4962 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4963 bfd_mach_sparc_v8pluse);
4964 else if (hwcaps->i & v9d_hwcaps_mask)
4965 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4966 bfd_mach_sparc_v8plusd);
4967 else if (hwcaps->i & v9c_hwcaps_mask)
4968 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4969 bfd_mach_sparc_v8plusc);
4970 else if (elf_elfheader (abfd)->e_flags & EF_SPARC_SUN_US3)
4971 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4972 bfd_mach_sparc_v8plusb);
4973 else if (elf_elfheader (abfd)->e_flags & EF_SPARC_SUN_US1)
4974 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4975 bfd_mach_sparc_v8plusa);
4976 else if (elf_elfheader (abfd)->e_flags & EF_SPARC_32PLUS)
4977 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4978 bfd_mach_sparc_v8plus);
4982 else if (elf_elfheader (abfd)->e_flags & EF_SPARC_LEDATA)
4983 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc,
4984 bfd_mach_sparc_sparclite_le);
4986 return bfd_default_set_arch_mach (abfd, bfd_arch_sparc, bfd_mach_sparc);
4990 /* Return address for Ith PLT stub in section PLT, for relocation REL
4991 or (bfd_vma) -1 if it should not be included. */
4994 _bfd_sparc_elf_plt_sym_val (bfd_vma i, const asection *plt, const arelent *rel)
4996 if (ABI_64_P (plt->owner))
5000 i += PLT64_HEADER_SIZE / PLT64_ENTRY_SIZE;
5001 if (i < PLT64_LARGE_THRESHOLD)
5002 return plt->vma + i * PLT64_ENTRY_SIZE;
5004 j = (i - PLT64_LARGE_THRESHOLD) % 160;
5006 return plt->vma + i * PLT64_ENTRY_SIZE + j * 4 * 6;
5009 return rel->address;
5012 /* Merge backend specific data from an object file to the output
5013 object file when linking. */
5016 _bfd_sparc_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
5018 bfd *obfd = info->output_bfd;
5019 obj_attribute *in_attr, *in_attrs;
5020 obj_attribute *out_attr, *out_attrs;
5022 if (!elf_known_obj_attributes_proc (obfd)[0].i)
5024 /* This is the first object. Copy the attributes. */
5025 _bfd_elf_copy_obj_attributes (ibfd, obfd);
5027 /* Use the Tag_null value to indicate the attributes have been
5029 elf_known_obj_attributes_proc (obfd)[0].i = 1;
5034 in_attrs = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
5035 out_attrs = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
5037 in_attr = &in_attrs[Tag_GNU_Sparc_HWCAPS];
5038 out_attr = &out_attrs[Tag_GNU_Sparc_HWCAPS];
5040 out_attr->i |= in_attr->i;
5043 in_attr = &in_attrs[Tag_GNU_Sparc_HWCAPS2];
5044 out_attr = &out_attrs[Tag_GNU_Sparc_HWCAPS2];
5046 out_attr->i |= in_attr->i;
5049 /* Merge Tag_compatibility attributes and any common GNU ones. */
5050 _bfd_elf_merge_object_attributes (ibfd, info);