1 /* IA-64 support for 64-bit ELF
2 Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
25 #include "opcode/ia64.h"
29 * THE RULES for all the stuff the linker creates --
31 * GOT Entries created in response to LTOFF or LTOFF_FPTR
32 * relocations. Dynamic relocs created for dynamic
33 * symbols in an application; REL relocs for locals
34 * in a shared library.
36 * FPTR The canonical function descriptor. Created for local
37 * symbols in applications. Descriptors for dynamic symbols
38 * and local symbols in shared libraries are created by
39 * ld.so. Thus there are no dynamic relocs against these
40 * objects. The FPTR relocs for such _are_ passed through
41 * to the dynamic relocation tables.
43 * FULL_PLT Created for a PCREL21B relocation against a dynamic symbol.
44 * Requires the creation of a PLTOFF entry. This does not
45 * require any dynamic relocations.
47 * PLTOFF Created by PLTOFF relocations. For local symbols, this
48 * is an alternate function descriptor, and in shared libraries
49 * requires two REL relocations. Note that this cannot be
50 * transformed into an FPTR relocation, since it must be in
51 * range of the GP. For dynamic symbols, this is a function
52 * descriptor for a MIN_PLT entry, and requires one IPLT reloc.
54 * MIN_PLT Created by PLTOFF entries against dynamic symbols. This
55 * does not reqire dynamic relocations.
58 #define USE_RELA /* we want RELA relocs, not REL */
60 #define NELEMS(a) ((int) (sizeof (a) / sizeof ((a)[0])))
62 typedef struct bfd_hash_entry
*(*new_hash_entry_func
)
63 PARAMS ((struct bfd_hash_entry
*, struct bfd_hash_table
*, const char *));
65 /* In dynamically (linker-) created sections, we generally need to keep track
66 of the place a symbol or expression got allocated to. This is done via hash
67 tables that store entries of the following type. */
69 struct elfNN_ia64_dyn_sym_info
71 /* The addend for which this entry is relevant. */
74 /* Next addend in the list. */
75 struct elfNN_ia64_dyn_sym_info
*next
;
79 bfd_vma pltoff_offset
;
83 /* The symbol table entry, if any, that this was derrived from. */
84 struct elf_link_hash_entry
*h
;
86 /* Used to count non-got, non-plt relocations for delayed sizing
87 of relocation sections. */
88 struct elfNN_ia64_dyn_reloc_entry
90 struct elfNN_ia64_dyn_reloc_entry
*next
;
96 /* True when the section contents have been updated. */
97 unsigned got_done
: 1;
98 unsigned fptr_done
: 1;
99 unsigned pltoff_done
: 1;
101 /* True for the different kinds of linker data we want created. */
102 unsigned want_got
: 1;
103 unsigned want_fptr
: 1;
104 unsigned want_ltoff_fptr
: 1;
105 unsigned want_plt
: 1;
106 unsigned want_plt2
: 1;
107 unsigned want_pltoff
: 1;
110 struct elfNN_ia64_local_hash_entry
112 struct bfd_hash_entry root
;
113 struct elfNN_ia64_dyn_sym_info
*info
;
115 /* True if this hash entry's addends was translated for
116 SHF_MERGE optimization. */
117 unsigned sec_merge_done
: 1;
120 struct elfNN_ia64_local_hash_table
122 struct bfd_hash_table root
;
123 /* No additional fields for now. */
126 struct elfNN_ia64_link_hash_entry
128 struct elf_link_hash_entry root
;
129 struct elfNN_ia64_dyn_sym_info
*info
;
132 struct elfNN_ia64_link_hash_table
134 /* The main hash table */
135 struct elf_link_hash_table root
;
137 asection
*got_sec
; /* the linkage table section (or NULL) */
138 asection
*rel_got_sec
; /* dynamic relocation section for same */
139 asection
*fptr_sec
; /* function descriptor table (or NULL) */
140 asection
*plt_sec
; /* the primary plt section (or NULL) */
141 asection
*pltoff_sec
; /* private descriptors for plt (or NULL) */
142 asection
*rel_pltoff_sec
; /* dynamic relocation section for same */
144 bfd_size_type minplt_entries
; /* number of minplt entries */
145 unsigned reltext
: 1; /* are there relocs against readonly sections? */
147 struct elfNN_ia64_local_hash_table loc_hash_table
;
150 #define elfNN_ia64_hash_table(p) \
151 ((struct elfNN_ia64_link_hash_table *) ((p)->hash))
153 static bfd_reloc_status_type elfNN_ia64_reloc
154 PARAMS ((bfd
*abfd
, arelent
*reloc
, asymbol
*sym
, PTR data
,
155 asection
*input_section
, bfd
*output_bfd
, char **error_message
));
156 static reloc_howto_type
* lookup_howto
157 PARAMS ((unsigned int rtype
));
158 static reloc_howto_type
*elfNN_ia64_reloc_type_lookup
159 PARAMS ((bfd
*abfd
, bfd_reloc_code_real_type bfd_code
));
160 static void elfNN_ia64_info_to_howto
161 PARAMS ((bfd
*abfd
, arelent
*bfd_reloc
, ElfNN_Internal_Rela
*elf_reloc
));
162 static boolean elfNN_ia64_relax_section
163 PARAMS((bfd
*abfd
, asection
*sec
, struct bfd_link_info
*link_info
,
165 static boolean is_unwind_section_name
166 PARAMS ((bfd
*abfd
, const char *));
167 static boolean elfNN_ia64_section_from_shdr
168 PARAMS ((bfd
*, ElfNN_Internal_Shdr
*, char *));
169 static boolean elfNN_ia64_section_flags
170 PARAMS ((flagword
*, ElfNN_Internal_Shdr
*));
171 static boolean elfNN_ia64_fake_sections
172 PARAMS ((bfd
*abfd
, ElfNN_Internal_Shdr
*hdr
, asection
*sec
));
173 static void elfNN_ia64_final_write_processing
174 PARAMS ((bfd
*abfd
, boolean linker
));
175 static boolean elfNN_ia64_add_symbol_hook
176 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
, const Elf_Internal_Sym
*sym
,
177 const char **namep
, flagword
*flagsp
, asection
**secp
,
179 static boolean elfNN_ia64_aix_vec
180 PARAMS ((const bfd_target
*vec
));
181 static boolean elfNN_ia64_aix_add_symbol_hook
182 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
, const Elf_Internal_Sym
*sym
,
183 const char **namep
, flagword
*flagsp
, asection
**secp
,
185 static boolean elfNN_ia64_aix_link_add_symbols
186 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
187 static int elfNN_ia64_additional_program_headers
188 PARAMS ((bfd
*abfd
));
189 static boolean elfNN_ia64_modify_segment_map
191 static boolean elfNN_ia64_is_local_label_name
192 PARAMS ((bfd
*abfd
, const char *name
));
193 static boolean elfNN_ia64_dynamic_symbol_p
194 PARAMS ((struct elf_link_hash_entry
*h
, struct bfd_link_info
*info
));
195 static boolean elfNN_ia64_local_hash_table_init
196 PARAMS ((struct elfNN_ia64_local_hash_table
*ht
, bfd
*abfd
,
197 new_hash_entry_func
new));
198 static struct bfd_hash_entry
*elfNN_ia64_new_loc_hash_entry
199 PARAMS ((struct bfd_hash_entry
*entry
, struct bfd_hash_table
*table
,
200 const char *string
));
201 static struct bfd_hash_entry
*elfNN_ia64_new_elf_hash_entry
202 PARAMS ((struct bfd_hash_entry
*entry
, struct bfd_hash_table
*table
,
203 const char *string
));
204 static void elfNN_ia64_hash_copy_indirect
205 PARAMS ((struct elf_link_hash_entry
*, struct elf_link_hash_entry
*));
206 static void elfNN_ia64_hash_hide_symbol
207 PARAMS ((struct bfd_link_info
*, struct elf_link_hash_entry
*));
208 static struct bfd_link_hash_table
*elfNN_ia64_hash_table_create
209 PARAMS ((bfd
*abfd
));
210 static struct elfNN_ia64_local_hash_entry
*elfNN_ia64_local_hash_lookup
211 PARAMS ((struct elfNN_ia64_local_hash_table
*table
, const char *string
,
212 boolean create
, boolean copy
));
213 static boolean elfNN_ia64_global_dyn_sym_thunk
214 PARAMS ((struct bfd_hash_entry
*, PTR
));
215 static boolean elfNN_ia64_local_dyn_sym_thunk
216 PARAMS ((struct bfd_hash_entry
*, PTR
));
217 static void elfNN_ia64_dyn_sym_traverse
218 PARAMS ((struct elfNN_ia64_link_hash_table
*ia64_info
,
219 boolean (*func
) (struct elfNN_ia64_dyn_sym_info
*, PTR
),
221 static boolean elfNN_ia64_create_dynamic_sections
222 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
223 static struct elfNN_ia64_local_hash_entry
* get_local_sym_hash
224 PARAMS ((struct elfNN_ia64_link_hash_table
*ia64_info
,
225 bfd
*abfd
, const Elf_Internal_Rela
*rel
, boolean create
));
226 static struct elfNN_ia64_dyn_sym_info
* get_dyn_sym_info
227 PARAMS ((struct elfNN_ia64_link_hash_table
*ia64_info
,
228 struct elf_link_hash_entry
*h
,
229 bfd
*abfd
, const Elf_Internal_Rela
*rel
, boolean create
));
230 static asection
*get_got
231 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
232 struct elfNN_ia64_link_hash_table
*ia64_info
));
233 static asection
*get_fptr
234 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
235 struct elfNN_ia64_link_hash_table
*ia64_info
));
236 static asection
*get_pltoff
237 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
238 struct elfNN_ia64_link_hash_table
*ia64_info
));
239 static asection
*get_reloc_section
240 PARAMS ((bfd
*abfd
, struct elfNN_ia64_link_hash_table
*ia64_info
,
241 asection
*sec
, boolean create
));
242 static boolean count_dyn_reloc
243 PARAMS ((bfd
*abfd
, struct elfNN_ia64_dyn_sym_info
*dyn_i
,
244 asection
*srel
, int type
));
245 static boolean elfNN_ia64_check_relocs
246 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
, asection
*sec
,
247 const Elf_Internal_Rela
*relocs
));
248 static boolean elfNN_ia64_adjust_dynamic_symbol
249 PARAMS ((struct bfd_link_info
*info
, struct elf_link_hash_entry
*h
));
250 static long global_sym_index
251 PARAMS ((struct elf_link_hash_entry
*h
));
252 static boolean allocate_fptr
253 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
254 static boolean allocate_global_data_got
255 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
256 static boolean allocate_global_fptr_got
257 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
258 static boolean allocate_local_got
259 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
260 static boolean allocate_pltoff_entries
261 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
262 static boolean allocate_plt_entries
263 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
264 static boolean allocate_plt2_entries
265 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
266 static boolean allocate_dynrel_entries
267 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
268 static boolean elfNN_ia64_size_dynamic_sections
269 PARAMS ((bfd
*output_bfd
, struct bfd_link_info
*info
));
270 static bfd_reloc_status_type elfNN_ia64_install_value
271 PARAMS ((bfd
*abfd
, bfd_byte
*hit_addr
, bfd_vma val
, unsigned int r_type
));
272 static void elfNN_ia64_install_dyn_reloc
273 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
, asection
*sec
,
274 asection
*srel
, bfd_vma offset
, unsigned int type
,
275 long dynindx
, bfd_vma addend
));
276 static bfd_vma set_got_entry
277 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
278 struct elfNN_ia64_dyn_sym_info
*dyn_i
, long dynindx
,
279 bfd_vma addend
, bfd_vma value
, unsigned int dyn_r_type
));
280 static bfd_vma set_fptr_entry
281 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
282 struct elfNN_ia64_dyn_sym_info
*dyn_i
,
284 static bfd_vma set_pltoff_entry
285 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
286 struct elfNN_ia64_dyn_sym_info
*dyn_i
,
287 bfd_vma value
, boolean
));
288 static int elfNN_ia64_unwind_entry_compare
289 PARAMS ((const PTR
, const PTR
));
290 static boolean elfNN_ia64_final_link
291 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
292 static boolean elfNN_ia64_relocate_section
293 PARAMS ((bfd
*output_bfd
, struct bfd_link_info
*info
, bfd
*input_bfd
,
294 asection
*input_section
, bfd_byte
*contents
,
295 Elf_Internal_Rela
*relocs
, Elf_Internal_Sym
*local_syms
,
296 asection
**local_sections
));
297 static boolean elfNN_ia64_finish_dynamic_symbol
298 PARAMS ((bfd
*output_bfd
, struct bfd_link_info
*info
,
299 struct elf_link_hash_entry
*h
, Elf_Internal_Sym
*sym
));
300 static boolean elfNN_ia64_finish_dynamic_sections
301 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
302 static boolean elfNN_ia64_set_private_flags
303 PARAMS ((bfd
*abfd
, flagword flags
));
304 static boolean elfNN_ia64_merge_private_bfd_data
305 PARAMS ((bfd
*ibfd
, bfd
*obfd
));
306 static boolean elfNN_ia64_print_private_bfd_data
307 PARAMS ((bfd
*abfd
, PTR ptr
));
308 static enum elf_reloc_type_class elfNN_ia64_reloc_type_class
309 PARAMS ((const Elf_Internal_Rela
*));
310 static boolean elfNN_ia64_hpux_vec
311 PARAMS ((const bfd_target
*vec
));
312 static void elfNN_hpux_post_process_headers
313 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
314 boolean elfNN_hpux_backend_section_from_bfd_section
315 PARAMS ((bfd
*abfd
, asection
*sec
, int *retval
));
317 /* ia64-specific relocation */
319 /* Perform a relocation. Not much to do here as all the hard work is
320 done in elfNN_ia64_final_link_relocate. */
321 static bfd_reloc_status_type
322 elfNN_ia64_reloc (abfd
, reloc
, sym
, data
, input_section
,
323 output_bfd
, error_message
)
324 bfd
*abfd ATTRIBUTE_UNUSED
;
326 asymbol
*sym ATTRIBUTE_UNUSED
;
327 PTR data ATTRIBUTE_UNUSED
;
328 asection
*input_section
;
330 char **error_message
;
334 reloc
->address
+= input_section
->output_offset
;
337 *error_message
= "Unsupported call to elfNN_ia64_reloc";
338 return bfd_reloc_notsupported
;
341 #define IA64_HOWTO(TYPE, NAME, SIZE, PCREL, IN) \
342 HOWTO (TYPE, 0, SIZE, 0, PCREL, 0, complain_overflow_signed, \
343 elfNN_ia64_reloc, NAME, false, 0, 0, IN)
345 /* This table has to be sorted according to increasing number of the
347 static reloc_howto_type ia64_howto_table
[] =
349 IA64_HOWTO (R_IA64_NONE
, "NONE", 0, false, true),
351 IA64_HOWTO (R_IA64_IMM14
, "IMM14", 0, false, true),
352 IA64_HOWTO (R_IA64_IMM22
, "IMM22", 0, false, true),
353 IA64_HOWTO (R_IA64_IMM64
, "IMM64", 0, false, true),
354 IA64_HOWTO (R_IA64_DIR32MSB
, "DIR32MSB", 2, false, true),
355 IA64_HOWTO (R_IA64_DIR32LSB
, "DIR32LSB", 2, false, true),
356 IA64_HOWTO (R_IA64_DIR64MSB
, "DIR64MSB", 4, false, true),
357 IA64_HOWTO (R_IA64_DIR64LSB
, "DIR64LSB", 4, false, true),
359 IA64_HOWTO (R_IA64_GPREL22
, "GPREL22", 0, false, true),
360 IA64_HOWTO (R_IA64_GPREL64I
, "GPREL64I", 0, false, true),
361 IA64_HOWTO (R_IA64_GPREL32MSB
, "GPREL32MSB", 2, false, true),
362 IA64_HOWTO (R_IA64_GPREL32LSB
, "GPREL32LSB", 2, false, true),
363 IA64_HOWTO (R_IA64_GPREL64MSB
, "GPREL64MSB", 4, false, true),
364 IA64_HOWTO (R_IA64_GPREL64LSB
, "GPREL64LSB", 4, false, true),
366 IA64_HOWTO (R_IA64_LTOFF22
, "LTOFF22", 0, false, true),
367 IA64_HOWTO (R_IA64_LTOFF64I
, "LTOFF64I", 0, false, true),
369 IA64_HOWTO (R_IA64_PLTOFF22
, "PLTOFF22", 0, false, true),
370 IA64_HOWTO (R_IA64_PLTOFF64I
, "PLTOFF64I", 0, false, true),
371 IA64_HOWTO (R_IA64_PLTOFF64MSB
, "PLTOFF64MSB", 4, false, true),
372 IA64_HOWTO (R_IA64_PLTOFF64LSB
, "PLTOFF64LSB", 4, false, true),
374 IA64_HOWTO (R_IA64_FPTR64I
, "FPTR64I", 0, false, true),
375 IA64_HOWTO (R_IA64_FPTR32MSB
, "FPTR32MSB", 2, false, true),
376 IA64_HOWTO (R_IA64_FPTR32LSB
, "FPTR32LSB", 2, false, true),
377 IA64_HOWTO (R_IA64_FPTR64MSB
, "FPTR64MSB", 4, false, true),
378 IA64_HOWTO (R_IA64_FPTR64LSB
, "FPTR64LSB", 4, false, true),
380 IA64_HOWTO (R_IA64_PCREL60B
, "PCREL60B", 0, true, true),
381 IA64_HOWTO (R_IA64_PCREL21B
, "PCREL21B", 0, true, true),
382 IA64_HOWTO (R_IA64_PCREL21M
, "PCREL21M", 0, true, true),
383 IA64_HOWTO (R_IA64_PCREL21F
, "PCREL21F", 0, true, true),
384 IA64_HOWTO (R_IA64_PCREL32MSB
, "PCREL32MSB", 2, true, true),
385 IA64_HOWTO (R_IA64_PCREL32LSB
, "PCREL32LSB", 2, true, true),
386 IA64_HOWTO (R_IA64_PCREL64MSB
, "PCREL64MSB", 4, true, true),
387 IA64_HOWTO (R_IA64_PCREL64LSB
, "PCREL64LSB", 4, true, true),
389 IA64_HOWTO (R_IA64_LTOFF_FPTR22
, "LTOFF_FPTR22", 0, false, true),
390 IA64_HOWTO (R_IA64_LTOFF_FPTR64I
, "LTOFF_FPTR64I", 0, false, true),
391 IA64_HOWTO (R_IA64_LTOFF_FPTR32MSB
, "LTOFF_FPTR32MSB", 2, false, true),
392 IA64_HOWTO (R_IA64_LTOFF_FPTR32LSB
, "LTOFF_FPTR32LSB", 2, false, true),
393 IA64_HOWTO (R_IA64_LTOFF_FPTR64MSB
, "LTOFF_FPTR64MSB", 4, false, true),
394 IA64_HOWTO (R_IA64_LTOFF_FPTR64LSB
, "LTOFF_FPTR64LSB", 4, false, true),
396 IA64_HOWTO (R_IA64_SEGREL32MSB
, "SEGREL32MSB", 2, false, true),
397 IA64_HOWTO (R_IA64_SEGREL32LSB
, "SEGREL32LSB", 2, false, true),
398 IA64_HOWTO (R_IA64_SEGREL64MSB
, "SEGREL64MSB", 4, false, true),
399 IA64_HOWTO (R_IA64_SEGREL64LSB
, "SEGREL64LSB", 4, false, true),
401 IA64_HOWTO (R_IA64_SECREL32MSB
, "SECREL32MSB", 2, false, true),
402 IA64_HOWTO (R_IA64_SECREL32LSB
, "SECREL32LSB", 2, false, true),
403 IA64_HOWTO (R_IA64_SECREL64MSB
, "SECREL64MSB", 4, false, true),
404 IA64_HOWTO (R_IA64_SECREL64LSB
, "SECREL64LSB", 4, false, true),
406 IA64_HOWTO (R_IA64_REL32MSB
, "REL32MSB", 2, false, true),
407 IA64_HOWTO (R_IA64_REL32LSB
, "REL32LSB", 2, false, true),
408 IA64_HOWTO (R_IA64_REL64MSB
, "REL64MSB", 4, false, true),
409 IA64_HOWTO (R_IA64_REL64LSB
, "REL64LSB", 4, false, true),
411 IA64_HOWTO (R_IA64_LTV32MSB
, "LTV32MSB", 2, false, true),
412 IA64_HOWTO (R_IA64_LTV32LSB
, "LTV32LSB", 2, false, true),
413 IA64_HOWTO (R_IA64_LTV64MSB
, "LTV64MSB", 4, false, true),
414 IA64_HOWTO (R_IA64_LTV64LSB
, "LTV64LSB", 4, false, true),
416 IA64_HOWTO (R_IA64_PCREL21BI
, "PCREL21BI", 0, true, true),
417 IA64_HOWTO (R_IA64_PCREL22
, "PCREL22", 0, true, true),
418 IA64_HOWTO (R_IA64_PCREL64I
, "PCREL64I", 0, true, true),
420 IA64_HOWTO (R_IA64_IPLTMSB
, "IPLTMSB", 4, false, true),
421 IA64_HOWTO (R_IA64_IPLTLSB
, "IPLTLSB", 4, false, true),
422 IA64_HOWTO (R_IA64_COPY
, "COPY", 4, false, true),
423 IA64_HOWTO (R_IA64_LTOFF22X
, "LTOFF22X", 0, false, true),
424 IA64_HOWTO (R_IA64_LDXMOV
, "LDXMOV", 0, false, true),
426 IA64_HOWTO (R_IA64_TPREL22
, "TPREL22", 0, false, false),
427 IA64_HOWTO (R_IA64_TPREL64MSB
, "TPREL64MSB", 8, false, false),
428 IA64_HOWTO (R_IA64_TPREL64LSB
, "TPREL64LSB", 8, false, false),
429 IA64_HOWTO (R_IA64_LTOFF_TP22
, "LTOFF_TP22", 0, false, false),
432 static unsigned char elf_code_to_howto_index
[R_IA64_MAX_RELOC_CODE
+ 1];
434 /* Given a BFD reloc type, return the matching HOWTO structure. */
436 static reloc_howto_type
*
440 static int inited
= 0;
447 memset (elf_code_to_howto_index
, 0xff, sizeof (elf_code_to_howto_index
));
448 for (i
= 0; i
< NELEMS (ia64_howto_table
); ++i
)
449 elf_code_to_howto_index
[ia64_howto_table
[i
].type
] = i
;
452 BFD_ASSERT (rtype
<= R_IA64_MAX_RELOC_CODE
);
453 i
= elf_code_to_howto_index
[rtype
];
454 if (i
>= NELEMS (ia64_howto_table
))
456 return ia64_howto_table
+ i
;
459 static reloc_howto_type
*
460 elfNN_ia64_reloc_type_lookup (abfd
, bfd_code
)
461 bfd
*abfd ATTRIBUTE_UNUSED
;
462 bfd_reloc_code_real_type bfd_code
;
468 case BFD_RELOC_NONE
: rtype
= R_IA64_NONE
; break;
470 case BFD_RELOC_IA64_IMM14
: rtype
= R_IA64_IMM14
; break;
471 case BFD_RELOC_IA64_IMM22
: rtype
= R_IA64_IMM22
; break;
472 case BFD_RELOC_IA64_IMM64
: rtype
= R_IA64_IMM64
; break;
474 case BFD_RELOC_IA64_DIR32MSB
: rtype
= R_IA64_DIR32MSB
; break;
475 case BFD_RELOC_IA64_DIR32LSB
: rtype
= R_IA64_DIR32LSB
; break;
476 case BFD_RELOC_IA64_DIR64MSB
: rtype
= R_IA64_DIR64MSB
; break;
477 case BFD_RELOC_IA64_DIR64LSB
: rtype
= R_IA64_DIR64LSB
; break;
479 case BFD_RELOC_IA64_GPREL22
: rtype
= R_IA64_GPREL22
; break;
480 case BFD_RELOC_IA64_GPREL64I
: rtype
= R_IA64_GPREL64I
; break;
481 case BFD_RELOC_IA64_GPREL32MSB
: rtype
= R_IA64_GPREL32MSB
; break;
482 case BFD_RELOC_IA64_GPREL32LSB
: rtype
= R_IA64_GPREL32LSB
; break;
483 case BFD_RELOC_IA64_GPREL64MSB
: rtype
= R_IA64_GPREL64MSB
; break;
484 case BFD_RELOC_IA64_GPREL64LSB
: rtype
= R_IA64_GPREL64LSB
; break;
486 case BFD_RELOC_IA64_LTOFF22
: rtype
= R_IA64_LTOFF22
; break;
487 case BFD_RELOC_IA64_LTOFF64I
: rtype
= R_IA64_LTOFF64I
; break;
489 case BFD_RELOC_IA64_PLTOFF22
: rtype
= R_IA64_PLTOFF22
; break;
490 case BFD_RELOC_IA64_PLTOFF64I
: rtype
= R_IA64_PLTOFF64I
; break;
491 case BFD_RELOC_IA64_PLTOFF64MSB
: rtype
= R_IA64_PLTOFF64MSB
; break;
492 case BFD_RELOC_IA64_PLTOFF64LSB
: rtype
= R_IA64_PLTOFF64LSB
; break;
493 case BFD_RELOC_IA64_FPTR64I
: rtype
= R_IA64_FPTR64I
; break;
494 case BFD_RELOC_IA64_FPTR32MSB
: rtype
= R_IA64_FPTR32MSB
; break;
495 case BFD_RELOC_IA64_FPTR32LSB
: rtype
= R_IA64_FPTR32LSB
; break;
496 case BFD_RELOC_IA64_FPTR64MSB
: rtype
= R_IA64_FPTR64MSB
; break;
497 case BFD_RELOC_IA64_FPTR64LSB
: rtype
= R_IA64_FPTR64LSB
; break;
499 case BFD_RELOC_IA64_PCREL21B
: rtype
= R_IA64_PCREL21B
; break;
500 case BFD_RELOC_IA64_PCREL21BI
: rtype
= R_IA64_PCREL21BI
; break;
501 case BFD_RELOC_IA64_PCREL21M
: rtype
= R_IA64_PCREL21M
; break;
502 case BFD_RELOC_IA64_PCREL21F
: rtype
= R_IA64_PCREL21F
; break;
503 case BFD_RELOC_IA64_PCREL22
: rtype
= R_IA64_PCREL22
; break;
504 case BFD_RELOC_IA64_PCREL60B
: rtype
= R_IA64_PCREL60B
; break;
505 case BFD_RELOC_IA64_PCREL64I
: rtype
= R_IA64_PCREL64I
; break;
506 case BFD_RELOC_IA64_PCREL32MSB
: rtype
= R_IA64_PCREL32MSB
; break;
507 case BFD_RELOC_IA64_PCREL32LSB
: rtype
= R_IA64_PCREL32LSB
; break;
508 case BFD_RELOC_IA64_PCREL64MSB
: rtype
= R_IA64_PCREL64MSB
; break;
509 case BFD_RELOC_IA64_PCREL64LSB
: rtype
= R_IA64_PCREL64LSB
; break;
511 case BFD_RELOC_IA64_LTOFF_FPTR22
: rtype
= R_IA64_LTOFF_FPTR22
; break;
512 case BFD_RELOC_IA64_LTOFF_FPTR64I
: rtype
= R_IA64_LTOFF_FPTR64I
; break;
513 case BFD_RELOC_IA64_LTOFF_FPTR32MSB
: rtype
= R_IA64_LTOFF_FPTR32MSB
; break;
514 case BFD_RELOC_IA64_LTOFF_FPTR32LSB
: rtype
= R_IA64_LTOFF_FPTR32LSB
; break;
515 case BFD_RELOC_IA64_LTOFF_FPTR64MSB
: rtype
= R_IA64_LTOFF_FPTR64MSB
; break;
516 case BFD_RELOC_IA64_LTOFF_FPTR64LSB
: rtype
= R_IA64_LTOFF_FPTR64LSB
; break;
518 case BFD_RELOC_IA64_SEGREL32MSB
: rtype
= R_IA64_SEGREL32MSB
; break;
519 case BFD_RELOC_IA64_SEGREL32LSB
: rtype
= R_IA64_SEGREL32LSB
; break;
520 case BFD_RELOC_IA64_SEGREL64MSB
: rtype
= R_IA64_SEGREL64MSB
; break;
521 case BFD_RELOC_IA64_SEGREL64LSB
: rtype
= R_IA64_SEGREL64LSB
; break;
523 case BFD_RELOC_IA64_SECREL32MSB
: rtype
= R_IA64_SECREL32MSB
; break;
524 case BFD_RELOC_IA64_SECREL32LSB
: rtype
= R_IA64_SECREL32LSB
; break;
525 case BFD_RELOC_IA64_SECREL64MSB
: rtype
= R_IA64_SECREL64MSB
; break;
526 case BFD_RELOC_IA64_SECREL64LSB
: rtype
= R_IA64_SECREL64LSB
; break;
528 case BFD_RELOC_IA64_REL32MSB
: rtype
= R_IA64_REL32MSB
; break;
529 case BFD_RELOC_IA64_REL32LSB
: rtype
= R_IA64_REL32LSB
; break;
530 case BFD_RELOC_IA64_REL64MSB
: rtype
= R_IA64_REL64MSB
; break;
531 case BFD_RELOC_IA64_REL64LSB
: rtype
= R_IA64_REL64LSB
; break;
533 case BFD_RELOC_IA64_LTV32MSB
: rtype
= R_IA64_LTV32MSB
; break;
534 case BFD_RELOC_IA64_LTV32LSB
: rtype
= R_IA64_LTV32LSB
; break;
535 case BFD_RELOC_IA64_LTV64MSB
: rtype
= R_IA64_LTV64MSB
; break;
536 case BFD_RELOC_IA64_LTV64LSB
: rtype
= R_IA64_LTV64LSB
; break;
538 case BFD_RELOC_IA64_IPLTMSB
: rtype
= R_IA64_IPLTMSB
; break;
539 case BFD_RELOC_IA64_IPLTLSB
: rtype
= R_IA64_IPLTLSB
; break;
540 case BFD_RELOC_IA64_COPY
: rtype
= R_IA64_COPY
; break;
541 case BFD_RELOC_IA64_LTOFF22X
: rtype
= R_IA64_LTOFF22X
; break;
542 case BFD_RELOC_IA64_LDXMOV
: rtype
= R_IA64_LDXMOV
; break;
544 case BFD_RELOC_IA64_TPREL22
: rtype
= R_IA64_TPREL22
; break;
545 case BFD_RELOC_IA64_TPREL64MSB
: rtype
= R_IA64_TPREL64MSB
; break;
546 case BFD_RELOC_IA64_TPREL64LSB
: rtype
= R_IA64_TPREL64LSB
; break;
547 case BFD_RELOC_IA64_LTOFF_TP22
: rtype
= R_IA64_LTOFF_TP22
; break;
551 return lookup_howto (rtype
);
554 /* Given a ELF reloc, return the matching HOWTO structure. */
557 elfNN_ia64_info_to_howto (abfd
, bfd_reloc
, elf_reloc
)
558 bfd
*abfd ATTRIBUTE_UNUSED
;
560 ElfNN_Internal_Rela
*elf_reloc
;
563 = lookup_howto ((unsigned int) ELFNN_R_TYPE (elf_reloc
->r_info
));
566 #define PLT_HEADER_SIZE (3 * 16)
567 #define PLT_MIN_ENTRY_SIZE (1 * 16)
568 #define PLT_FULL_ENTRY_SIZE (2 * 16)
569 #define PLT_RESERVED_WORDS 3
571 static const bfd_byte plt_header
[PLT_HEADER_SIZE
] =
573 0x0b, 0x10, 0x00, 0x1c, 0x00, 0x21, /* [MMI] mov r2=r14;; */
574 0xe0, 0x00, 0x08, 0x00, 0x48, 0x00, /* addl r14=0,r2 */
575 0x00, 0x00, 0x04, 0x00, /* nop.i 0x0;; */
576 0x0b, 0x80, 0x20, 0x1c, 0x18, 0x14, /* [MMI] ld8 r16=[r14],8;; */
577 0x10, 0x41, 0x38, 0x30, 0x28, 0x00, /* ld8 r17=[r14],8 */
578 0x00, 0x00, 0x04, 0x00, /* nop.i 0x0;; */
579 0x11, 0x08, 0x00, 0x1c, 0x18, 0x10, /* [MIB] ld8 r1=[r14] */
580 0x60, 0x88, 0x04, 0x80, 0x03, 0x00, /* mov b6=r17 */
581 0x60, 0x00, 0x80, 0x00 /* br.few b6;; */
584 static const bfd_byte plt_min_entry
[PLT_MIN_ENTRY_SIZE
] =
586 0x11, 0x78, 0x00, 0x00, 0x00, 0x24, /* [MIB] mov r15=0 */
587 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, /* nop.i 0x0 */
588 0x00, 0x00, 0x00, 0x40 /* br.few 0 <PLT0>;; */
591 static const bfd_byte plt_full_entry
[PLT_FULL_ENTRY_SIZE
] =
593 0x0b, 0x78, 0x00, 0x02, 0x00, 0x24, /* [MMI] addl r15=0,r1;; */
594 0x00, 0x41, 0x3c, 0x30, 0x28, 0xc0, /* ld8 r16=[r15],8 */
595 0x01, 0x08, 0x00, 0x84, /* mov r14=r1;; */
596 0x11, 0x08, 0x00, 0x1e, 0x18, 0x10, /* [MIB] ld8 r1=[r15] */
597 0x60, 0x80, 0x04, 0x80, 0x03, 0x00, /* mov b6=r16 */
598 0x60, 0x00, 0x80, 0x00 /* br.few b6;; */
601 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
602 #define AIX_DYNAMIC_INTERPRETER "/usr/lib/ia64l64/libc.so.1"
603 #define DYNAMIC_INTERPRETER(abfd) \
604 (elfNN_ia64_aix_vec (abfd->xvec) ? AIX_DYNAMIC_INTERPRETER : ELF_DYNAMIC_INTERPRETER)
606 /* Select out of range branch fixup type. Note that Itanium does
607 not support brl, and so it gets emulated by the kernel. */
610 static const bfd_byte oor_brl
[16] =
612 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MLX] nop.m 0 */
613 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* brl.sptk.few tgt;; */
614 0x00, 0x00, 0x00, 0xc0
617 static const bfd_byte oor_ip
[48] =
619 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MLX] nop.m 0 */
620 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, /* movl r15=0 */
621 0x01, 0x00, 0x00, 0x60,
622 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MII] nop.m 0 */
623 0x00, 0x01, 0x00, 0x60, 0x00, 0x00, /* mov r16=ip;; */
624 0xf2, 0x80, 0x00, 0x80, /* add r16=r15,r16;; */
625 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MIB] nop.m 0 */
626 0x60, 0x80, 0x04, 0x80, 0x03, 0x00, /* mov b6=r16 */
627 0x60, 0x00, 0x80, 0x00 /* br b6;; */
630 /* These functions do relaxation for IA-64 ELF.
632 This is primarily to support branches to targets out of range;
633 relaxation of R_IA64_LTOFF22X and R_IA64_LDXMOV not yet supported. */
636 elfNN_ia64_relax_section (abfd
, sec
, link_info
, again
)
639 struct bfd_link_info
*link_info
;
644 struct one_fixup
*next
;
650 Elf_Internal_Shdr
*symtab_hdr
;
651 Elf_Internal_Shdr
*shndx_hdr
;
652 Elf_Internal_Rela
*internal_relocs
;
653 Elf_Internal_Rela
*free_relocs
= NULL
;
654 Elf_Internal_Rela
*irel
, *irelend
;
656 bfd_byte
*free_contents
= NULL
;
657 ElfNN_External_Sym
*extsyms
;
658 ElfNN_External_Sym
*free_extsyms
= NULL
;
659 Elf_External_Sym_Shndx
*shndx_buf
= NULL
;
660 struct elfNN_ia64_link_hash_table
*ia64_info
;
661 struct one_fixup
*fixups
= NULL
;
662 boolean changed_contents
= false;
663 boolean changed_relocs
= false;
665 /* Assume we're not going to change any sizes, and we'll only need
669 /* Nothing to do if there are no relocations. */
670 if ((sec
->flags
& SEC_RELOC
) == 0
671 || sec
->reloc_count
== 0)
674 /* If this is the first time we have been called for this section,
675 initialize the cooked size. */
676 if (sec
->_cooked_size
== 0)
677 sec
->_cooked_size
= sec
->_raw_size
;
679 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
681 /* Load the relocations for this section. */
682 internal_relocs
= (_bfd_elfNN_link_read_relocs
683 (abfd
, sec
, (PTR
) NULL
, (Elf_Internal_Rela
*) NULL
,
684 link_info
->keep_memory
));
685 if (internal_relocs
== NULL
)
688 if (! link_info
->keep_memory
)
689 free_relocs
= internal_relocs
;
691 ia64_info
= elfNN_ia64_hash_table (link_info
);
692 irelend
= internal_relocs
+ sec
->reloc_count
;
694 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
695 if (ELFNN_R_TYPE (irel
->r_info
) == (int) R_IA64_PCREL21B
)
698 /* No branch-type relocations. */
701 if (free_relocs
!= NULL
)
706 /* Get the section contents. */
707 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
708 contents
= elf_section_data (sec
)->this_hdr
.contents
;
711 contents
= (bfd_byte
*) bfd_malloc (sec
->_raw_size
);
712 if (contents
== NULL
)
714 free_contents
= contents
;
716 if (! bfd_get_section_contents (abfd
, sec
, contents
,
717 (file_ptr
) 0, sec
->_raw_size
))
721 /* Read this BFD's local symbols. */
722 if (symtab_hdr
->contents
!= NULL
)
723 extsyms
= (ElfNN_External_Sym
*) symtab_hdr
->contents
;
728 amt
= symtab_hdr
->sh_info
* sizeof (ElfNN_External_Sym
);
729 extsyms
= (ElfNN_External_Sym
*) bfd_malloc (amt
);
732 free_extsyms
= extsyms
;
733 if (bfd_seek (abfd
, symtab_hdr
->sh_offset
, SEEK_SET
) != 0
734 || bfd_bread (extsyms
, amt
, abfd
) != amt
)
738 shndx_hdr
= &elf_tdata (abfd
)->symtab_shndx_hdr
;
739 if (shndx_hdr
->sh_size
!= 0)
743 amt
= symtab_hdr
->sh_info
* sizeof (Elf_External_Sym_Shndx
);
744 shndx_buf
= (Elf_External_Sym_Shndx
*) bfd_malloc (amt
);
745 if (shndx_buf
== NULL
)
747 if (bfd_seek (abfd
, shndx_hdr
->sh_offset
, SEEK_SET
) != 0
748 || bfd_bread (shndx_buf
, amt
, abfd
) != amt
)
752 for (; irel
< irelend
; irel
++)
754 bfd_vma symaddr
, reladdr
, trampoff
, toff
, roff
;
755 Elf_Internal_Sym isym
;
760 if (ELFNN_R_TYPE (irel
->r_info
) != (int) R_IA64_PCREL21B
)
763 /* Get the value of the symbol referred to by the reloc. */
764 if (ELFNN_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
766 ElfNN_External_Sym
*esym
;
767 Elf_External_Sym_Shndx
*shndx
;
769 /* A local symbol. */
770 esym
= extsyms
+ ELFNN_R_SYM (irel
->r_info
);
771 shndx
= shndx_buf
+ (shndx_buf
? ELFNN_R_SYM (irel
->r_info
) : 0);
772 bfd_elfNN_swap_symbol_in (abfd
, esym
, shndx
, &isym
);
773 if (isym
.st_shndx
== SHN_UNDEF
)
774 continue; /* We can't do anthing with undefined symbols. */
775 else if (isym
.st_shndx
== SHN_ABS
)
776 tsec
= bfd_abs_section_ptr
;
777 else if (isym
.st_shndx
== SHN_COMMON
)
778 tsec
= bfd_com_section_ptr
;
779 else if (isym
.st_shndx
== SHN_IA_64_ANSI_COMMON
)
780 tsec
= bfd_com_section_ptr
;
782 tsec
= bfd_section_from_elf_index (abfd
, isym
.st_shndx
);
784 toff
= isym
.st_value
;
789 struct elf_link_hash_entry
*h
;
790 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
792 indx
= ELFNN_R_SYM (irel
->r_info
) - symtab_hdr
->sh_info
;
793 h
= elf_sym_hashes (abfd
)[indx
];
794 BFD_ASSERT (h
!= NULL
);
796 while (h
->root
.type
== bfd_link_hash_indirect
797 || h
->root
.type
== bfd_link_hash_warning
)
798 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
800 dyn_i
= get_dyn_sym_info (ia64_info
, h
, abfd
, irel
, false);
802 /* For branches to dynamic symbols, we're interested instead
803 in a branch to the PLT entry. */
804 if (dyn_i
&& dyn_i
->want_plt2
)
806 tsec
= ia64_info
->plt_sec
;
807 toff
= dyn_i
->plt2_offset
;
811 /* We can't do anthing with undefined symbols. */
812 if (h
->root
.type
== bfd_link_hash_undefined
813 || h
->root
.type
== bfd_link_hash_undefweak
)
816 tsec
= h
->root
.u
.def
.section
;
817 toff
= h
->root
.u
.def
.value
;
821 symaddr
= (tsec
->output_section
->vma
822 + tsec
->output_offset
826 roff
= irel
->r_offset
;
827 reladdr
= (sec
->output_section
->vma
829 + roff
) & (bfd_vma
) -4;
831 /* If the branch is in range, no need to do anything. */
832 if ((bfd_signed_vma
) (symaddr
- reladdr
) >= -0x1000000
833 && (bfd_signed_vma
) (symaddr
- reladdr
) <= 0x0FFFFF0)
836 /* If the branch and target are in the same section, you've
837 got one honking big section and we can't help you. You'll
838 get an error message later. */
842 /* Look for an existing fixup to this address. */
843 for (f
= fixups
; f
; f
= f
->next
)
844 if (f
->tsec
== tsec
&& f
->toff
== toff
)
849 /* Two alternatives: If it's a branch to a PLT entry, we can
850 make a copy of the FULL_PLT entry. Otherwise, we'll have
851 to use a `brl' insn to get where we're going. */
855 if (tsec
== ia64_info
->plt_sec
)
856 size
= sizeof (plt_full_entry
);
860 size
= sizeof (oor_brl
);
862 size
= sizeof (oor_ip
);
866 /* Resize the current section to make room for the new branch. */
867 trampoff
= (sec
->_cooked_size
+ 15) & (bfd_vma
) -16;
868 amt
= trampoff
+ size
;
869 contents
= (bfd_byte
*) bfd_realloc (contents
, amt
);
870 if (contents
== NULL
)
872 sec
->_cooked_size
= amt
;
874 if (tsec
== ia64_info
->plt_sec
)
876 memcpy (contents
+ trampoff
, plt_full_entry
, size
);
878 /* Hijack the old relocation for use as the PLTOFF reloc. */
879 irel
->r_info
= ELFNN_R_INFO (ELFNN_R_SYM (irel
->r_info
),
881 irel
->r_offset
= trampoff
;
886 memcpy (contents
+ trampoff
, oor_brl
, size
);
887 irel
->r_info
= ELFNN_R_INFO (ELFNN_R_SYM (irel
->r_info
),
889 irel
->r_offset
= trampoff
+ 2;
891 memcpy (contents
+ trampoff
, oor_ip
, size
);
892 irel
->r_info
= ELFNN_R_INFO (ELFNN_R_SYM (irel
->r_info
),
894 irel
->r_addend
-= 16;
895 irel
->r_offset
= trampoff
+ 2;
899 /* Record the fixup so we don't do it again this section. */
900 f
= (struct one_fixup
*) bfd_malloc ((bfd_size_type
) sizeof (*f
));
904 f
->trampoff
= trampoff
;
909 /* Nop out the reloc, since we're finalizing things here. */
910 irel
->r_info
= ELFNN_R_INFO (0, R_IA64_NONE
);
913 /* Fix up the existing branch to hit the trampoline. Hope like
914 hell this doesn't overflow too. */
915 if (elfNN_ia64_install_value (abfd
, contents
+ roff
,
916 f
->trampoff
- (roff
& (bfd_vma
) -4),
917 R_IA64_PCREL21B
) != bfd_reloc_ok
)
920 changed_contents
= true;
921 changed_relocs
= true;
924 /* Clean up and go home. */
927 struct one_fixup
*f
= fixups
;
928 fixups
= fixups
->next
;
933 elf_section_data (sec
)->relocs
= internal_relocs
;
934 else if (free_relocs
!= NULL
)
937 if (changed_contents
)
938 elf_section_data (sec
)->this_hdr
.contents
= contents
;
939 else if (free_contents
!= NULL
)
941 if (! link_info
->keep_memory
)
942 free (free_contents
);
945 /* Cache the section contents for elf_link_input_bfd. */
946 elf_section_data (sec
)->this_hdr
.contents
= contents
;
950 if (shndx_buf
!= NULL
)
953 if (free_extsyms
!= NULL
)
955 if (! link_info
->keep_memory
)
959 /* Cache the symbols for elf_link_input_bfd. */
960 symtab_hdr
->contents
= (unsigned char *) extsyms
;
964 *again
= changed_contents
|| changed_relocs
;
968 if (free_relocs
!= NULL
)
970 if (free_contents
!= NULL
)
971 free (free_contents
);
972 if (shndx_buf
!= NULL
)
974 if (free_extsyms
!= NULL
)
979 /* Return true if NAME is an unwind table section name. */
981 static inline boolean
982 is_unwind_section_name (abfd
, name
)
986 size_t len1
, len2
, len3
;
988 if (elfNN_ia64_hpux_vec (abfd
->xvec
)
989 && !strcmp (name
, ELF_STRING_ia64_unwind_hdr
))
992 len1
= sizeof (ELF_STRING_ia64_unwind
) - 1;
993 len2
= sizeof (ELF_STRING_ia64_unwind_info
) - 1;
994 len3
= sizeof (ELF_STRING_ia64_unwind_once
) - 1;
995 return ((strncmp (name
, ELF_STRING_ia64_unwind
, len1
) == 0
996 && strncmp (name
, ELF_STRING_ia64_unwind_info
, len2
) != 0)
997 || strncmp (name
, ELF_STRING_ia64_unwind_once
, len3
) == 0);
1000 /* Handle an IA-64 specific section when reading an object file. This
1001 is called when elfcode.h finds a section with an unknown type. */
1004 elfNN_ia64_section_from_shdr (abfd
, hdr
, name
)
1006 ElfNN_Internal_Shdr
*hdr
;
1011 /* There ought to be a place to keep ELF backend specific flags, but
1012 at the moment there isn't one. We just keep track of the
1013 sections by their name, instead. Fortunately, the ABI gives
1014 suggested names for all the MIPS specific sections, so we will
1015 probably get away with this. */
1016 switch (hdr
->sh_type
)
1018 case SHT_IA_64_UNWIND
:
1019 case SHT_INIT_ARRAY
:
1020 case SHT_FINI_ARRAY
:
1021 case SHT_PREINIT_ARRAY
:
1022 case SHT_IA_64_HP_OPT_ANOT
:
1026 if (strcmp (name
, ELF_STRING_ia64_archext
) != 0)
1034 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
))
1036 newsect
= hdr
->bfd_section
;
1041 /* Convert IA-64 specific section flags to bfd internal section flags. */
1043 /* ??? There is no bfd internal flag equivalent to the SHF_IA_64_NORECOV
1047 elfNN_ia64_section_flags (flags
, hdr
)
1049 ElfNN_Internal_Shdr
*hdr
;
1051 if (hdr
->sh_flags
& SHF_IA_64_SHORT
)
1052 *flags
|= SEC_SMALL_DATA
;
1057 /* Set the correct type for an IA-64 ELF section. We do this by the
1058 section name, which is a hack, but ought to work. */
1061 elfNN_ia64_fake_sections (abfd
, hdr
, sec
)
1062 bfd
*abfd ATTRIBUTE_UNUSED
;
1063 ElfNN_Internal_Shdr
*hdr
;
1066 register const char *name
;
1068 name
= bfd_get_section_name (abfd
, sec
);
1070 if (is_unwind_section_name (abfd
, name
))
1072 /* We don't have the sections numbered at this point, so sh_info
1073 is set later, in elfNN_ia64_final_write_processing. */
1074 hdr
->sh_type
= SHT_IA_64_UNWIND
;
1075 hdr
->sh_flags
|= SHF_LINK_ORDER
;
1077 else if (strcmp (name
, ELF_STRING_ia64_archext
) == 0)
1078 hdr
->sh_type
= SHT_IA_64_EXT
;
1079 else if (strcmp (name
, ".init_array") == 0)
1080 hdr
->sh_type
= SHT_INIT_ARRAY
;
1081 else if (strcmp (name
, ".fini_array") == 0)
1082 hdr
->sh_type
= SHT_FINI_ARRAY
;
1083 else if (strcmp (name
, ".preinit_array") == 0)
1084 hdr
->sh_type
= SHT_PREINIT_ARRAY
;
1085 else if (strcmp (name
, ".HP.opt_annot") == 0)
1086 hdr
->sh_type
= SHT_IA_64_HP_OPT_ANOT
;
1087 else if (strcmp (name
, ".reloc") == 0)
1089 * This is an ugly, but unfortunately necessary hack that is
1090 * needed when producing EFI binaries on IA-64. It tells
1091 * elf.c:elf_fake_sections() not to consider ".reloc" as a section
1092 * containing ELF relocation info. We need this hack in order to
1093 * be able to generate ELF binaries that can be translated into
1094 * EFI applications (which are essentially COFF objects). Those
1095 * files contain a COFF ".reloc" section inside an ELFNN object,
1096 * which would normally cause BFD to segfault because it would
1097 * attempt to interpret this section as containing relocation
1098 * entries for section "oc". With this hack enabled, ".reloc"
1099 * will be treated as a normal data section, which will avoid the
1100 * segfault. However, you won't be able to create an ELFNN binary
1101 * with a section named "oc" that needs relocations, but that's
1102 * the kind of ugly side-effects you get when detecting section
1103 * types based on their names... In practice, this limitation is
1106 hdr
->sh_type
= SHT_PROGBITS
;
1108 if (sec
->flags
& SEC_SMALL_DATA
)
1109 hdr
->sh_flags
|= SHF_IA_64_SHORT
;
1114 /* The final processing done just before writing out an IA-64 ELF
1118 elfNN_ia64_final_write_processing (abfd
, linker
)
1120 boolean linker ATTRIBUTE_UNUSED
;
1122 Elf_Internal_Shdr
*hdr
;
1124 asection
*text_sect
, *s
;
1127 for (s
= abfd
->sections
; s
; s
= s
->next
)
1129 hdr
= &elf_section_data (s
)->this_hdr
;
1130 switch (hdr
->sh_type
)
1132 case SHT_IA_64_UNWIND
:
1133 /* See comments in gas/config/tc-ia64.c:dot_endp on why we
1135 sname
= bfd_get_section_name (abfd
, s
);
1136 len
= sizeof (ELF_STRING_ia64_unwind
) - 1;
1137 if (sname
&& strncmp (sname
, ELF_STRING_ia64_unwind
, len
) == 0)
1141 if (sname
[0] == '\0')
1142 /* .IA_64.unwind -> .text */
1143 text_sect
= bfd_get_section_by_name (abfd
, ".text");
1145 /* .IA_64.unwindFOO -> FOO */
1146 text_sect
= bfd_get_section_by_name (abfd
, sname
);
1149 && (len
= sizeof (ELF_STRING_ia64_unwind_once
) - 1,
1150 strncmp (sname
, ELF_STRING_ia64_unwind_once
, len
)) == 0)
1152 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.t.FOO */
1153 size_t len2
= sizeof (".gnu.linkonce.t.") - 1;
1154 char *once_name
= bfd_malloc (len2
+ strlen (sname
+ len
) + 1);
1156 if (once_name
!= NULL
)
1158 memcpy (once_name
, ".gnu.linkonce.t.", len2
);
1159 strcpy (once_name
+ len2
, sname
+ len
);
1160 text_sect
= bfd_get_section_by_name (abfd
, once_name
);
1164 /* Should only happen if we run out of memory, in
1165 which case we're probably toast anyway. Try to
1166 cope by finding the section the slow way. */
1167 for (text_sect
= abfd
->sections
;
1169 text_sect
= text_sect
->next
)
1171 if (strncmp (bfd_section_name (abfd
, text_sect
),
1172 ".gnu.linkonce.t.", len2
) == 0
1173 && strcmp (bfd_section_name (abfd
, text_sect
) + len2
,
1179 /* last resort: fall back on .text */
1180 text_sect
= bfd_get_section_by_name (abfd
, ".text");
1184 /* The IA-64 processor-specific ABI requires setting
1185 sh_link to the unwind section, whereas HP-UX requires
1186 sh_info to do so. For maximum compatibility, we'll
1187 set both for now... */
1188 hdr
->sh_link
= elf_section_data (text_sect
)->this_idx
;
1189 hdr
->sh_info
= elf_section_data (text_sect
)->this_idx
;
1196 /* Hook called by the linker routine which adds symbols from an object
1197 file. We use it to put .comm items in .sbss, and not .bss. */
1200 elfNN_ia64_add_symbol_hook (abfd
, info
, sym
, namep
, flagsp
, secp
, valp
)
1202 struct bfd_link_info
*info
;
1203 const Elf_Internal_Sym
*sym
;
1204 const char **namep ATTRIBUTE_UNUSED
;
1205 flagword
*flagsp ATTRIBUTE_UNUSED
;
1209 if (sym
->st_shndx
== SHN_COMMON
1210 && !info
->relocateable
1211 && sym
->st_size
<= elf_gp_size (abfd
))
1213 /* Common symbols less than or equal to -G nn bytes are
1214 automatically put into .sbss. */
1216 asection
*scomm
= bfd_get_section_by_name (abfd
, ".scommon");
1220 scomm
= bfd_make_section (abfd
, ".scommon");
1222 || !bfd_set_section_flags (abfd
, scomm
, (SEC_ALLOC
1224 | SEC_LINKER_CREATED
)))
1229 *valp
= sym
->st_size
;
1236 elfNN_ia64_aix_vec (const bfd_target
*vec
)
1238 extern const bfd_target bfd_elfNN_ia64_aix_little_vec
;
1239 extern const bfd_target bfd_elfNN_ia64_aix_big_vec
;
1241 return (/**/vec
== & bfd_elfNN_ia64_aix_little_vec
1242 || vec
== & bfd_elfNN_ia64_aix_big_vec
);
1245 /* Hook called by the linker routine which adds symbols from an object
1246 file. We use it to handle OS-specific symbols. */
1249 elfNN_ia64_aix_add_symbol_hook (abfd
, info
, sym
, namep
, flagsp
, secp
, valp
)
1251 struct bfd_link_info
*info
;
1252 const Elf_Internal_Sym
*sym
;
1258 if (strcmp (*namep
, "__GLOB_DATA_PTR") == 0)
1260 /* Define __GLOB_DATA_PTR when it is encountered. This is expected to
1261 be a linker-defined symbol by the Aix C runtime startup code. IBM sez
1262 no one else should use it b/c it is undocumented. */
1263 struct elf_link_hash_entry
*h
;
1265 h
= elf_link_hash_lookup (elf_hash_table (info
), *namep
,
1266 false, false, false);
1269 struct elf_backend_data
*bed
;
1270 struct elfNN_ia64_link_hash_table
*ia64_info
;
1272 bed
= get_elf_backend_data (abfd
);
1273 ia64_info
= elfNN_ia64_hash_table (info
);
1275 if (!(_bfd_generic_link_add_one_symbol
1276 (info
, abfd
, *namep
, BSF_GLOBAL
,
1277 bfd_get_section_by_name (abfd
, ".bss"),
1278 bed
->got_symbol_offset
, (const char *) NULL
, false,
1279 bed
->collect
, (struct bfd_link_hash_entry
**) &h
)))
1282 h
->elf_link_hash_flags
|= ELF_LINK_HASH_DEF_REGULAR
;
1283 h
->type
= STT_OBJECT
;
1285 if (! _bfd_elf_link_record_dynamic_symbol (info
, h
))
1291 else if (sym
->st_shndx
== SHN_LOOS
)
1295 /* SHN_AIX_SYSCALL: Treat this as any other symbol. The special symbol
1296 is only relevant when compiling code for extended system calls.
1297 Replace the "special" section with .text, if possible.
1298 Note that these symbols are always assumed to be in .text. */
1299 for (i
= 1; i
< elf_numsections (abfd
); i
++)
1301 asection
* sec
= bfd_section_from_elf_index (abfd
, i
);
1303 if (sec
&& strcmp (sec
->name
, ".text") == 0)
1311 *secp
= bfd_abs_section_ptr
;
1313 *valp
= sym
->st_size
;
1319 return elfNN_ia64_add_symbol_hook (abfd
, info
, sym
,
1320 namep
, flagsp
, secp
, valp
);
1325 elfNN_ia64_aix_link_add_symbols (abfd
, info
)
1327 struct bfd_link_info
*info
;
1329 /* Make sure dynamic sections are always created. */
1330 if (! elf_hash_table (info
)->dynamic_sections_created
1331 && abfd
->xvec
== info
->hash
->creator
)
1333 if (! bfd_elfNN_link_create_dynamic_sections (abfd
, info
))
1337 /* Now do the standard call. */
1338 return bfd_elfNN_bfd_link_add_symbols (abfd
, info
);
1341 /* Return the number of additional phdrs we will need. */
1344 elfNN_ia64_additional_program_headers (abfd
)
1350 /* See if we need a PT_IA_64_ARCHEXT segment. */
1351 s
= bfd_get_section_by_name (abfd
, ELF_STRING_ia64_archext
);
1352 if (s
&& (s
->flags
& SEC_LOAD
))
1355 /* Count how many PT_IA_64_UNWIND segments we need. */
1356 for (s
= abfd
->sections
; s
; s
= s
->next
)
1357 if (is_unwind_section_name (abfd
, s
->name
) && (s
->flags
& SEC_LOAD
))
1364 elfNN_ia64_modify_segment_map (abfd
)
1367 struct elf_segment_map
*m
, **pm
;
1368 Elf_Internal_Shdr
*hdr
;
1370 boolean unwind_found
;
1371 asection
*unwind_sec
;
1373 /* If we need a PT_IA_64_ARCHEXT segment, it must come before
1374 all PT_LOAD segments. */
1375 s
= bfd_get_section_by_name (abfd
, ELF_STRING_ia64_archext
);
1376 if (s
&& (s
->flags
& SEC_LOAD
))
1378 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
1379 if (m
->p_type
== PT_IA_64_ARCHEXT
)
1383 m
= ((struct elf_segment_map
*)
1384 bfd_zalloc (abfd
, (bfd_size_type
) sizeof *m
));
1388 m
->p_type
= PT_IA_64_ARCHEXT
;
1392 /* We want to put it after the PHDR and INTERP segments. */
1393 pm
= &elf_tdata (abfd
)->segment_map
;
1395 && ((*pm
)->p_type
== PT_PHDR
1396 || (*pm
)->p_type
== PT_INTERP
))
1404 /* Install PT_IA_64_UNWIND segments, if needed. */
1405 for (s
= abfd
->sections
; s
; s
= s
->next
)
1407 hdr
= &elf_section_data (s
)->this_hdr
;
1408 if (hdr
->sh_type
!= SHT_IA_64_UNWIND
)
1411 if (s
&& (s
->flags
& SEC_LOAD
))
1413 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
1414 if (m
->p_type
== PT_IA_64_UNWIND
)
1416 /* Look through all sections in the unwind segment
1417 for a match since there may be multiple sections
1420 unwind_sec
= m
->sections
[0];
1421 unwind_found
= false;
1422 while (unwind_sec
!= NULL
&& !unwind_found
)
1424 if (unwind_sec
== s
)
1425 unwind_found
= true;
1427 unwind_sec
= unwind_sec
-> next
;
1435 m
= ((struct elf_segment_map
*)
1436 bfd_zalloc (abfd
, (bfd_size_type
) sizeof *m
));
1440 m
->p_type
= PT_IA_64_UNWIND
;
1445 /* We want to put it last. */
1446 pm
= &elf_tdata (abfd
)->segment_map
;
1454 /* Turn on PF_IA_64_NORECOV if needed. This involves traversing all of
1455 the input sections for each output section in the segment and testing
1456 for SHF_IA_64_NORECOV on each. */
1457 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
1458 if (m
->p_type
== PT_LOAD
)
1461 for (i
= m
->count
- 1; i
>= 0; --i
)
1463 struct bfd_link_order
*order
= m
->sections
[i
]->link_order_head
;
1466 if (order
->type
== bfd_indirect_link_order
)
1468 asection
*is
= order
->u
.indirect
.section
;
1469 bfd_vma flags
= elf_section_data(is
)->this_hdr
.sh_flags
;
1470 if (flags
& SHF_IA_64_NORECOV
)
1472 m
->p_flags
|= PF_IA_64_NORECOV
;
1476 order
= order
->next
;
1485 /* According to the Tahoe assembler spec, all labels starting with a
1489 elfNN_ia64_is_local_label_name (abfd
, name
)
1490 bfd
*abfd ATTRIBUTE_UNUSED
;
1493 return name
[0] == '.';
1496 /* Should we do dynamic things to this symbol? */
1499 elfNN_ia64_dynamic_symbol_p (h
, info
)
1500 struct elf_link_hash_entry
*h
;
1501 struct bfd_link_info
*info
;
1506 while (h
->root
.type
== bfd_link_hash_indirect
1507 || h
->root
.type
== bfd_link_hash_warning
)
1508 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1510 if (h
->dynindx
== -1)
1512 switch (ELF_ST_VISIBILITY (h
->other
))
1519 if (h
->root
.type
== bfd_link_hash_undefweak
1520 || h
->root
.type
== bfd_link_hash_defweak
)
1523 if ((info
->shared
&& (!info
->symbolic
|| info
->allow_shlib_undefined
))
1524 || ((h
->elf_link_hash_flags
1525 & (ELF_LINK_HASH_DEF_DYNAMIC
| ELF_LINK_HASH_REF_REGULAR
))
1526 == (ELF_LINK_HASH_DEF_DYNAMIC
| ELF_LINK_HASH_REF_REGULAR
)))
1533 elfNN_ia64_local_hash_table_init (ht
, abfd
, new)
1534 struct elfNN_ia64_local_hash_table
*ht
;
1535 bfd
*abfd ATTRIBUTE_UNUSED
;
1536 new_hash_entry_func
new;
1538 memset (ht
, 0, sizeof (*ht
));
1539 return bfd_hash_table_init (&ht
->root
, new);
1542 static struct bfd_hash_entry
*
1543 elfNN_ia64_new_loc_hash_entry (entry
, table
, string
)
1544 struct bfd_hash_entry
*entry
;
1545 struct bfd_hash_table
*table
;
1548 struct elfNN_ia64_local_hash_entry
*ret
;
1549 ret
= (struct elfNN_ia64_local_hash_entry
*) entry
;
1551 /* Allocate the structure if it has not already been allocated by a
1554 ret
= bfd_hash_allocate (table
, sizeof (*ret
));
1559 /* Initialize our local data. All zeros, and definitely easier
1560 than setting a handful of bit fields. */
1561 memset (ret
, 0, sizeof (*ret
));
1563 /* Call the allocation method of the superclass. */
1564 ret
= ((struct elfNN_ia64_local_hash_entry
*)
1565 bfd_hash_newfunc ((struct bfd_hash_entry
*) ret
, table
, string
));
1567 return (struct bfd_hash_entry
*) ret
;
1570 static struct bfd_hash_entry
*
1571 elfNN_ia64_new_elf_hash_entry (entry
, table
, string
)
1572 struct bfd_hash_entry
*entry
;
1573 struct bfd_hash_table
*table
;
1576 struct elfNN_ia64_link_hash_entry
*ret
;
1577 ret
= (struct elfNN_ia64_link_hash_entry
*) entry
;
1579 /* Allocate the structure if it has not already been allocated by a
1582 ret
= bfd_hash_allocate (table
, sizeof (*ret
));
1587 /* Initialize our local data. All zeros, and definitely easier
1588 than setting a handful of bit fields. */
1589 memset (ret
, 0, sizeof (*ret
));
1591 /* Call the allocation method of the superclass. */
1592 ret
= ((struct elfNN_ia64_link_hash_entry
*)
1593 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
1596 return (struct bfd_hash_entry
*) ret
;
1600 elfNN_ia64_hash_copy_indirect (xdir
, xind
)
1601 struct elf_link_hash_entry
*xdir
, *xind
;
1603 struct elfNN_ia64_link_hash_entry
*dir
, *ind
;
1605 dir
= (struct elfNN_ia64_link_hash_entry
*) xdir
;
1606 ind
= (struct elfNN_ia64_link_hash_entry
*) xind
;
1608 /* Copy down any references that we may have already seen to the
1609 symbol which just became indirect. */
1611 dir
->root
.elf_link_hash_flags
|=
1612 (ind
->root
.elf_link_hash_flags
1613 & (ELF_LINK_HASH_REF_DYNAMIC
1614 | ELF_LINK_HASH_REF_REGULAR
1615 | ELF_LINK_HASH_REF_REGULAR_NONWEAK
));
1617 if (ind
->root
.root
.type
!= bfd_link_hash_indirect
)
1620 /* Copy over the got and plt data. This would have been done
1623 if (dir
->info
== NULL
)
1625 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
1627 dir
->info
= dyn_i
= ind
->info
;
1630 /* Fix up the dyn_sym_info pointers to the global symbol. */
1631 for (; dyn_i
; dyn_i
= dyn_i
->next
)
1632 dyn_i
->h
= &dir
->root
;
1634 BFD_ASSERT (ind
->info
== NULL
);
1636 /* Copy over the dynindx. */
1638 if (dir
->root
.dynindx
== -1)
1640 dir
->root
.dynindx
= ind
->root
.dynindx
;
1641 dir
->root
.dynstr_index
= ind
->root
.dynstr_index
;
1642 ind
->root
.dynindx
= -1;
1643 ind
->root
.dynstr_index
= 0;
1645 BFD_ASSERT (ind
->root
.dynindx
== -1);
1649 elfNN_ia64_hash_hide_symbol (info
, xh
)
1650 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1651 struct elf_link_hash_entry
*xh
;
1653 struct elfNN_ia64_link_hash_entry
*h
;
1654 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
1656 h
= (struct elfNN_ia64_link_hash_entry
*)xh
;
1658 h
->root
.elf_link_hash_flags
&= ~ELF_LINK_HASH_NEEDS_PLT
;
1659 if ((h
->root
.elf_link_hash_flags
& ELF_LINK_FORCED_LOCAL
) != 0)
1660 h
->root
.dynindx
= -1;
1662 for (dyn_i
= h
->info
; dyn_i
; dyn_i
= dyn_i
->next
)
1663 dyn_i
->want_plt2
= 0;
1666 /* Create the derived linker hash table. The IA-64 ELF port uses this
1667 derived hash table to keep information specific to the IA-64 ElF
1668 linker (without using static variables). */
1670 static struct bfd_link_hash_table
*
1671 elfNN_ia64_hash_table_create (abfd
)
1674 struct elfNN_ia64_link_hash_table
*ret
;
1676 ret
= bfd_zalloc (abfd
, (bfd_size_type
) sizeof (*ret
));
1679 if (!_bfd_elf_link_hash_table_init (&ret
->root
, abfd
,
1680 elfNN_ia64_new_elf_hash_entry
))
1682 bfd_release (abfd
, ret
);
1686 if (!elfNN_ia64_local_hash_table_init (&ret
->loc_hash_table
, abfd
,
1687 elfNN_ia64_new_loc_hash_entry
))
1689 return &ret
->root
.root
;
1692 /* Look up an entry in a Alpha ELF linker hash table. */
1694 static INLINE
struct elfNN_ia64_local_hash_entry
*
1695 elfNN_ia64_local_hash_lookup(table
, string
, create
, copy
)
1696 struct elfNN_ia64_local_hash_table
*table
;
1698 boolean create
, copy
;
1700 return ((struct elfNN_ia64_local_hash_entry
*)
1701 bfd_hash_lookup (&table
->root
, string
, create
, copy
));
1704 /* Traverse both local and global hash tables. */
1706 struct elfNN_ia64_dyn_sym_traverse_data
1708 boolean (*func
) PARAMS ((struct elfNN_ia64_dyn_sym_info
*, PTR
));
1713 elfNN_ia64_global_dyn_sym_thunk (xentry
, xdata
)
1714 struct bfd_hash_entry
*xentry
;
1717 struct elfNN_ia64_link_hash_entry
*entry
1718 = (struct elfNN_ia64_link_hash_entry
*) xentry
;
1719 struct elfNN_ia64_dyn_sym_traverse_data
*data
1720 = (struct elfNN_ia64_dyn_sym_traverse_data
*) xdata
;
1721 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
1723 for (dyn_i
= entry
->info
; dyn_i
; dyn_i
= dyn_i
->next
)
1724 if (! (*data
->func
) (dyn_i
, data
->data
))
1730 elfNN_ia64_local_dyn_sym_thunk (xentry
, xdata
)
1731 struct bfd_hash_entry
*xentry
;
1734 struct elfNN_ia64_local_hash_entry
*entry
1735 = (struct elfNN_ia64_local_hash_entry
*) xentry
;
1736 struct elfNN_ia64_dyn_sym_traverse_data
*data
1737 = (struct elfNN_ia64_dyn_sym_traverse_data
*) xdata
;
1738 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
1740 for (dyn_i
= entry
->info
; dyn_i
; dyn_i
= dyn_i
->next
)
1741 if (! (*data
->func
) (dyn_i
, data
->data
))
1747 elfNN_ia64_dyn_sym_traverse (ia64_info
, func
, data
)
1748 struct elfNN_ia64_link_hash_table
*ia64_info
;
1749 boolean (*func
) PARAMS ((struct elfNN_ia64_dyn_sym_info
*, PTR
));
1752 struct elfNN_ia64_dyn_sym_traverse_data xdata
;
1757 elf_link_hash_traverse (&ia64_info
->root
,
1758 elfNN_ia64_global_dyn_sym_thunk
, &xdata
);
1759 bfd_hash_traverse (&ia64_info
->loc_hash_table
.root
,
1760 elfNN_ia64_local_dyn_sym_thunk
, &xdata
);
1764 elfNN_ia64_create_dynamic_sections (abfd
, info
)
1766 struct bfd_link_info
*info
;
1768 struct elfNN_ia64_link_hash_table
*ia64_info
;
1771 if (! _bfd_elf_create_dynamic_sections (abfd
, info
))
1774 ia64_info
= elfNN_ia64_hash_table (info
);
1776 ia64_info
->plt_sec
= bfd_get_section_by_name (abfd
, ".plt");
1777 ia64_info
->got_sec
= bfd_get_section_by_name (abfd
, ".got");
1780 flagword flags
= bfd_get_section_flags (abfd
, ia64_info
->got_sec
);
1781 bfd_set_section_flags (abfd
, ia64_info
->got_sec
, SEC_SMALL_DATA
| flags
);
1784 if (!get_pltoff (abfd
, info
, ia64_info
))
1787 s
= bfd_make_section(abfd
, ".rela.IA_64.pltoff");
1789 || !bfd_set_section_flags (abfd
, s
, (SEC_ALLOC
| SEC_LOAD
1792 | SEC_LINKER_CREATED
1794 || !bfd_set_section_alignment (abfd
, s
, 3))
1796 ia64_info
->rel_pltoff_sec
= s
;
1798 s
= bfd_make_section(abfd
, ".rela.got");
1800 || !bfd_set_section_flags (abfd
, s
, (SEC_ALLOC
| SEC_LOAD
1803 | SEC_LINKER_CREATED
1805 || !bfd_set_section_alignment (abfd
, s
, 3))
1807 ia64_info
->rel_got_sec
= s
;
1812 /* Find and/or create a hash entry for local symbol. */
1813 static struct elfNN_ia64_local_hash_entry
*
1814 get_local_sym_hash (ia64_info
, abfd
, rel
, create
)
1815 struct elfNN_ia64_link_hash_table
*ia64_info
;
1817 const Elf_Internal_Rela
*rel
;
1822 struct elfNN_ia64_local_hash_entry
*ret
;
1824 /* Construct a string for use in the elfNN_ia64_local_hash_table.
1825 name describes what was once anonymous memory. */
1827 len
= sizeof (void*)*2 + 1 + sizeof (bfd_vma
)*4 + 1 + 1;
1828 len
+= 10; /* %p slop */
1830 addr_name
= bfd_malloc (len
);
1831 if (addr_name
== NULL
)
1833 sprintf (addr_name
, "%p:%lx",
1834 (void *) abfd
, (unsigned long) ELFNN_R_SYM (rel
->r_info
));
1836 /* Collect the canonical entry data for this address. */
1837 ret
= elfNN_ia64_local_hash_lookup (&ia64_info
->loc_hash_table
,
1838 addr_name
, create
, create
);
1843 /* Find and/or create a descriptor for dynamic symbol info. This will
1844 vary based on global or local symbol, and the addend to the reloc. */
1846 static struct elfNN_ia64_dyn_sym_info
*
1847 get_dyn_sym_info (ia64_info
, h
, abfd
, rel
, create
)
1848 struct elfNN_ia64_link_hash_table
*ia64_info
;
1849 struct elf_link_hash_entry
*h
;
1851 const Elf_Internal_Rela
*rel
;
1854 struct elfNN_ia64_dyn_sym_info
**pp
;
1855 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
1856 bfd_vma addend
= rel
? rel
->r_addend
: 0;
1859 pp
= &((struct elfNN_ia64_link_hash_entry
*)h
)->info
;
1862 struct elfNN_ia64_local_hash_entry
*loc_h
;
1864 loc_h
= get_local_sym_hash (ia64_info
, abfd
, rel
, create
);
1870 for (dyn_i
= *pp
; dyn_i
&& dyn_i
->addend
!= addend
; dyn_i
= *pp
)
1873 if (dyn_i
== NULL
&& create
)
1875 dyn_i
= ((struct elfNN_ia64_dyn_sym_info
*)
1876 bfd_zalloc (abfd
, (bfd_size_type
) sizeof *dyn_i
));
1878 dyn_i
->addend
= addend
;
1885 get_got (abfd
, info
, ia64_info
)
1887 struct bfd_link_info
*info
;
1888 struct elfNN_ia64_link_hash_table
*ia64_info
;
1893 got
= ia64_info
->got_sec
;
1898 dynobj
= ia64_info
->root
.dynobj
;
1900 ia64_info
->root
.dynobj
= dynobj
= abfd
;
1901 if (!_bfd_elf_create_got_section (dynobj
, info
))
1904 got
= bfd_get_section_by_name (dynobj
, ".got");
1906 ia64_info
->got_sec
= got
;
1908 flags
= bfd_get_section_flags (abfd
, got
);
1909 bfd_set_section_flags (abfd
, got
, SEC_SMALL_DATA
| flags
);
1915 /* Create function descriptor section (.opd). This section is called .opd
1916 because it contains "official prodecure descriptors". The "official"
1917 refers to the fact that these descriptors are used when taking the address
1918 of a procedure, thus ensuring a unique address for each procedure. */
1921 get_fptr (abfd
, info
, ia64_info
)
1923 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1924 struct elfNN_ia64_link_hash_table
*ia64_info
;
1929 fptr
= ia64_info
->fptr_sec
;
1932 dynobj
= ia64_info
->root
.dynobj
;
1934 ia64_info
->root
.dynobj
= dynobj
= abfd
;
1936 fptr
= bfd_make_section (dynobj
, ".opd");
1938 || !bfd_set_section_flags (dynobj
, fptr
,
1944 | SEC_LINKER_CREATED
))
1945 || !bfd_set_section_alignment (abfd
, fptr
, 4))
1951 ia64_info
->fptr_sec
= fptr
;
1958 get_pltoff (abfd
, info
, ia64_info
)
1960 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1961 struct elfNN_ia64_link_hash_table
*ia64_info
;
1966 pltoff
= ia64_info
->pltoff_sec
;
1969 dynobj
= ia64_info
->root
.dynobj
;
1971 ia64_info
->root
.dynobj
= dynobj
= abfd
;
1973 pltoff
= bfd_make_section (dynobj
, ELF_STRING_ia64_pltoff
);
1975 || !bfd_set_section_flags (dynobj
, pltoff
,
1981 | SEC_LINKER_CREATED
))
1982 || !bfd_set_section_alignment (abfd
, pltoff
, 4))
1988 ia64_info
->pltoff_sec
= pltoff
;
1995 get_reloc_section (abfd
, ia64_info
, sec
, create
)
1997 struct elfNN_ia64_link_hash_table
*ia64_info
;
2001 const char *srel_name
;
2005 srel_name
= (bfd_elf_string_from_elf_section
2006 (abfd
, elf_elfheader(abfd
)->e_shstrndx
,
2007 elf_section_data(sec
)->rel_hdr
.sh_name
));
2008 if (srel_name
== NULL
)
2011 BFD_ASSERT ((strncmp (srel_name
, ".rela", 5) == 0
2012 && strcmp (bfd_get_section_name (abfd
, sec
),
2014 || (strncmp (srel_name
, ".rel", 4) == 0
2015 && strcmp (bfd_get_section_name (abfd
, sec
),
2016 srel_name
+4) == 0));
2018 dynobj
= ia64_info
->root
.dynobj
;
2020 ia64_info
->root
.dynobj
= dynobj
= abfd
;
2022 srel
= bfd_get_section_by_name (dynobj
, srel_name
);
2023 if (srel
== NULL
&& create
)
2025 srel
= bfd_make_section (dynobj
, srel_name
);
2027 || !bfd_set_section_flags (dynobj
, srel
,
2032 | SEC_LINKER_CREATED
2034 || !bfd_set_section_alignment (dynobj
, srel
, 3))
2038 if (sec
->flags
& SEC_READONLY
)
2039 ia64_info
->reltext
= 1;
2045 count_dyn_reloc (abfd
, dyn_i
, srel
, type
)
2047 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2051 struct elfNN_ia64_dyn_reloc_entry
*rent
;
2053 for (rent
= dyn_i
->reloc_entries
; rent
; rent
= rent
->next
)
2054 if (rent
->srel
== srel
&& rent
->type
== type
)
2059 rent
= ((struct elfNN_ia64_dyn_reloc_entry
*)
2060 bfd_alloc (abfd
, (bfd_size_type
) sizeof (*rent
)));
2064 rent
->next
= dyn_i
->reloc_entries
;
2068 dyn_i
->reloc_entries
= rent
;
2076 elfNN_ia64_check_relocs (abfd
, info
, sec
, relocs
)
2078 struct bfd_link_info
*info
;
2080 const Elf_Internal_Rela
*relocs
;
2082 struct elfNN_ia64_link_hash_table
*ia64_info
;
2083 const Elf_Internal_Rela
*relend
;
2084 Elf_Internal_Shdr
*symtab_hdr
;
2085 const Elf_Internal_Rela
*rel
;
2086 asection
*got
, *fptr
, *srel
;
2088 if (info
->relocateable
)
2091 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2092 ia64_info
= elfNN_ia64_hash_table (info
);
2094 got
= fptr
= srel
= NULL
;
2096 relend
= relocs
+ sec
->reloc_count
;
2097 for (rel
= relocs
; rel
< relend
; ++rel
)
2106 NEED_LTOFF_FPTR
= 64,
2109 struct elf_link_hash_entry
*h
= NULL
;
2110 unsigned long r_symndx
= ELFNN_R_SYM (rel
->r_info
);
2111 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2113 boolean maybe_dynamic
;
2114 int dynrel_type
= R_IA64_NONE
;
2116 if (r_symndx
>= symtab_hdr
->sh_info
)
2118 /* We're dealing with a global symbol -- find its hash entry
2119 and mark it as being referenced. */
2120 long indx
= r_symndx
- symtab_hdr
->sh_info
;
2121 h
= elf_sym_hashes (abfd
)[indx
];
2122 while (h
->root
.type
== bfd_link_hash_indirect
2123 || h
->root
.type
== bfd_link_hash_warning
)
2124 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2126 h
->elf_link_hash_flags
|= ELF_LINK_HASH_REF_REGULAR
;
2129 /* We can only get preliminary data on whether a symbol is
2130 locally or externally defined, as not all of the input files
2131 have yet been processed. Do something with what we know, as
2132 this may help reduce memory usage and processing time later. */
2133 maybe_dynamic
= false;
2134 if (h
&& ((info
->shared
2135 && (!info
->symbolic
|| info
->allow_shlib_undefined
))
2136 || ! (h
->elf_link_hash_flags
& ELF_LINK_HASH_DEF_REGULAR
)
2137 || h
->root
.type
== bfd_link_hash_defweak
2138 || elfNN_ia64_aix_vec (abfd
->xvec
)))
2139 maybe_dynamic
= true;
2142 switch (ELFNN_R_TYPE (rel
->r_info
))
2144 case R_IA64_TPREL22
:
2145 case R_IA64_TPREL64MSB
:
2146 case R_IA64_TPREL64LSB
:
2147 case R_IA64_LTOFF_TP22
:
2150 case R_IA64_LTOFF_FPTR22
:
2151 case R_IA64_LTOFF_FPTR64I
:
2152 case R_IA64_LTOFF_FPTR32MSB
:
2153 case R_IA64_LTOFF_FPTR32LSB
:
2154 case R_IA64_LTOFF_FPTR64MSB
:
2155 case R_IA64_LTOFF_FPTR64LSB
:
2156 need_entry
= NEED_FPTR
| NEED_GOT
| NEED_LTOFF_FPTR
;
2159 case R_IA64_FPTR64I
:
2160 case R_IA64_FPTR32MSB
:
2161 case R_IA64_FPTR32LSB
:
2162 case R_IA64_FPTR64MSB
:
2163 case R_IA64_FPTR64LSB
:
2164 if (info
->shared
|| h
|| elfNN_ia64_aix_vec (abfd
->xvec
))
2165 need_entry
= NEED_FPTR
| NEED_DYNREL
;
2167 need_entry
= NEED_FPTR
;
2168 dynrel_type
= R_IA64_FPTR64LSB
;
2171 case R_IA64_LTOFF22
:
2172 case R_IA64_LTOFF22X
:
2173 case R_IA64_LTOFF64I
:
2174 need_entry
= NEED_GOT
;
2177 case R_IA64_PLTOFF22
:
2178 case R_IA64_PLTOFF64I
:
2179 case R_IA64_PLTOFF64MSB
:
2180 case R_IA64_PLTOFF64LSB
:
2181 need_entry
= NEED_PLTOFF
;
2185 need_entry
|= NEED_MIN_PLT
;
2189 (*info
->callbacks
->warning
)
2190 (info
, _("@pltoff reloc against local symbol"), 0,
2191 abfd
, 0, (bfd_vma
) 0);
2195 case R_IA64_PCREL21B
:
2196 case R_IA64_PCREL60B
:
2197 /* Depending on where this symbol is defined, we may or may not
2198 need a full plt entry. Only skip if we know we'll not need
2199 the entry -- static or symbolic, and the symbol definition
2200 has already been seen. */
2201 if (maybe_dynamic
&& rel
->r_addend
== 0)
2202 need_entry
= NEED_FULL_PLT
;
2208 case R_IA64_DIR32MSB
:
2209 case R_IA64_DIR32LSB
:
2210 case R_IA64_DIR64MSB
:
2211 case R_IA64_DIR64LSB
:
2212 /* Shared objects will always need at least a REL relocation. */
2213 if (info
->shared
|| maybe_dynamic
2214 || (elfNN_ia64_aix_vec (abfd
->xvec
)
2215 && (!h
|| strcmp (h
->root
.root
.string
,
2216 "__GLOB_DATA_PTR") != 0)))
2217 need_entry
= NEED_DYNREL
;
2218 dynrel_type
= R_IA64_DIR64LSB
;
2221 case R_IA64_IPLTMSB
:
2222 case R_IA64_IPLTLSB
:
2223 /* Shared objects will always need at least a REL relocation. */
2224 if (info
->shared
|| maybe_dynamic
)
2225 need_entry
= NEED_DYNREL
;
2226 dynrel_type
= R_IA64_IPLTLSB
;
2229 case R_IA64_PCREL22
:
2230 case R_IA64_PCREL64I
:
2231 case R_IA64_PCREL32MSB
:
2232 case R_IA64_PCREL32LSB
:
2233 case R_IA64_PCREL64MSB
:
2234 case R_IA64_PCREL64LSB
:
2236 need_entry
= NEED_DYNREL
;
2237 dynrel_type
= R_IA64_PCREL64LSB
;
2244 if ((need_entry
& NEED_FPTR
) != 0
2247 (*info
->callbacks
->warning
)
2248 (info
, _("non-zero addend in @fptr reloc"), 0,
2249 abfd
, 0, (bfd_vma
) 0);
2252 dyn_i
= get_dyn_sym_info (ia64_info
, h
, abfd
, rel
, true);
2254 /* Record whether or not this is a local symbol. */
2257 /* Create what's needed. */
2258 if (need_entry
& NEED_GOT
)
2262 got
= get_got (abfd
, info
, ia64_info
);
2266 dyn_i
->want_got
= 1;
2268 if (need_entry
& NEED_FPTR
)
2272 fptr
= get_fptr (abfd
, info
, ia64_info
);
2277 /* FPTRs for shared libraries are allocated by the dynamic
2278 linker. Make sure this local symbol will appear in the
2279 dynamic symbol table. */
2280 if (!h
&& (info
->shared
2281 /* AIX also needs one */
2282 || elfNN_ia64_aix_vec (abfd
->xvec
)))
2284 if (! (_bfd_elfNN_link_record_local_dynamic_symbol
2285 (info
, abfd
, (long) r_symndx
)))
2289 dyn_i
->want_fptr
= 1;
2291 if (need_entry
& NEED_LTOFF_FPTR
)
2292 dyn_i
->want_ltoff_fptr
= 1;
2293 if (need_entry
& (NEED_MIN_PLT
| NEED_FULL_PLT
))
2295 if (!ia64_info
->root
.dynobj
)
2296 ia64_info
->root
.dynobj
= abfd
;
2297 h
->elf_link_hash_flags
|= ELF_LINK_HASH_NEEDS_PLT
;
2298 dyn_i
->want_plt
= 1;
2300 if (need_entry
& NEED_FULL_PLT
)
2301 dyn_i
->want_plt2
= 1;
2302 if (need_entry
& NEED_PLTOFF
)
2303 dyn_i
->want_pltoff
= 1;
2304 if ((need_entry
& NEED_DYNREL
) && (sec
->flags
& SEC_ALLOC
))
2308 srel
= get_reloc_section (abfd
, ia64_info
, sec
, true);
2312 if (!count_dyn_reloc (abfd
, dyn_i
, srel
, dynrel_type
))
2320 struct elfNN_ia64_allocate_data
2322 struct bfd_link_info
*info
;
2326 /* For cleanliness, and potentially faster dynamic loading, allocate
2327 external GOT entries first. */
2330 allocate_global_data_got (dyn_i
, data
)
2331 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2334 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2337 && ! dyn_i
->want_fptr
2338 && (elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, x
->info
)
2339 || (elfNN_ia64_aix_vec (x
->info
->hash
->creator
)
2340 && (!dyn_i
->h
|| strcmp (dyn_i
->h
->root
.root
.string
,
2341 "__GLOB_DATA_PTR") != 0))))
2343 dyn_i
->got_offset
= x
->ofs
;
2349 /* Next, allocate all the GOT entries used by LTOFF_FPTR relocs. */
2352 allocate_global_fptr_got (dyn_i
, data
)
2353 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2356 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2360 && (elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, x
->info
)
2361 || elfNN_ia64_aix_vec (x
->info
->hash
->creator
)))
2363 dyn_i
->got_offset
= x
->ofs
;
2369 /* Lastly, allocate all the GOT entries for local data. */
2372 allocate_local_got (dyn_i
, data
)
2373 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2376 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2379 && ! (elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, x
->info
)
2380 || elfNN_ia64_aix_vec (x
->info
->hash
->creator
)))
2382 dyn_i
->got_offset
= x
->ofs
;
2388 /* Search for the index of a global symbol in it's defining object file. */
2391 global_sym_index (h
)
2392 struct elf_link_hash_entry
*h
;
2394 struct elf_link_hash_entry
**p
;
2397 BFD_ASSERT (h
->root
.type
== bfd_link_hash_defined
2398 || h
->root
.type
== bfd_link_hash_defweak
);
2400 obj
= h
->root
.u
.def
.section
->owner
;
2401 for (p
= elf_sym_hashes (obj
); *p
!= h
; ++p
)
2404 return p
- elf_sym_hashes (obj
) + elf_tdata (obj
)->symtab_hdr
.sh_info
;
2407 /* Allocate function descriptors. We can do these for every function
2408 in a main executable that is not exported. */
2411 allocate_fptr (dyn_i
, data
)
2412 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2415 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2417 if (dyn_i
->want_fptr
)
2419 struct elf_link_hash_entry
*h
= dyn_i
->h
;
2422 while (h
->root
.type
== bfd_link_hash_indirect
2423 || h
->root
.type
== bfd_link_hash_warning
)
2424 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2427 /* AIX needs an FPTR in this case. */
2428 || (elfNN_ia64_aix_vec (x
->info
->hash
->creator
)
2430 || h
->root
.type
== bfd_link_hash_defined
2431 || h
->root
.type
== bfd_link_hash_defweak
)))
2433 if (h
&& h
->dynindx
== -1)
2435 BFD_ASSERT ((h
->root
.type
== bfd_link_hash_defined
)
2436 || (h
->root
.type
== bfd_link_hash_defweak
));
2438 if (!_bfd_elfNN_link_record_local_dynamic_symbol
2439 (x
->info
, h
->root
.u
.def
.section
->owner
,
2440 global_sym_index (h
)))
2444 dyn_i
->want_fptr
= 0;
2446 else if (h
== NULL
|| h
->dynindx
== -1)
2448 dyn_i
->fptr_offset
= x
->ofs
;
2452 dyn_i
->want_fptr
= 0;
2457 /* Allocate all the minimal PLT entries. */
2460 allocate_plt_entries (dyn_i
, data
)
2461 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2464 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2466 if (dyn_i
->want_plt
)
2468 struct elf_link_hash_entry
*h
= dyn_i
->h
;
2471 while (h
->root
.type
== bfd_link_hash_indirect
2472 || h
->root
.type
== bfd_link_hash_warning
)
2473 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2475 /* ??? Versioned symbols seem to lose ELF_LINK_HASH_NEEDS_PLT. */
2476 if (elfNN_ia64_dynamic_symbol_p (h
, x
->info
))
2478 bfd_size_type offset
= x
->ofs
;
2480 offset
= PLT_HEADER_SIZE
;
2481 dyn_i
->plt_offset
= offset
;
2482 x
->ofs
= offset
+ PLT_MIN_ENTRY_SIZE
;
2484 dyn_i
->want_pltoff
= 1;
2488 dyn_i
->want_plt
= 0;
2489 dyn_i
->want_plt2
= 0;
2495 /* Allocate all the full PLT entries. */
2498 allocate_plt2_entries (dyn_i
, data
)
2499 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2502 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2504 if (dyn_i
->want_plt2
)
2506 struct elf_link_hash_entry
*h
= dyn_i
->h
;
2507 bfd_size_type ofs
= x
->ofs
;
2509 dyn_i
->plt2_offset
= ofs
;
2510 x
->ofs
= ofs
+ PLT_FULL_ENTRY_SIZE
;
2512 while (h
->root
.type
== bfd_link_hash_indirect
2513 || h
->root
.type
== bfd_link_hash_warning
)
2514 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2515 dyn_i
->h
->plt
.offset
= ofs
;
2520 /* Allocate all the PLTOFF entries requested by relocations and
2521 plt entries. We can't share space with allocated FPTR entries,
2522 because the latter are not necessarily addressable by the GP.
2523 ??? Relaxation might be able to determine that they are. */
2526 allocate_pltoff_entries (dyn_i
, data
)
2527 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2530 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2532 if (dyn_i
->want_pltoff
)
2534 dyn_i
->pltoff_offset
= x
->ofs
;
2540 /* Allocate dynamic relocations for those symbols that turned out
2544 allocate_dynrel_entries (dyn_i
, data
)
2545 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2548 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2549 struct elfNN_ia64_link_hash_table
*ia64_info
;
2550 struct elfNN_ia64_dyn_reloc_entry
*rent
;
2551 boolean dynamic_symbol
, shared
;
2553 ia64_info
= elfNN_ia64_hash_table (x
->info
);
2554 dynamic_symbol
= elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, x
->info
)
2555 || (elfNN_ia64_aix_vec (x
->info
->hash
->creator
)
2556 /* Don't allocate an entry for __GLOB_DATA_PTR */
2557 && (!dyn_i
->h
|| strcmp (dyn_i
->h
->root
.root
.string
,
2558 "__GLOB_DATA_PTR") != 0));
2559 shared
= x
->info
->shared
;
2561 /* Take care of the normal data relocations. */
2563 for (rent
= dyn_i
->reloc_entries
; rent
; rent
= rent
->next
)
2565 int count
= rent
->count
;
2569 case R_IA64_FPTR64LSB
:
2570 /* Allocate one iff !want_fptr, which by this point will
2571 be true only if we're actually allocating one statically
2572 in the main executable. */
2573 if (dyn_i
->want_fptr
)
2576 case R_IA64_PCREL64LSB
:
2577 if (!dynamic_symbol
)
2580 case R_IA64_DIR64LSB
:
2581 if (!dynamic_symbol
&& !shared
)
2584 case R_IA64_IPLTLSB
:
2585 if (!dynamic_symbol
&& !shared
)
2587 /* Use two REL relocations for IPLT relocations
2588 against local symbols. */
2589 if (!dynamic_symbol
)
2595 rent
->srel
->_raw_size
+= sizeof (ElfNN_External_Rela
) * count
;
2598 /* Take care of the GOT and PLT relocations. */
2600 if (((dynamic_symbol
|| shared
) && dyn_i
->want_got
)
2601 || (dyn_i
->want_ltoff_fptr
&& dyn_i
->h
&& dyn_i
->h
->dynindx
!= -1))
2602 ia64_info
->rel_got_sec
->_raw_size
+= sizeof (ElfNN_External_Rela
);
2604 if (dyn_i
->want_pltoff
)
2606 bfd_size_type t
= 0;
2608 /* Dynamic symbols get one IPLT relocation. Local symbols in
2609 shared libraries get two REL relocations. Local symbols in
2610 main applications get nothing. */
2612 t
= sizeof (ElfNN_External_Rela
);
2614 t
= 2 * sizeof (ElfNN_External_Rela
);
2616 ia64_info
->rel_pltoff_sec
->_raw_size
+= t
;
2623 elfNN_ia64_adjust_dynamic_symbol (info
, h
)
2624 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
2625 struct elf_link_hash_entry
*h
;
2627 /* ??? Undefined symbols with PLT entries should be re-defined
2628 to be the PLT entry. */
2630 /* If this is a weak symbol, and there is a real definition, the
2631 processor independent code will have arranged for us to see the
2632 real definition first, and we can just use the same value. */
2633 if (h
->weakdef
!= NULL
)
2635 BFD_ASSERT (h
->weakdef
->root
.type
== bfd_link_hash_defined
2636 || h
->weakdef
->root
.type
== bfd_link_hash_defweak
);
2637 h
->root
.u
.def
.section
= h
->weakdef
->root
.u
.def
.section
;
2638 h
->root
.u
.def
.value
= h
->weakdef
->root
.u
.def
.value
;
2642 /* If this is a reference to a symbol defined by a dynamic object which
2643 is not a function, we might allocate the symbol in our .dynbss section
2644 and allocate a COPY dynamic relocation.
2646 But IA-64 code is canonically PIC, so as a rule we can avoid this sort
2653 elfNN_ia64_size_dynamic_sections (output_bfd
, info
)
2655 struct bfd_link_info
*info
;
2657 struct elfNN_ia64_allocate_data data
;
2658 struct elfNN_ia64_link_hash_table
*ia64_info
;
2661 boolean relplt
= false;
2663 dynobj
= elf_hash_table(info
)->dynobj
;
2664 ia64_info
= elfNN_ia64_hash_table (info
);
2665 BFD_ASSERT(dynobj
!= NULL
);
2668 /* Set the contents of the .interp section to the interpreter. */
2669 if (ia64_info
->root
.dynamic_sections_created
2672 sec
= bfd_get_section_by_name (dynobj
, ".interp");
2673 BFD_ASSERT (sec
!= NULL
);
2674 sec
->contents
= (bfd_byte
*) DYNAMIC_INTERPRETER (output_bfd
);
2675 sec
->_raw_size
= strlen (DYNAMIC_INTERPRETER (output_bfd
)) + 1;
2678 /* Allocate the GOT entries. */
2680 if (ia64_info
->got_sec
)
2683 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_global_data_got
, &data
);
2684 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_global_fptr_got
, &data
);
2685 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_local_got
, &data
);
2686 ia64_info
->got_sec
->_raw_size
= data
.ofs
;
2689 /* Allocate the FPTR entries. */
2691 if (ia64_info
->fptr_sec
)
2694 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_fptr
, &data
);
2695 ia64_info
->fptr_sec
->_raw_size
= data
.ofs
;
2698 /* Now that we've seen all of the input files, we can decide which
2699 symbols need plt entries. Allocate the minimal PLT entries first.
2700 We do this even though dynamic_sections_created may be false, because
2701 this has the side-effect of clearing want_plt and want_plt2. */
2704 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_plt_entries
, &data
);
2706 ia64_info
->minplt_entries
= 0;
2709 ia64_info
->minplt_entries
2710 = (data
.ofs
- PLT_HEADER_SIZE
) / PLT_MIN_ENTRY_SIZE
;
2713 /* Align the pointer for the plt2 entries. */
2714 data
.ofs
= (data
.ofs
+ 31) & (bfd_vma
) -32;
2716 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_plt2_entries
, &data
);
2719 BFD_ASSERT (ia64_info
->root
.dynamic_sections_created
);
2721 ia64_info
->plt_sec
->_raw_size
= data
.ofs
;
2723 /* If we've got a .plt, we need some extra memory for the dynamic
2724 linker. We stuff these in .got.plt. */
2725 sec
= bfd_get_section_by_name (dynobj
, ".got.plt");
2726 sec
->_raw_size
= 8 * PLT_RESERVED_WORDS
;
2729 /* Allocate the PLTOFF entries. */
2731 if (ia64_info
->pltoff_sec
)
2734 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_pltoff_entries
, &data
);
2735 ia64_info
->pltoff_sec
->_raw_size
= data
.ofs
;
2738 if (ia64_info
->root
.dynamic_sections_created
)
2740 /* Allocate space for the dynamic relocations that turned out to be
2743 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_dynrel_entries
, &data
);
2746 /* We have now determined the sizes of the various dynamic sections.
2747 Allocate memory for them. */
2748 for (sec
= dynobj
->sections
; sec
!= NULL
; sec
= sec
->next
)
2752 if (!(sec
->flags
& SEC_LINKER_CREATED
))
2755 /* If we don't need this section, strip it from the output file.
2756 There were several sections primarily related to dynamic
2757 linking that must be create before the linker maps input
2758 sections to output sections. The linker does that before
2759 bfd_elf_size_dynamic_sections is called, and it is that
2760 function which decides whether anything needs to go into
2763 strip
= (sec
->_raw_size
== 0);
2765 if (sec
== ia64_info
->got_sec
)
2767 else if (sec
== ia64_info
->rel_got_sec
)
2770 ia64_info
->rel_got_sec
= NULL
;
2772 /* We use the reloc_count field as a counter if we need to
2773 copy relocs into the output file. */
2774 sec
->reloc_count
= 0;
2776 else if (sec
== ia64_info
->fptr_sec
)
2779 ia64_info
->fptr_sec
= NULL
;
2781 else if (sec
== ia64_info
->plt_sec
)
2784 ia64_info
->plt_sec
= NULL
;
2786 else if (sec
== ia64_info
->pltoff_sec
)
2789 ia64_info
->pltoff_sec
= NULL
;
2791 else if (sec
== ia64_info
->rel_pltoff_sec
)
2794 ia64_info
->rel_pltoff_sec
= NULL
;
2798 /* We use the reloc_count field as a counter if we need to
2799 copy relocs into the output file. */
2800 sec
->reloc_count
= 0;
2807 /* It's OK to base decisions on the section name, because none
2808 of the dynobj section names depend upon the input files. */
2809 name
= bfd_get_section_name (dynobj
, sec
);
2811 if (strcmp (name
, ".got.plt") == 0)
2813 else if (strncmp (name
, ".rel", 4) == 0)
2817 /* We use the reloc_count field as a counter if we need to
2818 copy relocs into the output file. */
2819 sec
->reloc_count
= 0;
2827 _bfd_strip_section_from_output (info
, sec
);
2830 /* Allocate memory for the section contents. */
2831 sec
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, sec
->_raw_size
);
2832 if (sec
->contents
== NULL
&& sec
->_raw_size
!= 0)
2837 if (elf_hash_table (info
)->dynamic_sections_created
)
2839 /* Add some entries to the .dynamic section. We fill in the values
2840 later (in finish_dynamic_sections) but we must add the entries now
2841 so that we get the correct size for the .dynamic section. */
2845 /* The DT_DEBUG entry is filled in by the dynamic linker and used
2847 #define add_dynamic_entry(TAG, VAL) \
2848 bfd_elfNN_add_dynamic_entry (info, (bfd_vma) (TAG), (bfd_vma) (VAL))
2850 if (!add_dynamic_entry (DT_DEBUG
, 0))
2854 if (!add_dynamic_entry (DT_IA_64_PLT_RESERVE
, 0))
2856 if (!add_dynamic_entry (DT_PLTGOT
, 0))
2861 if (!add_dynamic_entry (DT_PLTRELSZ
, 0)
2862 || !add_dynamic_entry (DT_PLTREL
, DT_RELA
)
2863 || !add_dynamic_entry (DT_JMPREL
, 0))
2867 if (!add_dynamic_entry (DT_RELA
, 0)
2868 || !add_dynamic_entry (DT_RELASZ
, 0)
2869 || !add_dynamic_entry (DT_RELAENT
, sizeof (ElfNN_External_Rela
)))
2872 if (ia64_info
->reltext
)
2874 if (!add_dynamic_entry (DT_TEXTREL
, 0))
2876 info
->flags
|= DF_TEXTREL
;
2880 /* ??? Perhaps force __gp local. */
2885 static bfd_reloc_status_type
2886 elfNN_ia64_install_value (abfd
, hit_addr
, v
, r_type
)
2890 unsigned int r_type
;
2892 const struct ia64_operand
*op
;
2893 int bigendian
= 0, shift
= 0;
2894 bfd_vma t0
, t1
, insn
, dword
;
2895 enum ia64_opnd opnd
;
2898 #ifdef BFD_HOST_U_64_BIT
2899 BFD_HOST_U_64_BIT val
= (BFD_HOST_U_64_BIT
) v
;
2904 opnd
= IA64_OPND_NIL
;
2909 return bfd_reloc_ok
;
2911 /* Instruction relocations. */
2913 case R_IA64_IMM14
: opnd
= IA64_OPND_IMM14
; break;
2915 case R_IA64_PCREL21F
: opnd
= IA64_OPND_TGT25
; break;
2916 case R_IA64_PCREL21M
: opnd
= IA64_OPND_TGT25b
; break;
2917 case R_IA64_PCREL60B
: opnd
= IA64_OPND_TGT64
; break;
2918 case R_IA64_PCREL21B
:
2919 case R_IA64_PCREL21BI
:
2920 opnd
= IA64_OPND_TGT25c
;
2924 case R_IA64_GPREL22
:
2925 case R_IA64_LTOFF22
:
2926 case R_IA64_LTOFF22X
:
2927 case R_IA64_PLTOFF22
:
2928 case R_IA64_PCREL22
:
2929 case R_IA64_LTOFF_FPTR22
:
2930 opnd
= IA64_OPND_IMM22
;
2934 case R_IA64_GPREL64I
:
2935 case R_IA64_LTOFF64I
:
2936 case R_IA64_PLTOFF64I
:
2937 case R_IA64_PCREL64I
:
2938 case R_IA64_FPTR64I
:
2939 case R_IA64_LTOFF_FPTR64I
:
2940 opnd
= IA64_OPND_IMMU64
;
2943 /* Data relocations. */
2945 case R_IA64_DIR32MSB
:
2946 case R_IA64_GPREL32MSB
:
2947 case R_IA64_FPTR32MSB
:
2948 case R_IA64_PCREL32MSB
:
2949 case R_IA64_LTOFF_FPTR32MSB
:
2950 case R_IA64_SEGREL32MSB
:
2951 case R_IA64_SECREL32MSB
:
2952 case R_IA64_LTV32MSB
:
2953 size
= 4; bigendian
= 1;
2956 case R_IA64_DIR32LSB
:
2957 case R_IA64_GPREL32LSB
:
2958 case R_IA64_FPTR32LSB
:
2959 case R_IA64_PCREL32LSB
:
2960 case R_IA64_LTOFF_FPTR32LSB
:
2961 case R_IA64_SEGREL32LSB
:
2962 case R_IA64_SECREL32LSB
:
2963 case R_IA64_LTV32LSB
:
2964 size
= 4; bigendian
= 0;
2967 case R_IA64_DIR64MSB
:
2968 case R_IA64_GPREL64MSB
:
2969 case R_IA64_PLTOFF64MSB
:
2970 case R_IA64_FPTR64MSB
:
2971 case R_IA64_PCREL64MSB
:
2972 case R_IA64_LTOFF_FPTR64MSB
:
2973 case R_IA64_SEGREL64MSB
:
2974 case R_IA64_SECREL64MSB
:
2975 case R_IA64_LTV64MSB
:
2976 size
= 8; bigendian
= 1;
2979 case R_IA64_DIR64LSB
:
2980 case R_IA64_GPREL64LSB
:
2981 case R_IA64_PLTOFF64LSB
:
2982 case R_IA64_FPTR64LSB
:
2983 case R_IA64_PCREL64LSB
:
2984 case R_IA64_LTOFF_FPTR64LSB
:
2985 case R_IA64_SEGREL64LSB
:
2986 case R_IA64_SECREL64LSB
:
2987 case R_IA64_LTV64LSB
:
2988 size
= 8; bigendian
= 0;
2991 /* Unsupported / Dynamic relocations. */
2993 return bfd_reloc_notsupported
;
2998 case IA64_OPND_IMMU64
:
2999 hit_addr
-= (long) hit_addr
& 0x3;
3000 t0
= bfd_get_64 (abfd
, hit_addr
);
3001 t1
= bfd_get_64 (abfd
, hit_addr
+ 8);
3003 /* tmpl/s: bits 0.. 5 in t0
3004 slot 0: bits 5..45 in t0
3005 slot 1: bits 46..63 in t0, bits 0..22 in t1
3006 slot 2: bits 23..63 in t1 */
3008 /* First, clear the bits that form the 64 bit constant. */
3009 t0
&= ~(0x3ffffLL
<< 46);
3011 | (( (0x07fLL
<< 13) | (0x1ffLL
<< 27)
3012 | (0x01fLL
<< 22) | (0x001LL
<< 21)
3013 | (0x001LL
<< 36)) << 23));
3015 t0
|= ((val
>> 22) & 0x03ffffLL
) << 46; /* 18 lsbs of imm41 */
3016 t1
|= ((val
>> 40) & 0x7fffffLL
) << 0; /* 23 msbs of imm41 */
3017 t1
|= ( (((val
>> 0) & 0x07f) << 13) /* imm7b */
3018 | (((val
>> 7) & 0x1ff) << 27) /* imm9d */
3019 | (((val
>> 16) & 0x01f) << 22) /* imm5c */
3020 | (((val
>> 21) & 0x001) << 21) /* ic */
3021 | (((val
>> 63) & 0x001) << 36)) << 23; /* i */
3023 bfd_put_64 (abfd
, t0
, hit_addr
);
3024 bfd_put_64 (abfd
, t1
, hit_addr
+ 8);
3027 case IA64_OPND_TGT64
:
3028 hit_addr
-= (long) hit_addr
& 0x3;
3029 t0
= bfd_get_64 (abfd
, hit_addr
);
3030 t1
= bfd_get_64 (abfd
, hit_addr
+ 8);
3032 /* tmpl/s: bits 0.. 5 in t0
3033 slot 0: bits 5..45 in t0
3034 slot 1: bits 46..63 in t0, bits 0..22 in t1
3035 slot 2: bits 23..63 in t1 */
3037 /* First, clear the bits that form the 64 bit constant. */
3038 t0
&= ~(0x3ffffLL
<< 46);
3040 | ((1LL << 36 | 0xfffffLL
<< 13) << 23));
3043 t0
|= ((val
>> 20) & 0xffffLL
) << 2 << 46; /* 16 lsbs of imm39 */
3044 t1
|= ((val
>> 36) & 0x7fffffLL
) << 0; /* 23 msbs of imm39 */
3045 t1
|= ((((val
>> 0) & 0xfffffLL
) << 13) /* imm20b */
3046 | (((val
>> 59) & 0x1LL
) << 36)) << 23; /* i */
3048 bfd_put_64 (abfd
, t0
, hit_addr
);
3049 bfd_put_64 (abfd
, t1
, hit_addr
+ 8);
3053 switch ((long) hit_addr
& 0x3)
3055 case 0: shift
= 5; break;
3056 case 1: shift
= 14; hit_addr
+= 3; break;
3057 case 2: shift
= 23; hit_addr
+= 6; break;
3058 case 3: return bfd_reloc_notsupported
; /* shouldn't happen... */
3060 dword
= bfd_get_64 (abfd
, hit_addr
);
3061 insn
= (dword
>> shift
) & 0x1ffffffffffLL
;
3063 op
= elf64_ia64_operands
+ opnd
;
3064 err
= (*op
->insert
) (op
, val
, (ia64_insn
*)& insn
);
3066 return bfd_reloc_overflow
;
3068 dword
&= ~(0x1ffffffffffLL
<< shift
);
3069 dword
|= (insn
<< shift
);
3070 bfd_put_64 (abfd
, dword
, hit_addr
);
3074 /* A data relocation. */
3077 bfd_putb32 (val
, hit_addr
);
3079 bfd_putb64 (val
, hit_addr
);
3082 bfd_putl32 (val
, hit_addr
);
3084 bfd_putl64 (val
, hit_addr
);
3088 return bfd_reloc_ok
;
3092 elfNN_ia64_install_dyn_reloc (abfd
, info
, sec
, srel
, offset
, type
,
3095 struct bfd_link_info
*info
;
3103 Elf_Internal_Rela outrel
;
3105 offset
+= sec
->output_section
->vma
+ sec
->output_offset
;
3107 BFD_ASSERT (dynindx
!= -1);
3108 outrel
.r_info
= ELFNN_R_INFO (dynindx
, type
);
3109 outrel
.r_addend
= addend
;
3110 outrel
.r_offset
= _bfd_elf_section_offset (abfd
, info
, sec
, offset
);
3111 if (outrel
.r_offset
== (bfd_vma
) -1)
3113 /* Run for the hills. We shouldn't be outputting a relocation
3114 for this. So do what everyone else does and output a no-op. */
3115 outrel
.r_info
= ELFNN_R_INFO (0, R_IA64_NONE
);
3116 outrel
.r_addend
= 0;
3117 outrel
.r_offset
= 0;
3120 bfd_elfNN_swap_reloca_out (abfd
, &outrel
,
3121 ((ElfNN_External_Rela
*) srel
->contents
3122 + srel
->reloc_count
++));
3123 BFD_ASSERT (sizeof (ElfNN_External_Rela
) * srel
->reloc_count
3124 <= srel
->_cooked_size
);
3127 /* Store an entry for target address TARGET_ADDR in the linkage table
3128 and return the gp-relative address of the linkage table entry. */
3131 set_got_entry (abfd
, info
, dyn_i
, dynindx
, addend
, value
, dyn_r_type
)
3133 struct bfd_link_info
*info
;
3134 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
3138 unsigned int dyn_r_type
;
3140 struct elfNN_ia64_link_hash_table
*ia64_info
;
3143 ia64_info
= elfNN_ia64_hash_table (info
);
3144 got_sec
= ia64_info
->got_sec
;
3146 BFD_ASSERT ((dyn_i
->got_offset
& 7) == 0);
3148 if (! dyn_i
->got_done
)
3150 dyn_i
->got_done
= true;
3152 /* Store the target address in the linkage table entry. */
3153 bfd_put_64 (abfd
, value
, got_sec
->contents
+ dyn_i
->got_offset
);
3155 /* Install a dynamic relocation if needed. */
3157 || elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, info
)
3158 || elfNN_ia64_aix_vec (abfd
->xvec
)
3159 || (dynindx
!= -1 && dyn_r_type
== R_IA64_FPTR64LSB
))
3163 dyn_r_type
= R_IA64_REL64LSB
;
3168 if (bfd_big_endian (abfd
))
3172 case R_IA64_REL64LSB
:
3173 dyn_r_type
= R_IA64_REL64MSB
;
3175 case R_IA64_DIR64LSB
:
3176 dyn_r_type
= R_IA64_DIR64MSB
;
3178 case R_IA64_FPTR64LSB
:
3179 dyn_r_type
= R_IA64_FPTR64MSB
;
3187 elfNN_ia64_install_dyn_reloc (abfd
, NULL
, got_sec
,
3188 ia64_info
->rel_got_sec
,
3189 dyn_i
->got_offset
, dyn_r_type
,
3194 /* Return the address of the linkage table entry. */
3195 value
= (got_sec
->output_section
->vma
3196 + got_sec
->output_offset
3197 + dyn_i
->got_offset
);
3202 /* Fill in a function descriptor consisting of the function's code
3203 address and its global pointer. Return the descriptor's address. */
3206 set_fptr_entry (abfd
, info
, dyn_i
, value
)
3208 struct bfd_link_info
*info
;
3209 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
3212 struct elfNN_ia64_link_hash_table
*ia64_info
;
3215 ia64_info
= elfNN_ia64_hash_table (info
);
3216 fptr_sec
= ia64_info
->fptr_sec
;
3218 if (!dyn_i
->fptr_done
)
3220 dyn_i
->fptr_done
= 1;
3222 /* Fill in the function descriptor. */
3223 bfd_put_64 (abfd
, value
, fptr_sec
->contents
+ dyn_i
->fptr_offset
);
3224 bfd_put_64 (abfd
, _bfd_get_gp_value (abfd
),
3225 fptr_sec
->contents
+ dyn_i
->fptr_offset
+ 8);
3228 /* Return the descriptor's address. */
3229 value
= (fptr_sec
->output_section
->vma
3230 + fptr_sec
->output_offset
3231 + dyn_i
->fptr_offset
);
3236 /* Fill in a PLTOFF entry consisting of the function's code address
3237 and its global pointer. Return the descriptor's address. */
3240 set_pltoff_entry (abfd
, info
, dyn_i
, value
, is_plt
)
3242 struct bfd_link_info
*info
;
3243 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
3247 struct elfNN_ia64_link_hash_table
*ia64_info
;
3248 asection
*pltoff_sec
;
3250 ia64_info
= elfNN_ia64_hash_table (info
);
3251 pltoff_sec
= ia64_info
->pltoff_sec
;
3253 /* Don't do anything if this symbol uses a real PLT entry. In
3254 that case, we'll fill this in during finish_dynamic_symbol. */
3255 if ((! dyn_i
->want_plt
|| is_plt
)
3256 && !dyn_i
->pltoff_done
)
3258 bfd_vma gp
= _bfd_get_gp_value (abfd
);
3260 /* Fill in the function descriptor. */
3261 bfd_put_64 (abfd
, value
, pltoff_sec
->contents
+ dyn_i
->pltoff_offset
);
3262 bfd_put_64 (abfd
, gp
, pltoff_sec
->contents
+ dyn_i
->pltoff_offset
+ 8);
3264 /* Install dynamic relocations if needed. */
3265 if (!is_plt
&& info
->shared
)
3267 unsigned int dyn_r_type
;
3269 if (bfd_big_endian (abfd
))
3270 dyn_r_type
= R_IA64_REL64MSB
;
3272 dyn_r_type
= R_IA64_REL64LSB
;
3274 elfNN_ia64_install_dyn_reloc (abfd
, NULL
, pltoff_sec
,
3275 ia64_info
->rel_pltoff_sec
,
3276 dyn_i
->pltoff_offset
,
3277 dyn_r_type
, 0, value
);
3278 elfNN_ia64_install_dyn_reloc (abfd
, NULL
, pltoff_sec
,
3279 ia64_info
->rel_pltoff_sec
,
3280 dyn_i
->pltoff_offset
+ 8,
3284 dyn_i
->pltoff_done
= 1;
3287 /* Return the descriptor's address. */
3288 value
= (pltoff_sec
->output_section
->vma
3289 + pltoff_sec
->output_offset
3290 + dyn_i
->pltoff_offset
);
3295 /* Called through qsort to sort the .IA_64.unwind section during a
3296 non-relocatable link. Set elfNN_ia64_unwind_entry_compare_bfd
3297 to the output bfd so we can do proper endianness frobbing. */
3299 static bfd
*elfNN_ia64_unwind_entry_compare_bfd
;
3302 elfNN_ia64_unwind_entry_compare (a
, b
)
3308 av
= bfd_get_64 (elfNN_ia64_unwind_entry_compare_bfd
, a
);
3309 bv
= bfd_get_64 (elfNN_ia64_unwind_entry_compare_bfd
, b
);
3311 return (av
< bv
? -1 : av
> bv
? 1 : 0);
3315 elfNN_ia64_final_link (abfd
, info
)
3317 struct bfd_link_info
*info
;
3319 struct elfNN_ia64_link_hash_table
*ia64_info
;
3320 asection
*unwind_output_sec
;
3322 ia64_info
= elfNN_ia64_hash_table (info
);
3324 /* Make sure we've got ourselves a nice fat __gp value. */
3325 if (!info
->relocateable
)
3327 bfd_vma min_vma
= (bfd_vma
) -1, max_vma
= 0;
3328 bfd_vma min_short_vma
= min_vma
, max_short_vma
= 0;
3329 struct elf_link_hash_entry
*gp
;
3333 /* Find the min and max vma of all sections marked short. Also
3334 collect min and max vma of any type, for use in selecting a
3336 for (os
= abfd
->sections
; os
; os
= os
->next
)
3340 if ((os
->flags
& SEC_ALLOC
) == 0)
3344 hi
= os
->vma
+ os
->_raw_size
;
3352 if (os
->flags
& SEC_SMALL_DATA
)
3354 if (min_short_vma
> lo
)
3356 if (max_short_vma
< hi
)
3361 /* See if the user wants to force a value. */
3362 gp
= elf_link_hash_lookup (elf_hash_table (info
), "__gp", false,
3366 && (gp
->root
.type
== bfd_link_hash_defined
3367 || gp
->root
.type
== bfd_link_hash_defweak
))
3369 asection
*gp_sec
= gp
->root
.u
.def
.section
;
3370 gp_val
= (gp
->root
.u
.def
.value
3371 + gp_sec
->output_section
->vma
3372 + gp_sec
->output_offset
);
3376 /* Pick a sensible value. */
3378 asection
*got_sec
= ia64_info
->got_sec
;
3380 /* Start with just the address of the .got. */
3382 gp_val
= got_sec
->output_section
->vma
;
3383 else if (max_short_vma
!= 0)
3384 gp_val
= min_short_vma
;
3388 /* If it is possible to address the entire image, but we
3389 don't with the choice above, adjust. */
3390 if (max_vma
- min_vma
< 0x400000
3391 && max_vma
- gp_val
<= 0x200000
3392 && gp_val
- min_vma
> 0x200000)
3393 gp_val
= min_vma
+ 0x200000;
3394 else if (max_short_vma
!= 0)
3396 /* If we don't cover all the short data, adjust. */
3397 if (max_short_vma
- gp_val
>= 0x200000)
3398 gp_val
= min_short_vma
+ 0x200000;
3400 /* If we're addressing stuff past the end, adjust back. */
3401 if (gp_val
> max_vma
)
3402 gp_val
= max_vma
- 0x200000 + 8;
3406 /* Validate whether all SHF_IA_64_SHORT sections are within
3407 range of the chosen GP. */
3409 if (max_short_vma
!= 0)
3411 if (max_short_vma
- min_short_vma
>= 0x400000)
3413 (*_bfd_error_handler
)
3414 (_("%s: short data segment overflowed (0x%lx >= 0x400000)"),
3415 bfd_get_filename (abfd
),
3416 (unsigned long) (max_short_vma
- min_short_vma
));
3419 else if ((gp_val
> min_short_vma
3420 && gp_val
- min_short_vma
> 0x200000)
3421 || (gp_val
< max_short_vma
3422 && max_short_vma
- gp_val
>= 0x200000))
3424 (*_bfd_error_handler
)
3425 (_("%s: __gp does not cover short data segment"),
3426 bfd_get_filename (abfd
));
3431 _bfd_set_gp_value (abfd
, gp_val
);
3435 gp
->root
.type
= bfd_link_hash_defined
;
3436 gp
->root
.u
.def
.value
= gp_val
;
3437 gp
->root
.u
.def
.section
= bfd_abs_section_ptr
;
3441 /* If we're producing a final executable, we need to sort the contents
3442 of the .IA_64.unwind section. Force this section to be relocated
3443 into memory rather than written immediately to the output file. */
3444 unwind_output_sec
= NULL
;
3445 if (!info
->relocateable
)
3447 asection
*s
= bfd_get_section_by_name (abfd
, ELF_STRING_ia64_unwind
);
3450 unwind_output_sec
= s
->output_section
;
3451 unwind_output_sec
->contents
3452 = bfd_malloc (unwind_output_sec
->_raw_size
);
3453 if (unwind_output_sec
->contents
== NULL
)
3458 /* Invoke the regular ELF backend linker to do all the work. */
3459 if (!bfd_elfNN_bfd_final_link (abfd
, info
))
3462 if (unwind_output_sec
)
3464 elfNN_ia64_unwind_entry_compare_bfd
= abfd
;
3465 qsort (unwind_output_sec
->contents
,
3466 (size_t) (unwind_output_sec
->_raw_size
/ 24),
3468 elfNN_ia64_unwind_entry_compare
);
3470 if (! bfd_set_section_contents (abfd
, unwind_output_sec
,
3471 unwind_output_sec
->contents
, (bfd_vma
) 0,
3472 unwind_output_sec
->_raw_size
))
3480 elfNN_ia64_relocate_section (output_bfd
, info
, input_bfd
, input_section
,
3481 contents
, relocs
, local_syms
, local_sections
)
3483 struct bfd_link_info
*info
;
3485 asection
*input_section
;
3487 Elf_Internal_Rela
*relocs
;
3488 Elf_Internal_Sym
*local_syms
;
3489 asection
**local_sections
;
3491 struct elfNN_ia64_link_hash_table
*ia64_info
;
3492 Elf_Internal_Shdr
*symtab_hdr
;
3493 Elf_Internal_Rela
*rel
;
3494 Elf_Internal_Rela
*relend
;
3496 boolean ret_val
= true; /* for non-fatal errors */
3499 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
3500 ia64_info
= elfNN_ia64_hash_table (info
);
3502 /* Infect various flags from the input section to the output section. */
3503 if (info
->relocateable
)
3507 flags
= elf_section_data(input_section
)->this_hdr
.sh_flags
;
3508 flags
&= SHF_IA_64_NORECOV
;
3510 elf_section_data(input_section
->output_section
)
3511 ->this_hdr
.sh_flags
|= flags
;
3514 gp_val
= _bfd_get_gp_value (output_bfd
);
3515 srel
= get_reloc_section (input_bfd
, ia64_info
, input_section
, false);
3518 relend
= relocs
+ input_section
->reloc_count
;
3519 for (; rel
< relend
; ++rel
)
3521 struct elf_link_hash_entry
*h
;
3522 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
3523 bfd_reloc_status_type r
;
3524 reloc_howto_type
*howto
;
3525 unsigned long r_symndx
;
3526 Elf_Internal_Sym
*sym
;
3527 unsigned int r_type
;
3531 boolean dynamic_symbol_p
;
3532 boolean undef_weak_ref
;
3534 r_type
= ELFNN_R_TYPE (rel
->r_info
);
3535 if (r_type
> R_IA64_MAX_RELOC_CODE
)
3537 (*_bfd_error_handler
)
3538 (_("%s: unknown relocation type %d"),
3539 bfd_archive_filename (input_bfd
), (int)r_type
);
3540 bfd_set_error (bfd_error_bad_value
);
3544 howto
= lookup_howto (r_type
);
3545 r_symndx
= ELFNN_R_SYM (rel
->r_info
);
3547 if (info
->relocateable
)
3549 /* This is a relocateable link. We don't have to change
3550 anything, unless the reloc is against a section symbol,
3551 in which case we have to adjust according to where the
3552 section symbol winds up in the output section. */
3553 if (r_symndx
< symtab_hdr
->sh_info
)
3555 sym
= local_syms
+ r_symndx
;
3556 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
3558 sym_sec
= local_sections
[r_symndx
];
3559 rel
->r_addend
+= sym_sec
->output_offset
;
3565 /* This is a final link. */
3570 undef_weak_ref
= false;
3572 if (r_symndx
< symtab_hdr
->sh_info
)
3574 /* Reloc against local symbol. */
3575 sym
= local_syms
+ r_symndx
;
3576 sym_sec
= local_sections
[r_symndx
];
3577 value
= _bfd_elf_rela_local_sym (output_bfd
, sym
, sym_sec
, rel
);
3578 if ((sym_sec
->flags
& SEC_MERGE
)
3579 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
3580 && (elf_section_data (sym_sec
)->sec_info_type
3581 == ELF_INFO_TYPE_MERGE
))
3583 struct elfNN_ia64_local_hash_entry
*loc_h
;
3585 loc_h
= get_local_sym_hash (ia64_info
, input_bfd
, rel
, false);
3586 if (loc_h
&& ! loc_h
->sec_merge_done
)
3588 struct elfNN_ia64_dyn_sym_info
*dynent
;
3591 for (dynent
= loc_h
->info
; dynent
; dynent
= dynent
->next
)
3595 _bfd_merged_section_offset (output_bfd
, &msec
,
3596 elf_section_data (msec
)->
3601 dynent
->addend
-= sym
->st_value
;
3602 dynent
->addend
+= msec
->output_section
->vma
3603 + msec
->output_offset
3604 - sym_sec
->output_section
->vma
3605 - sym_sec
->output_offset
;
3607 loc_h
->sec_merge_done
= 1;
3615 /* Reloc against global symbol. */
3616 indx
= r_symndx
- symtab_hdr
->sh_info
;
3617 h
= elf_sym_hashes (input_bfd
)[indx
];
3618 while (h
->root
.type
== bfd_link_hash_indirect
3619 || h
->root
.type
== bfd_link_hash_warning
)
3620 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
3623 if (h
->root
.type
== bfd_link_hash_defined
3624 || h
->root
.type
== bfd_link_hash_defweak
)
3626 sym_sec
= h
->root
.u
.def
.section
;
3628 /* Detect the cases that sym_sec->output_section is
3629 expected to be NULL -- all cases in which the symbol
3630 is defined in another shared module. This includes
3631 PLT relocs for which we've created a PLT entry and
3632 other relocs for which we're prepared to create
3633 dynamic relocations. */
3634 /* ??? Just accept it NULL and continue. */
3636 if (sym_sec
->output_section
!= NULL
)
3638 value
= (h
->root
.u
.def
.value
3639 + sym_sec
->output_section
->vma
3640 + sym_sec
->output_offset
);
3643 else if (h
->root
.type
== bfd_link_hash_undefweak
)
3644 undef_weak_ref
= true;
3645 else if (info
->shared
3646 && (!info
->symbolic
|| info
->allow_shlib_undefined
)
3647 && !info
->no_undefined
3648 && ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
)
3652 if (! ((*info
->callbacks
->undefined_symbol
)
3653 (info
, h
->root
.root
.string
, input_bfd
,
3654 input_section
, rel
->r_offset
,
3655 (!info
->shared
|| info
->no_undefined
3656 || ELF_ST_VISIBILITY (h
->other
)))))
3663 hit_addr
= contents
+ rel
->r_offset
;
3664 value
+= rel
->r_addend
;
3665 dynamic_symbol_p
= elfNN_ia64_dynamic_symbol_p (h
, info
);
3676 case R_IA64_DIR32MSB
:
3677 case R_IA64_DIR32LSB
:
3678 case R_IA64_DIR64MSB
:
3679 case R_IA64_DIR64LSB
:
3680 /* Install a dynamic relocation for this reloc. */
3681 if ((dynamic_symbol_p
|| info
->shared
3682 || (elfNN_ia64_aix_vec (info
->hash
->creator
)
3683 /* Don't emit relocs for __GLOB_DATA_PTR on AIX. */
3684 && (!h
|| strcmp (h
->root
.root
.string
,
3685 "__GLOB_DATA_PTR") != 0)))
3687 && (input_section
->flags
& SEC_ALLOC
) != 0)
3689 unsigned int dyn_r_type
;
3693 BFD_ASSERT (srel
!= NULL
);
3695 /* If we don't need dynamic symbol lookup, find a
3696 matching RELATIVE relocation. */
3697 dyn_r_type
= r_type
;
3698 if (dynamic_symbol_p
)
3700 dynindx
= h
->dynindx
;
3701 addend
= rel
->r_addend
;
3708 case R_IA64_DIR32MSB
:
3709 dyn_r_type
= R_IA64_REL32MSB
;
3711 case R_IA64_DIR32LSB
:
3712 dyn_r_type
= R_IA64_REL32LSB
;
3714 case R_IA64_DIR64MSB
:
3715 dyn_r_type
= R_IA64_REL64MSB
;
3717 case R_IA64_DIR64LSB
:
3718 dyn_r_type
= R_IA64_REL64LSB
;
3722 /* We can't represent this without a dynamic symbol.
3723 Adjust the relocation to be against an output
3724 section symbol, which are always present in the
3725 dynamic symbol table. */
3726 /* ??? People shouldn't be doing non-pic code in
3727 shared libraries. Hork. */
3728 (*_bfd_error_handler
)
3729 (_("%s: linking non-pic code in a shared library"),
3730 bfd_archive_filename (input_bfd
));
3738 if (elfNN_ia64_aix_vec (info
->hash
->creator
))
3739 rel
->r_addend
= value
;
3740 elfNN_ia64_install_dyn_reloc (output_bfd
, info
, input_section
,
3741 srel
, rel
->r_offset
, dyn_r_type
,
3746 case R_IA64_LTV32MSB
:
3747 case R_IA64_LTV32LSB
:
3748 case R_IA64_LTV64MSB
:
3749 case R_IA64_LTV64LSB
:
3750 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
, value
, r_type
);
3753 case R_IA64_GPREL22
:
3754 case R_IA64_GPREL64I
:
3755 case R_IA64_GPREL32MSB
:
3756 case R_IA64_GPREL32LSB
:
3757 case R_IA64_GPREL64MSB
:
3758 case R_IA64_GPREL64LSB
:
3759 if (dynamic_symbol_p
)
3761 (*_bfd_error_handler
)
3762 (_("%s: @gprel relocation against dynamic symbol %s"),
3763 bfd_archive_filename (input_bfd
), h
->root
.root
.string
);
3768 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
, value
, r_type
);
3771 case R_IA64_LTOFF22
:
3772 case R_IA64_LTOFF22X
:
3773 case R_IA64_LTOFF64I
:
3774 dyn_i
= get_dyn_sym_info (ia64_info
, h
, input_bfd
, rel
, false);
3775 value
= set_got_entry (input_bfd
, info
, dyn_i
, (h
? h
->dynindx
: -1),
3776 rel
->r_addend
, value
, R_IA64_DIR64LSB
);
3778 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
, value
, r_type
);
3781 case R_IA64_PLTOFF22
:
3782 case R_IA64_PLTOFF64I
:
3783 case R_IA64_PLTOFF64MSB
:
3784 case R_IA64_PLTOFF64LSB
:
3785 dyn_i
= get_dyn_sym_info (ia64_info
, h
, input_bfd
, rel
, false);
3786 value
= set_pltoff_entry (output_bfd
, info
, dyn_i
, value
, false);
3788 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
, value
, r_type
);
3791 case R_IA64_FPTR64I
:
3792 case R_IA64_FPTR32MSB
:
3793 case R_IA64_FPTR32LSB
:
3794 case R_IA64_FPTR64MSB
:
3795 case R_IA64_FPTR64LSB
:
3796 dyn_i
= get_dyn_sym_info (ia64_info
, h
, input_bfd
, rel
, false);
3797 if (dyn_i
->want_fptr
)
3799 if (!undef_weak_ref
)
3800 value
= set_fptr_entry (output_bfd
, info
, dyn_i
, value
);
3806 /* Otherwise, we expect the dynamic linker to create
3811 if (h
->dynindx
!= -1)
3812 dynindx
= h
->dynindx
;
3814 dynindx
= (_bfd_elf_link_lookup_local_dynindx
3815 (info
, h
->root
.u
.def
.section
->owner
,
3816 global_sym_index (h
)));
3820 dynindx
= (_bfd_elf_link_lookup_local_dynindx
3821 (info
, input_bfd
, (long) r_symndx
));
3824 elfNN_ia64_install_dyn_reloc (output_bfd
, info
, input_section
,
3825 srel
, rel
->r_offset
, r_type
,
3826 dynindx
, rel
->r_addend
);
3830 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
, value
, r_type
);
3833 case R_IA64_LTOFF_FPTR22
:
3834 case R_IA64_LTOFF_FPTR64I
:
3835 case R_IA64_LTOFF_FPTR32MSB
:
3836 case R_IA64_LTOFF_FPTR32LSB
:
3837 case R_IA64_LTOFF_FPTR64MSB
:
3838 case R_IA64_LTOFF_FPTR64LSB
:
3842 dyn_i
= get_dyn_sym_info (ia64_info
, h
, input_bfd
, rel
, false);
3843 if (dyn_i
->want_fptr
)
3845 BFD_ASSERT (h
== NULL
|| h
->dynindx
== -1)
3846 if (!undef_weak_ref
)
3847 value
= set_fptr_entry (output_bfd
, info
, dyn_i
, value
);
3852 /* Otherwise, we expect the dynamic linker to create
3856 if (h
->dynindx
!= -1)
3857 dynindx
= h
->dynindx
;
3859 dynindx
= (_bfd_elf_link_lookup_local_dynindx
3860 (info
, h
->root
.u
.def
.section
->owner
,
3861 global_sym_index (h
)));
3864 dynindx
= (_bfd_elf_link_lookup_local_dynindx
3865 (info
, input_bfd
, (long) r_symndx
));
3869 value
= set_got_entry (output_bfd
, info
, dyn_i
, dynindx
,
3870 rel
->r_addend
, value
, R_IA64_FPTR64LSB
);
3872 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
, value
, r_type
);
3876 case R_IA64_PCREL32MSB
:
3877 case R_IA64_PCREL32LSB
:
3878 case R_IA64_PCREL64MSB
:
3879 case R_IA64_PCREL64LSB
:
3880 /* Install a dynamic relocation for this reloc. */
3881 if ((dynamic_symbol_p
3882 || elfNN_ia64_aix_vec (info
->hash
->creator
))
3885 BFD_ASSERT (srel
!= NULL
);
3887 elfNN_ia64_install_dyn_reloc (output_bfd
, info
, input_section
,
3888 srel
, rel
->r_offset
, r_type
,
3889 h
->dynindx
, rel
->r_addend
);
3893 case R_IA64_PCREL21BI
:
3894 case R_IA64_PCREL21F
:
3895 case R_IA64_PCREL21M
:
3896 /* ??? These two are only used for speculation fixup code.
3897 They should never be dynamic. */
3898 if (dynamic_symbol_p
)
3900 (*_bfd_error_handler
)
3901 (_("%s: dynamic relocation against speculation fixup"),
3902 bfd_archive_filename (input_bfd
));
3908 (*_bfd_error_handler
)
3909 (_("%s: speculation fixup against undefined weak symbol"),
3910 bfd_archive_filename (input_bfd
));
3916 case R_IA64_PCREL21B
:
3917 case R_IA64_PCREL60B
:
3918 /* We should have created a PLT entry for any dynamic symbol. */
3921 dyn_i
= get_dyn_sym_info (ia64_info
, h
, NULL
, NULL
, false);
3923 if (dyn_i
&& dyn_i
->want_plt2
)
3925 /* Should have caught this earlier. */
3926 BFD_ASSERT (rel
->r_addend
== 0);
3928 value
= (ia64_info
->plt_sec
->output_section
->vma
3929 + ia64_info
->plt_sec
->output_offset
3930 + dyn_i
->plt2_offset
);
3934 /* Since there's no PLT entry, Validate that this is
3936 BFD_ASSERT (undef_weak_ref
|| sym_sec
->output_section
!= NULL
);
3938 /* If the symbol is undef_weak, we shouldn't be trying
3939 to call it. There's every chance that we'd wind up
3940 with an out-of-range fixup here. Don't bother setting
3941 any value at all. */
3947 case R_IA64_PCREL22
:
3948 case R_IA64_PCREL64I
:
3950 /* Make pc-relative. */
3951 value
-= (input_section
->output_section
->vma
3952 + input_section
->output_offset
3953 + rel
->r_offset
) & ~ (bfd_vma
) 0x3;
3954 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
, value
, r_type
);
3957 case R_IA64_SEGREL32MSB
:
3958 case R_IA64_SEGREL32LSB
:
3959 case R_IA64_SEGREL64MSB
:
3960 case R_IA64_SEGREL64LSB
:
3963 /* If the input section was discarded from the output, then
3969 struct elf_segment_map
*m
;
3970 Elf_Internal_Phdr
*p
;
3972 /* Find the segment that contains the output_section. */
3973 for (m
= elf_tdata (output_bfd
)->segment_map
,
3974 p
= elf_tdata (output_bfd
)->phdr
;
3979 for (i
= m
->count
- 1; i
>= 0; i
--)
3980 if (m
->sections
[i
] == sym_sec
->output_section
)
3988 r
= bfd_reloc_notsupported
;
3992 /* The VMA of the segment is the vaddr of the associated
3994 if (value
> p
->p_vaddr
)
3995 value
-= p
->p_vaddr
;
3998 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
, value
,
4004 case R_IA64_SECREL32MSB
:
4005 case R_IA64_SECREL32LSB
:
4006 case R_IA64_SECREL64MSB
:
4007 case R_IA64_SECREL64LSB
:
4008 /* Make output-section relative. */
4009 if (value
> input_section
->output_section
->vma
)
4010 value
-= input_section
->output_section
->vma
;
4013 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
, value
, r_type
);
4016 case R_IA64_IPLTMSB
:
4017 case R_IA64_IPLTLSB
:
4018 /* Install a dynamic relocation for this reloc. */
4019 if ((dynamic_symbol_p
|| info
->shared
)
4020 && (input_section
->flags
& SEC_ALLOC
) != 0)
4022 BFD_ASSERT (srel
!= NULL
);
4024 /* If we don't need dynamic symbol lookup, install two
4025 RELATIVE relocations. */
4026 if (! dynamic_symbol_p
)
4028 unsigned int dyn_r_type
;
4030 if (r_type
== R_IA64_IPLTMSB
)
4031 dyn_r_type
= R_IA64_REL64MSB
;
4033 dyn_r_type
= R_IA64_REL64LSB
;
4035 elfNN_ia64_install_dyn_reloc (output_bfd
, info
,
4037 srel
, rel
->r_offset
,
4038 dyn_r_type
, 0, value
);
4039 elfNN_ia64_install_dyn_reloc (output_bfd
, info
,
4041 srel
, rel
->r_offset
+ 8,
4042 dyn_r_type
, 0, gp_val
);
4045 elfNN_ia64_install_dyn_reloc (output_bfd
, info
, input_section
,
4046 srel
, rel
->r_offset
, r_type
,
4047 h
->dynindx
, rel
->r_addend
);
4050 if (r_type
== R_IA64_IPLTMSB
)
4051 r_type
= R_IA64_DIR64MSB
;
4053 r_type
= R_IA64_DIR64LSB
;
4054 elfNN_ia64_install_value (output_bfd
, hit_addr
, value
, r_type
);
4055 r
= elfNN_ia64_install_value (output_bfd
, hit_addr
+ 8, gp_val
,
4060 r
= bfd_reloc_notsupported
;
4069 case bfd_reloc_undefined
:
4070 /* This can happen for global table relative relocs if
4071 __gp is undefined. This is a panic situation so we
4072 don't try to continue. */
4073 (*info
->callbacks
->undefined_symbol
)
4074 (info
, "__gp", input_bfd
, input_section
, rel
->r_offset
, 1);
4077 case bfd_reloc_notsupported
:
4082 name
= h
->root
.root
.string
;
4085 name
= bfd_elf_string_from_elf_section (input_bfd
,
4086 symtab_hdr
->sh_link
,
4091 name
= bfd_section_name (input_bfd
, input_section
);
4093 if (!(*info
->callbacks
->warning
) (info
, _("unsupported reloc"),
4095 input_section
, rel
->r_offset
))
4101 case bfd_reloc_dangerous
:
4102 case bfd_reloc_outofrange
:
4103 case bfd_reloc_overflow
:
4109 name
= h
->root
.root
.string
;
4112 name
= bfd_elf_string_from_elf_section (input_bfd
,
4113 symtab_hdr
->sh_link
,
4118 name
= bfd_section_name (input_bfd
, input_section
);
4120 if (!(*info
->callbacks
->reloc_overflow
) (info
, name
,
4137 elfNN_ia64_finish_dynamic_symbol (output_bfd
, info
, h
, sym
)
4139 struct bfd_link_info
*info
;
4140 struct elf_link_hash_entry
*h
;
4141 Elf_Internal_Sym
*sym
;
4143 struct elfNN_ia64_link_hash_table
*ia64_info
;
4144 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
4146 ia64_info
= elfNN_ia64_hash_table (info
);
4147 dyn_i
= get_dyn_sym_info (ia64_info
, h
, NULL
, NULL
, false);
4149 /* Fill in the PLT data, if required. */
4150 if (dyn_i
&& dyn_i
->want_plt
)
4152 Elf_Internal_Rela outrel
;
4155 bfd_vma plt_addr
, pltoff_addr
, gp_val
, index
;
4156 ElfNN_External_Rela
*rel
;
4158 gp_val
= _bfd_get_gp_value (output_bfd
);
4160 /* Initialize the minimal PLT entry. */
4162 index
= (dyn_i
->plt_offset
- PLT_HEADER_SIZE
) / PLT_MIN_ENTRY_SIZE
;
4163 plt_sec
= ia64_info
->plt_sec
;
4164 loc
= plt_sec
->contents
+ dyn_i
->plt_offset
;
4166 memcpy (loc
, plt_min_entry
, PLT_MIN_ENTRY_SIZE
);
4167 elfNN_ia64_install_value (output_bfd
, loc
, index
, R_IA64_IMM22
);
4168 elfNN_ia64_install_value (output_bfd
, loc
+2, -dyn_i
->plt_offset
,
4171 plt_addr
= (plt_sec
->output_section
->vma
4172 + plt_sec
->output_offset
4173 + dyn_i
->plt_offset
);
4174 pltoff_addr
= set_pltoff_entry (output_bfd
, info
, dyn_i
, plt_addr
, true);
4176 /* Initialize the FULL PLT entry, if needed. */
4177 if (dyn_i
->want_plt2
)
4179 loc
= plt_sec
->contents
+ dyn_i
->plt2_offset
;
4181 memcpy (loc
, plt_full_entry
, PLT_FULL_ENTRY_SIZE
);
4182 elfNN_ia64_install_value (output_bfd
, loc
, pltoff_addr
- gp_val
,
4185 /* Mark the symbol as undefined, rather than as defined in the
4186 plt section. Leave the value alone. */
4187 /* ??? We didn't redefine it in adjust_dynamic_symbol in the
4188 first place. But perhaps elflink.h did some for us. */
4189 if ((h
->elf_link_hash_flags
& ELF_LINK_HASH_DEF_REGULAR
) == 0)
4190 sym
->st_shndx
= SHN_UNDEF
;
4193 /* Create the dynamic relocation. */
4194 outrel
.r_offset
= pltoff_addr
;
4195 if (bfd_little_endian (output_bfd
))
4196 outrel
.r_info
= ELFNN_R_INFO (h
->dynindx
, R_IA64_IPLTLSB
);
4198 outrel
.r_info
= ELFNN_R_INFO (h
->dynindx
, R_IA64_IPLTMSB
);
4199 outrel
.r_addend
= 0;
4201 /* This is fun. In the .IA_64.pltoff section, we've got entries
4202 that correspond both to real PLT entries, and those that
4203 happened to resolve to local symbols but need to be created
4204 to satisfy @pltoff relocations. The .rela.IA_64.pltoff
4205 relocations for the real PLT should come at the end of the
4206 section, so that they can be indexed by plt entry at runtime.
4208 We emitted all of the relocations for the non-PLT @pltoff
4209 entries during relocate_section. So we can consider the
4210 existing sec->reloc_count to be the base of the array of
4213 rel
= (ElfNN_External_Rela
*)ia64_info
->rel_pltoff_sec
->contents
;
4214 rel
+= ia64_info
->rel_pltoff_sec
->reloc_count
;
4216 bfd_elfNN_swap_reloca_out (output_bfd
, &outrel
, rel
+ index
);
4219 /* Mark some specially defined symbols as absolute. */
4220 if (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
4221 || strcmp (h
->root
.root
.string
, "_GLOBAL_OFFSET_TABLE_") == 0
4222 || strcmp (h
->root
.root
.string
, "_PROCEDURE_LINKAGE_TABLE_") == 0)
4223 sym
->st_shndx
= SHN_ABS
;
4229 elfNN_ia64_finish_dynamic_sections (abfd
, info
)
4231 struct bfd_link_info
*info
;
4233 struct elfNN_ia64_link_hash_table
*ia64_info
;
4236 ia64_info
= elfNN_ia64_hash_table (info
);
4237 dynobj
= ia64_info
->root
.dynobj
;
4239 if (elf_hash_table (info
)->dynamic_sections_created
)
4241 ElfNN_External_Dyn
*dyncon
, *dynconend
;
4242 asection
*sdyn
, *sgotplt
;
4245 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
4246 sgotplt
= bfd_get_section_by_name (dynobj
, ".got.plt");
4247 BFD_ASSERT (sdyn
!= NULL
);
4248 dyncon
= (ElfNN_External_Dyn
*) sdyn
->contents
;
4249 dynconend
= (ElfNN_External_Dyn
*) (sdyn
->contents
+ sdyn
->_raw_size
);
4251 gp_val
= _bfd_get_gp_value (abfd
);
4253 for (; dyncon
< dynconend
; dyncon
++)
4255 Elf_Internal_Dyn dyn
;
4257 bfd_elfNN_swap_dyn_in (dynobj
, dyncon
, &dyn
);
4262 dyn
.d_un
.d_ptr
= gp_val
;
4266 dyn
.d_un
.d_val
= (ia64_info
->minplt_entries
4267 * sizeof (ElfNN_External_Rela
));
4271 /* See the comment above in finish_dynamic_symbol. */
4272 dyn
.d_un
.d_ptr
= (ia64_info
->rel_pltoff_sec
->output_section
->vma
4273 + ia64_info
->rel_pltoff_sec
->output_offset
4274 + (ia64_info
->rel_pltoff_sec
->reloc_count
4275 * sizeof (ElfNN_External_Rela
)));
4278 case DT_IA_64_PLT_RESERVE
:
4279 dyn
.d_un
.d_ptr
= (sgotplt
->output_section
->vma
4280 + sgotplt
->output_offset
);
4284 /* Do not have RELASZ include JMPREL. This makes things
4285 easier on ld.so. This is not what the rest of BFD set up. */
4286 dyn
.d_un
.d_val
-= (ia64_info
->minplt_entries
4287 * sizeof (ElfNN_External_Rela
));
4291 bfd_elfNN_swap_dyn_out (abfd
, &dyn
, dyncon
);
4294 /* Initialize the PLT0 entry */
4295 if (ia64_info
->plt_sec
)
4297 bfd_byte
*loc
= ia64_info
->plt_sec
->contents
;
4300 memcpy (loc
, plt_header
, PLT_HEADER_SIZE
);
4302 pltres
= (sgotplt
->output_section
->vma
4303 + sgotplt
->output_offset
4306 elfNN_ia64_install_value (abfd
, loc
+1, pltres
, R_IA64_GPREL22
);
4313 /* ELF file flag handling: */
4315 /* Function to keep IA-64 specific file flags. */
4317 elfNN_ia64_set_private_flags (abfd
, flags
)
4321 BFD_ASSERT (!elf_flags_init (abfd
)
4322 || elf_elfheader (abfd
)->e_flags
== flags
);
4324 elf_elfheader (abfd
)->e_flags
= flags
;
4325 elf_flags_init (abfd
) = true;
4329 /* Merge backend specific data from an object file to the output
4330 object file when linking. */
4332 elfNN_ia64_merge_private_bfd_data (ibfd
, obfd
)
4339 /* Don't even pretend to support mixed-format linking. */
4340 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
4341 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
4344 in_flags
= elf_elfheader (ibfd
)->e_flags
;
4345 out_flags
= elf_elfheader (obfd
)->e_flags
;
4347 if (! elf_flags_init (obfd
))
4349 elf_flags_init (obfd
) = true;
4350 elf_elfheader (obfd
)->e_flags
= in_flags
;
4352 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
4353 && bfd_get_arch_info (obfd
)->the_default
)
4355 return bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
4356 bfd_get_mach (ibfd
));
4362 /* Check flag compatibility. */
4363 if (in_flags
== out_flags
)
4366 /* Output has EF_IA_64_REDUCEDFP set only if all inputs have it set. */
4367 if (!(in_flags
& EF_IA_64_REDUCEDFP
) && (out_flags
& EF_IA_64_REDUCEDFP
))
4368 elf_elfheader (obfd
)->e_flags
&= ~EF_IA_64_REDUCEDFP
;
4370 if ((in_flags
& EF_IA_64_TRAPNIL
) != (out_flags
& EF_IA_64_TRAPNIL
))
4372 (*_bfd_error_handler
)
4373 (_("%s: linking trap-on-NULL-dereference with non-trapping files"),
4374 bfd_archive_filename (ibfd
));
4376 bfd_set_error (bfd_error_bad_value
);
4379 if ((in_flags
& EF_IA_64_BE
) != (out_flags
& EF_IA_64_BE
))
4381 (*_bfd_error_handler
)
4382 (_("%s: linking big-endian files with little-endian files"),
4383 bfd_archive_filename (ibfd
));
4385 bfd_set_error (bfd_error_bad_value
);
4388 if ((in_flags
& EF_IA_64_ABI64
) != (out_flags
& EF_IA_64_ABI64
))
4390 (*_bfd_error_handler
)
4391 (_("%s: linking 64-bit files with 32-bit files"),
4392 bfd_archive_filename (ibfd
));
4394 bfd_set_error (bfd_error_bad_value
);
4397 if ((in_flags
& EF_IA_64_CONS_GP
) != (out_flags
& EF_IA_64_CONS_GP
))
4399 (*_bfd_error_handler
)
4400 (_("%s: linking constant-gp files with non-constant-gp files"),
4401 bfd_archive_filename (ibfd
));
4403 bfd_set_error (bfd_error_bad_value
);
4406 if ((in_flags
& EF_IA_64_NOFUNCDESC_CONS_GP
)
4407 != (out_flags
& EF_IA_64_NOFUNCDESC_CONS_GP
))
4409 (*_bfd_error_handler
)
4410 (_("%s: linking auto-pic files with non-auto-pic files"),
4411 bfd_archive_filename (ibfd
));
4413 bfd_set_error (bfd_error_bad_value
);
4421 elfNN_ia64_print_private_bfd_data (abfd
, ptr
)
4425 FILE *file
= (FILE *) ptr
;
4426 flagword flags
= elf_elfheader (abfd
)->e_flags
;
4428 BFD_ASSERT (abfd
!= NULL
&& ptr
!= NULL
);
4430 fprintf (file
, "private flags = %s%s%s%s%s%s%s%s\n",
4431 (flags
& EF_IA_64_TRAPNIL
) ? "TRAPNIL, " : "",
4432 (flags
& EF_IA_64_EXT
) ? "EXT, " : "",
4433 (flags
& EF_IA_64_BE
) ? "BE, " : "LE, ",
4434 (flags
& EF_IA_64_REDUCEDFP
) ? "REDUCEDFP, " : "",
4435 (flags
& EF_IA_64_CONS_GP
) ? "CONS_GP, " : "",
4436 (flags
& EF_IA_64_NOFUNCDESC_CONS_GP
) ? "NOFUNCDESC_CONS_GP, " : "",
4437 (flags
& EF_IA_64_ABSOLUTE
) ? "ABSOLUTE, " : "",
4438 (flags
& EF_IA_64_ABI64
) ? "ABI64" : "ABI32");
4440 _bfd_elf_print_private_bfd_data (abfd
, ptr
);
4444 static enum elf_reloc_type_class
4445 elfNN_ia64_reloc_type_class (rela
)
4446 const Elf_Internal_Rela
*rela
;
4448 switch ((int) ELFNN_R_TYPE (rela
->r_info
))
4450 case R_IA64_REL32MSB
:
4451 case R_IA64_REL32LSB
:
4452 case R_IA64_REL64MSB
:
4453 case R_IA64_REL64LSB
:
4454 return reloc_class_relative
;
4455 case R_IA64_IPLTMSB
:
4456 case R_IA64_IPLTLSB
:
4457 return reloc_class_plt
;
4459 return reloc_class_copy
;
4461 return reloc_class_normal
;
4466 elfNN_ia64_hpux_vec (const bfd_target
*vec
)
4468 extern const bfd_target bfd_elfNN_ia64_hpux_big_vec
;
4469 return (vec
== & bfd_elfNN_ia64_hpux_big_vec
);
4473 elfNN_hpux_post_process_headers (abfd
, info
)
4475 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
4477 Elf_Internal_Ehdr
*i_ehdrp
= elf_elfheader (abfd
);
4479 i_ehdrp
->e_ident
[EI_OSABI
] = ELFOSABI_HPUX
;
4480 i_ehdrp
->e_ident
[EI_ABIVERSION
] = 1;
4484 elfNN_hpux_backend_section_from_bfd_section (abfd
, sec
, retval
)
4485 bfd
*abfd ATTRIBUTE_UNUSED
;
4489 if (bfd_is_com_section (sec
))
4491 *retval
= SHN_IA_64_ANSI_COMMON
;
4497 #define TARGET_LITTLE_SYM bfd_elfNN_ia64_little_vec
4498 #define TARGET_LITTLE_NAME "elfNN-ia64-little"
4499 #define TARGET_BIG_SYM bfd_elfNN_ia64_big_vec
4500 #define TARGET_BIG_NAME "elfNN-ia64-big"
4501 #define ELF_ARCH bfd_arch_ia64
4502 #define ELF_MACHINE_CODE EM_IA_64
4503 #define ELF_MACHINE_ALT1 1999 /* EAS2.3 */
4504 #define ELF_MACHINE_ALT2 1998 /* EAS2.2 */
4505 #define ELF_MAXPAGESIZE 0x10000 /* 64KB */
4507 #define elf_backend_section_from_shdr \
4508 elfNN_ia64_section_from_shdr
4509 #define elf_backend_section_flags \
4510 elfNN_ia64_section_flags
4511 #define elf_backend_fake_sections \
4512 elfNN_ia64_fake_sections
4513 #define elf_backend_final_write_processing \
4514 elfNN_ia64_final_write_processing
4515 #define elf_backend_add_symbol_hook \
4516 elfNN_ia64_add_symbol_hook
4517 #define elf_backend_additional_program_headers \
4518 elfNN_ia64_additional_program_headers
4519 #define elf_backend_modify_segment_map \
4520 elfNN_ia64_modify_segment_map
4521 #define elf_info_to_howto \
4522 elfNN_ia64_info_to_howto
4524 #define bfd_elfNN_bfd_reloc_type_lookup \
4525 elfNN_ia64_reloc_type_lookup
4526 #define bfd_elfNN_bfd_is_local_label_name \
4527 elfNN_ia64_is_local_label_name
4528 #define bfd_elfNN_bfd_relax_section \
4529 elfNN_ia64_relax_section
4531 /* Stuff for the BFD linker: */
4532 #define bfd_elfNN_bfd_link_hash_table_create \
4533 elfNN_ia64_hash_table_create
4534 #define elf_backend_create_dynamic_sections \
4535 elfNN_ia64_create_dynamic_sections
4536 #define elf_backend_check_relocs \
4537 elfNN_ia64_check_relocs
4538 #define elf_backend_adjust_dynamic_symbol \
4539 elfNN_ia64_adjust_dynamic_symbol
4540 #define elf_backend_size_dynamic_sections \
4541 elfNN_ia64_size_dynamic_sections
4542 #define elf_backend_relocate_section \
4543 elfNN_ia64_relocate_section
4544 #define elf_backend_finish_dynamic_symbol \
4545 elfNN_ia64_finish_dynamic_symbol
4546 #define elf_backend_finish_dynamic_sections \
4547 elfNN_ia64_finish_dynamic_sections
4548 #define bfd_elfNN_bfd_final_link \
4549 elfNN_ia64_final_link
4551 #define bfd_elfNN_bfd_merge_private_bfd_data \
4552 elfNN_ia64_merge_private_bfd_data
4553 #define bfd_elfNN_bfd_set_private_flags \
4554 elfNN_ia64_set_private_flags
4555 #define bfd_elfNN_bfd_print_private_bfd_data \
4556 elfNN_ia64_print_private_bfd_data
4558 #define elf_backend_plt_readonly 1
4559 #define elf_backend_want_plt_sym 0
4560 #define elf_backend_plt_alignment 5
4561 #define elf_backend_got_header_size 0
4562 #define elf_backend_plt_header_size PLT_HEADER_SIZE
4563 #define elf_backend_want_got_plt 1
4564 #define elf_backend_may_use_rel_p 1
4565 #define elf_backend_may_use_rela_p 1
4566 #define elf_backend_default_use_rela_p 1
4567 #define elf_backend_want_dynbss 0
4568 #define elf_backend_copy_indirect_symbol elfNN_ia64_hash_copy_indirect
4569 #define elf_backend_hide_symbol elfNN_ia64_hash_hide_symbol
4570 #define elf_backend_reloc_type_class elfNN_ia64_reloc_type_class
4572 #include "elfNN-target.h"
4574 /* AIX-specific vectors. */
4576 #undef TARGET_LITTLE_SYM
4577 #define TARGET_LITTLE_SYM bfd_elfNN_ia64_aix_little_vec
4578 #undef TARGET_LITTLE_NAME
4579 #define TARGET_LITTLE_NAME "elfNN-ia64-aix-little"
4580 #undef TARGET_BIG_SYM
4581 #define TARGET_BIG_SYM bfd_elfNN_ia64_aix_big_vec
4582 #undef TARGET_BIG_NAME
4583 #define TARGET_BIG_NAME "elfNN-ia64-aix-big"
4585 #undef elf_backend_add_symbol_hook
4586 #define elf_backend_add_symbol_hook elfNN_ia64_aix_add_symbol_hook
4588 #undef bfd_elfNN_bfd_link_add_symbols
4589 #define bfd_elfNN_bfd_link_add_symbols elfNN_ia64_aix_link_add_symbols
4591 #define elfNN_bed elfNN_ia64_aix_bed
4593 #include "elfNN-target.h"
4595 /* HPUX-specific vectors. */
4597 #undef TARGET_LITTLE_SYM
4598 #undef TARGET_LITTLE_NAME
4599 #undef TARGET_BIG_SYM
4600 #define TARGET_BIG_SYM bfd_elfNN_ia64_hpux_big_vec
4601 #undef TARGET_BIG_NAME
4602 #define TARGET_BIG_NAME "elfNN-ia64-hpux-big"
4604 #undef elf_backend_post_process_headers
4605 #define elf_backend_post_process_headers elfNN_hpux_post_process_headers
4607 #undef elf_backend_section_from_bfd_section
4608 #define elf_backend_section_from_bfd_section elfNN_hpux_backend_section_from_bfd_section
4610 #undef ELF_MAXPAGESIZE
4611 #define ELF_MAXPAGESIZE 0x1000 /* 1K */
4614 #define elfNN_bed elfNN_ia64_hpux_bed
4616 #include "elfNN-target.h"