1 /* IA-64 support for 64-bit ELF
2 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
4 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
26 #include "opcode/ia64.h"
34 #define LOG_SECTION_ALIGN 3
38 #define LOG_SECTION_ALIGN 2
41 /* THE RULES for all the stuff the linker creates --
43 GOT Entries created in response to LTOFF or LTOFF_FPTR
44 relocations. Dynamic relocs created for dynamic
45 symbols in an application; REL relocs for locals
48 FPTR The canonical function descriptor. Created for local
49 symbols in applications. Descriptors for dynamic symbols
50 and local symbols in shared libraries are created by
51 ld.so. Thus there are no dynamic relocs against these
52 objects. The FPTR relocs for such _are_ passed through
53 to the dynamic relocation tables.
55 FULL_PLT Created for a PCREL21B relocation against a dynamic symbol.
56 Requires the creation of a PLTOFF entry. This does not
57 require any dynamic relocations.
59 PLTOFF Created by PLTOFF relocations. For local symbols, this
60 is an alternate function descriptor, and in shared libraries
61 requires two REL relocations. Note that this cannot be
62 transformed into an FPTR relocation, since it must be in
63 range of the GP. For dynamic symbols, this is a function
64 descriptor for a MIN_PLT entry, and requires one IPLT reloc.
66 MIN_PLT Created by PLTOFF entries against dynamic symbols. This
67 does not require dynamic relocations. */
69 #define NELEMS(a) ((int) (sizeof (a) / sizeof ((a)[0])))
71 typedef struct bfd_hash_entry
*(*new_hash_entry_func
)
72 PARAMS ((struct bfd_hash_entry
*, struct bfd_hash_table
*, const char *));
74 /* In dynamically (linker-) created sections, we generally need to keep track
75 of the place a symbol or expression got allocated to. This is done via hash
76 tables that store entries of the following type. */
78 struct elfNN_ia64_dyn_sym_info
80 /* The addend for which this entry is relevant. */
83 /* Next addend in the list. */
84 struct elfNN_ia64_dyn_sym_info
*next
;
88 bfd_vma pltoff_offset
;
92 bfd_vma dtpmod_offset
;
93 bfd_vma dtprel_offset
;
95 /* The symbol table entry, if any, that this was derived from. */
96 struct elf_link_hash_entry
*h
;
98 /* Used to count non-got, non-plt relocations for delayed sizing
99 of relocation sections. */
100 struct elfNN_ia64_dyn_reloc_entry
102 struct elfNN_ia64_dyn_reloc_entry
*next
;
107 /* Is this reloc against readonly section? */
111 /* TRUE when the section contents have been updated. */
112 unsigned got_done
: 1;
113 unsigned fptr_done
: 1;
114 unsigned pltoff_done
: 1;
115 unsigned tprel_done
: 1;
116 unsigned dtpmod_done
: 1;
117 unsigned dtprel_done
: 1;
119 /* TRUE for the different kinds of linker data we want created. */
120 unsigned want_got
: 1;
121 unsigned want_gotx
: 1;
122 unsigned want_fptr
: 1;
123 unsigned want_ltoff_fptr
: 1;
124 unsigned want_plt
: 1;
125 unsigned want_plt2
: 1;
126 unsigned want_pltoff
: 1;
127 unsigned want_tprel
: 1;
128 unsigned want_dtpmod
: 1;
129 unsigned want_dtprel
: 1;
132 struct elfNN_ia64_local_hash_entry
136 struct elfNN_ia64_dyn_sym_info
*info
;
138 /* TRUE if this hash entry's addends was translated for
139 SHF_MERGE optimization. */
140 unsigned sec_merge_done
: 1;
143 struct elfNN_ia64_link_hash_entry
145 struct elf_link_hash_entry root
;
146 struct elfNN_ia64_dyn_sym_info
*info
;
149 struct elfNN_ia64_link_hash_table
151 /* The main hash table. */
152 struct elf_link_hash_table root
;
154 asection
*got_sec
; /* the linkage table section (or NULL) */
155 asection
*rel_got_sec
; /* dynamic relocation section for same */
156 asection
*fptr_sec
; /* function descriptor table (or NULL) */
157 asection
*rel_fptr_sec
; /* dynamic relocation section for same */
158 asection
*plt_sec
; /* the primary plt section (or NULL) */
159 asection
*pltoff_sec
; /* private descriptors for plt (or NULL) */
160 asection
*rel_pltoff_sec
; /* dynamic relocation section for same */
162 bfd_size_type minplt_entries
; /* number of minplt entries */
163 unsigned reltext
: 1; /* are there relocs against readonly sections? */
164 unsigned self_dtpmod_done
: 1;/* has self DTPMOD entry been finished? */
165 bfd_vma self_dtpmod_offset
; /* .got offset to self DTPMOD entry */
167 htab_t loc_hash_table
;
168 void *loc_hash_memory
;
171 struct elfNN_ia64_allocate_data
173 struct bfd_link_info
*info
;
175 bfd_boolean only_got
;
178 #define elfNN_ia64_hash_table(p) \
179 ((struct elfNN_ia64_link_hash_table *) ((p)->hash))
181 static bfd_reloc_status_type elfNN_ia64_reloc
182 PARAMS ((bfd
*abfd
, arelent
*reloc
, asymbol
*sym
, PTR data
,
183 asection
*input_section
, bfd
*output_bfd
, char **error_message
));
184 static reloc_howto_type
* lookup_howto
185 PARAMS ((unsigned int rtype
));
186 static reloc_howto_type
*elfNN_ia64_reloc_type_lookup
187 PARAMS ((bfd
*abfd
, bfd_reloc_code_real_type bfd_code
));
188 static void elfNN_ia64_info_to_howto
189 PARAMS ((bfd
*abfd
, arelent
*bfd_reloc
, Elf_Internal_Rela
*elf_reloc
));
190 static bfd_boolean elfNN_ia64_relax_section
191 PARAMS((bfd
*abfd
, asection
*sec
, struct bfd_link_info
*link_info
,
192 bfd_boolean
*again
));
193 static void elfNN_ia64_relax_ldxmov
194 PARAMS((bfd_byte
*contents
, bfd_vma off
));
195 static bfd_boolean is_unwind_section_name
196 PARAMS ((bfd
*abfd
, const char *));
197 static bfd_boolean elfNN_ia64_section_flags
198 PARAMS ((flagword
*, const Elf_Internal_Shdr
*));
199 static bfd_boolean elfNN_ia64_fake_sections
200 PARAMS ((bfd
*abfd
, Elf_Internal_Shdr
*hdr
, asection
*sec
));
201 static void elfNN_ia64_final_write_processing
202 PARAMS ((bfd
*abfd
, bfd_boolean linker
));
203 static bfd_boolean elfNN_ia64_add_symbol_hook
204 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
, Elf_Internal_Sym
*sym
,
205 const char **namep
, flagword
*flagsp
, asection
**secp
,
207 static int elfNN_ia64_additional_program_headers
208 PARAMS ((bfd
*abfd
));
209 static bfd_boolean elfNN_ia64_modify_segment_map
210 PARAMS ((bfd
*, struct bfd_link_info
*));
211 static bfd_boolean elfNN_ia64_is_local_label_name
212 PARAMS ((bfd
*abfd
, const char *name
));
213 static bfd_boolean elfNN_ia64_dynamic_symbol_p
214 PARAMS ((struct elf_link_hash_entry
*h
, struct bfd_link_info
*info
, int));
215 static struct bfd_hash_entry
*elfNN_ia64_new_elf_hash_entry
216 PARAMS ((struct bfd_hash_entry
*entry
, struct bfd_hash_table
*table
,
217 const char *string
));
218 static void elfNN_ia64_hash_copy_indirect
219 PARAMS ((struct bfd_link_info
*, struct elf_link_hash_entry
*,
220 struct elf_link_hash_entry
*));
221 static void elfNN_ia64_hash_hide_symbol
222 PARAMS ((struct bfd_link_info
*, struct elf_link_hash_entry
*, bfd_boolean
));
223 static hashval_t elfNN_ia64_local_htab_hash
PARAMS ((const void *));
224 static int elfNN_ia64_local_htab_eq
PARAMS ((const void *ptr1
,
226 static struct bfd_link_hash_table
*elfNN_ia64_hash_table_create
227 PARAMS ((bfd
*abfd
));
228 static void elfNN_ia64_hash_table_free
229 PARAMS ((struct bfd_link_hash_table
*hash
));
230 static bfd_boolean elfNN_ia64_global_dyn_sym_thunk
231 PARAMS ((struct bfd_hash_entry
*, PTR
));
232 static int elfNN_ia64_local_dyn_sym_thunk
233 PARAMS ((void **, PTR
));
234 static void elfNN_ia64_dyn_sym_traverse
235 PARAMS ((struct elfNN_ia64_link_hash_table
*ia64_info
,
236 bfd_boolean (*func
) (struct elfNN_ia64_dyn_sym_info
*, PTR
),
238 static bfd_boolean elfNN_ia64_create_dynamic_sections
239 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
240 static struct elfNN_ia64_local_hash_entry
* get_local_sym_hash
241 PARAMS ((struct elfNN_ia64_link_hash_table
*ia64_info
,
242 bfd
*abfd
, const Elf_Internal_Rela
*rel
, bfd_boolean create
));
243 static struct elfNN_ia64_dyn_sym_info
* get_dyn_sym_info
244 PARAMS ((struct elfNN_ia64_link_hash_table
*ia64_info
,
245 struct elf_link_hash_entry
*h
,
246 bfd
*abfd
, const Elf_Internal_Rela
*rel
, bfd_boolean create
));
247 static asection
*get_got
248 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
249 struct elfNN_ia64_link_hash_table
*ia64_info
));
250 static asection
*get_fptr
251 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
252 struct elfNN_ia64_link_hash_table
*ia64_info
));
253 static asection
*get_pltoff
254 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
255 struct elfNN_ia64_link_hash_table
*ia64_info
));
256 static asection
*get_reloc_section
257 PARAMS ((bfd
*abfd
, struct elfNN_ia64_link_hash_table
*ia64_info
,
258 asection
*sec
, bfd_boolean create
));
259 static bfd_boolean elfNN_ia64_check_relocs
260 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
, asection
*sec
,
261 const Elf_Internal_Rela
*relocs
));
262 static bfd_boolean elfNN_ia64_adjust_dynamic_symbol
263 PARAMS ((struct bfd_link_info
*info
, struct elf_link_hash_entry
*h
));
264 static long global_sym_index
265 PARAMS ((struct elf_link_hash_entry
*h
));
266 static bfd_boolean allocate_fptr
267 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
268 static bfd_boolean allocate_global_data_got
269 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
270 static bfd_boolean allocate_global_fptr_got
271 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
272 static bfd_boolean allocate_local_got
273 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
274 static bfd_boolean allocate_pltoff_entries
275 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
276 static bfd_boolean allocate_plt_entries
277 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
278 static bfd_boolean allocate_plt2_entries
279 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
280 static bfd_boolean allocate_dynrel_entries
281 PARAMS ((struct elfNN_ia64_dyn_sym_info
*dyn_i
, PTR data
));
282 static bfd_boolean elfNN_ia64_size_dynamic_sections
283 PARAMS ((bfd
*output_bfd
, struct bfd_link_info
*info
));
284 static bfd_reloc_status_type elfNN_ia64_install_value
285 PARAMS ((bfd_byte
*hit_addr
, bfd_vma val
, unsigned int r_type
));
286 static void elfNN_ia64_install_dyn_reloc
287 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
, asection
*sec
,
288 asection
*srel
, bfd_vma offset
, unsigned int type
,
289 long dynindx
, bfd_vma addend
));
290 static bfd_vma set_got_entry
291 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
292 struct elfNN_ia64_dyn_sym_info
*dyn_i
, long dynindx
,
293 bfd_vma addend
, bfd_vma value
, unsigned int dyn_r_type
));
294 static bfd_vma set_fptr_entry
295 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
296 struct elfNN_ia64_dyn_sym_info
*dyn_i
,
298 static bfd_vma set_pltoff_entry
299 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
,
300 struct elfNN_ia64_dyn_sym_info
*dyn_i
,
301 bfd_vma value
, bfd_boolean
));
302 static bfd_vma elfNN_ia64_tprel_base
303 PARAMS ((struct bfd_link_info
*info
));
304 static bfd_vma elfNN_ia64_dtprel_base
305 PARAMS ((struct bfd_link_info
*info
));
306 static int elfNN_ia64_unwind_entry_compare
307 PARAMS ((const PTR
, const PTR
));
308 static bfd_boolean elfNN_ia64_choose_gp
309 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
310 static bfd_boolean elfNN_ia64_final_link
311 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
312 static bfd_boolean elfNN_ia64_relocate_section
313 PARAMS ((bfd
*output_bfd
, struct bfd_link_info
*info
, bfd
*input_bfd
,
314 asection
*input_section
, bfd_byte
*contents
,
315 Elf_Internal_Rela
*relocs
, Elf_Internal_Sym
*local_syms
,
316 asection
**local_sections
));
317 static bfd_boolean elfNN_ia64_finish_dynamic_symbol
318 PARAMS ((bfd
*output_bfd
, struct bfd_link_info
*info
,
319 struct elf_link_hash_entry
*h
, Elf_Internal_Sym
*sym
));
320 static bfd_boolean elfNN_ia64_finish_dynamic_sections
321 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
322 static bfd_boolean elfNN_ia64_set_private_flags
323 PARAMS ((bfd
*abfd
, flagword flags
));
324 static bfd_boolean elfNN_ia64_merge_private_bfd_data
325 PARAMS ((bfd
*ibfd
, bfd
*obfd
));
326 static bfd_boolean elfNN_ia64_print_private_bfd_data
327 PARAMS ((bfd
*abfd
, PTR ptr
));
328 static enum elf_reloc_type_class elfNN_ia64_reloc_type_class
329 PARAMS ((const Elf_Internal_Rela
*));
330 static bfd_boolean elfNN_ia64_hpux_vec
331 PARAMS ((const bfd_target
*vec
));
332 static void elfNN_hpux_post_process_headers
333 PARAMS ((bfd
*abfd
, struct bfd_link_info
*info
));
334 bfd_boolean elfNN_hpux_backend_section_from_bfd_section
335 PARAMS ((bfd
*abfd
, asection
*sec
, int *retval
));
337 /* ia64-specific relocation. */
339 /* Perform a relocation. Not much to do here as all the hard work is
340 done in elfNN_ia64_final_link_relocate. */
341 static bfd_reloc_status_type
342 elfNN_ia64_reloc (abfd
, reloc
, sym
, data
, input_section
,
343 output_bfd
, error_message
)
344 bfd
*abfd ATTRIBUTE_UNUSED
;
346 asymbol
*sym ATTRIBUTE_UNUSED
;
347 PTR data ATTRIBUTE_UNUSED
;
348 asection
*input_section
;
350 char **error_message
;
354 reloc
->address
+= input_section
->output_offset
;
358 if (input_section
->flags
& SEC_DEBUGGING
)
359 return bfd_reloc_continue
;
361 *error_message
= "Unsupported call to elfNN_ia64_reloc";
362 return bfd_reloc_notsupported
;
365 #define IA64_HOWTO(TYPE, NAME, SIZE, PCREL, IN) \
366 HOWTO (TYPE, 0, SIZE, 0, PCREL, 0, complain_overflow_signed, \
367 elfNN_ia64_reloc, NAME, FALSE, 0, -1, IN)
369 /* This table has to be sorted according to increasing number of the
371 static reloc_howto_type ia64_howto_table
[] =
373 IA64_HOWTO (R_IA64_NONE
, "NONE", 0, FALSE
, TRUE
),
375 IA64_HOWTO (R_IA64_IMM14
, "IMM14", 0, FALSE
, TRUE
),
376 IA64_HOWTO (R_IA64_IMM22
, "IMM22", 0, FALSE
, TRUE
),
377 IA64_HOWTO (R_IA64_IMM64
, "IMM64", 0, FALSE
, TRUE
),
378 IA64_HOWTO (R_IA64_DIR32MSB
, "DIR32MSB", 2, FALSE
, TRUE
),
379 IA64_HOWTO (R_IA64_DIR32LSB
, "DIR32LSB", 2, FALSE
, TRUE
),
380 IA64_HOWTO (R_IA64_DIR64MSB
, "DIR64MSB", 4, FALSE
, TRUE
),
381 IA64_HOWTO (R_IA64_DIR64LSB
, "DIR64LSB", 4, FALSE
, TRUE
),
383 IA64_HOWTO (R_IA64_GPREL22
, "GPREL22", 0, FALSE
, TRUE
),
384 IA64_HOWTO (R_IA64_GPREL64I
, "GPREL64I", 0, FALSE
, TRUE
),
385 IA64_HOWTO (R_IA64_GPREL32MSB
, "GPREL32MSB", 2, FALSE
, TRUE
),
386 IA64_HOWTO (R_IA64_GPREL32LSB
, "GPREL32LSB", 2, FALSE
, TRUE
),
387 IA64_HOWTO (R_IA64_GPREL64MSB
, "GPREL64MSB", 4, FALSE
, TRUE
),
388 IA64_HOWTO (R_IA64_GPREL64LSB
, "GPREL64LSB", 4, FALSE
, TRUE
),
390 IA64_HOWTO (R_IA64_LTOFF22
, "LTOFF22", 0, FALSE
, TRUE
),
391 IA64_HOWTO (R_IA64_LTOFF64I
, "LTOFF64I", 0, FALSE
, TRUE
),
393 IA64_HOWTO (R_IA64_PLTOFF22
, "PLTOFF22", 0, FALSE
, TRUE
),
394 IA64_HOWTO (R_IA64_PLTOFF64I
, "PLTOFF64I", 0, FALSE
, TRUE
),
395 IA64_HOWTO (R_IA64_PLTOFF64MSB
, "PLTOFF64MSB", 4, FALSE
, TRUE
),
396 IA64_HOWTO (R_IA64_PLTOFF64LSB
, "PLTOFF64LSB", 4, FALSE
, TRUE
),
398 IA64_HOWTO (R_IA64_FPTR64I
, "FPTR64I", 0, FALSE
, TRUE
),
399 IA64_HOWTO (R_IA64_FPTR32MSB
, "FPTR32MSB", 2, FALSE
, TRUE
),
400 IA64_HOWTO (R_IA64_FPTR32LSB
, "FPTR32LSB", 2, FALSE
, TRUE
),
401 IA64_HOWTO (R_IA64_FPTR64MSB
, "FPTR64MSB", 4, FALSE
, TRUE
),
402 IA64_HOWTO (R_IA64_FPTR64LSB
, "FPTR64LSB", 4, FALSE
, TRUE
),
404 IA64_HOWTO (R_IA64_PCREL60B
, "PCREL60B", 0, TRUE
, TRUE
),
405 IA64_HOWTO (R_IA64_PCREL21B
, "PCREL21B", 0, TRUE
, TRUE
),
406 IA64_HOWTO (R_IA64_PCREL21M
, "PCREL21M", 0, TRUE
, TRUE
),
407 IA64_HOWTO (R_IA64_PCREL21F
, "PCREL21F", 0, TRUE
, TRUE
),
408 IA64_HOWTO (R_IA64_PCREL32MSB
, "PCREL32MSB", 2, TRUE
, TRUE
),
409 IA64_HOWTO (R_IA64_PCREL32LSB
, "PCREL32LSB", 2, TRUE
, TRUE
),
410 IA64_HOWTO (R_IA64_PCREL64MSB
, "PCREL64MSB", 4, TRUE
, TRUE
),
411 IA64_HOWTO (R_IA64_PCREL64LSB
, "PCREL64LSB", 4, TRUE
, TRUE
),
413 IA64_HOWTO (R_IA64_LTOFF_FPTR22
, "LTOFF_FPTR22", 0, FALSE
, TRUE
),
414 IA64_HOWTO (R_IA64_LTOFF_FPTR64I
, "LTOFF_FPTR64I", 0, FALSE
, TRUE
),
415 IA64_HOWTO (R_IA64_LTOFF_FPTR32MSB
, "LTOFF_FPTR32MSB", 2, FALSE
, TRUE
),
416 IA64_HOWTO (R_IA64_LTOFF_FPTR32LSB
, "LTOFF_FPTR32LSB", 2, FALSE
, TRUE
),
417 IA64_HOWTO (R_IA64_LTOFF_FPTR64MSB
, "LTOFF_FPTR64MSB", 4, FALSE
, TRUE
),
418 IA64_HOWTO (R_IA64_LTOFF_FPTR64LSB
, "LTOFF_FPTR64LSB", 4, FALSE
, TRUE
),
420 IA64_HOWTO (R_IA64_SEGREL32MSB
, "SEGREL32MSB", 2, FALSE
, TRUE
),
421 IA64_HOWTO (R_IA64_SEGREL32LSB
, "SEGREL32LSB", 2, FALSE
, TRUE
),
422 IA64_HOWTO (R_IA64_SEGREL64MSB
, "SEGREL64MSB", 4, FALSE
, TRUE
),
423 IA64_HOWTO (R_IA64_SEGREL64LSB
, "SEGREL64LSB", 4, FALSE
, TRUE
),
425 IA64_HOWTO (R_IA64_SECREL32MSB
, "SECREL32MSB", 2, FALSE
, TRUE
),
426 IA64_HOWTO (R_IA64_SECREL32LSB
, "SECREL32LSB", 2, FALSE
, TRUE
),
427 IA64_HOWTO (R_IA64_SECREL64MSB
, "SECREL64MSB", 4, FALSE
, TRUE
),
428 IA64_HOWTO (R_IA64_SECREL64LSB
, "SECREL64LSB", 4, FALSE
, TRUE
),
430 IA64_HOWTO (R_IA64_REL32MSB
, "REL32MSB", 2, FALSE
, TRUE
),
431 IA64_HOWTO (R_IA64_REL32LSB
, "REL32LSB", 2, FALSE
, TRUE
),
432 IA64_HOWTO (R_IA64_REL64MSB
, "REL64MSB", 4, FALSE
, TRUE
),
433 IA64_HOWTO (R_IA64_REL64LSB
, "REL64LSB", 4, FALSE
, TRUE
),
435 IA64_HOWTO (R_IA64_LTV32MSB
, "LTV32MSB", 2, FALSE
, TRUE
),
436 IA64_HOWTO (R_IA64_LTV32LSB
, "LTV32LSB", 2, FALSE
, TRUE
),
437 IA64_HOWTO (R_IA64_LTV64MSB
, "LTV64MSB", 4, FALSE
, TRUE
),
438 IA64_HOWTO (R_IA64_LTV64LSB
, "LTV64LSB", 4, FALSE
, TRUE
),
440 IA64_HOWTO (R_IA64_PCREL21BI
, "PCREL21BI", 0, TRUE
, TRUE
),
441 IA64_HOWTO (R_IA64_PCREL22
, "PCREL22", 0, TRUE
, TRUE
),
442 IA64_HOWTO (R_IA64_PCREL64I
, "PCREL64I", 0, TRUE
, TRUE
),
444 IA64_HOWTO (R_IA64_IPLTMSB
, "IPLTMSB", 4, FALSE
, TRUE
),
445 IA64_HOWTO (R_IA64_IPLTLSB
, "IPLTLSB", 4, FALSE
, TRUE
),
446 IA64_HOWTO (R_IA64_COPY
, "COPY", 4, FALSE
, TRUE
),
447 IA64_HOWTO (R_IA64_LTOFF22X
, "LTOFF22X", 0, FALSE
, TRUE
),
448 IA64_HOWTO (R_IA64_LDXMOV
, "LDXMOV", 0, FALSE
, TRUE
),
450 IA64_HOWTO (R_IA64_TPREL14
, "TPREL14", 0, FALSE
, FALSE
),
451 IA64_HOWTO (R_IA64_TPREL22
, "TPREL22", 0, FALSE
, FALSE
),
452 IA64_HOWTO (R_IA64_TPREL64I
, "TPREL64I", 0, FALSE
, FALSE
),
453 IA64_HOWTO (R_IA64_TPREL64MSB
, "TPREL64MSB", 4, FALSE
, FALSE
),
454 IA64_HOWTO (R_IA64_TPREL64LSB
, "TPREL64LSB", 4, FALSE
, FALSE
),
455 IA64_HOWTO (R_IA64_LTOFF_TPREL22
, "LTOFF_TPREL22", 0, FALSE
, FALSE
),
457 IA64_HOWTO (R_IA64_DTPMOD64MSB
, "DTPMOD64MSB", 4, FALSE
, FALSE
),
458 IA64_HOWTO (R_IA64_DTPMOD64LSB
, "DTPMOD64LSB", 4, FALSE
, FALSE
),
459 IA64_HOWTO (R_IA64_LTOFF_DTPMOD22
, "LTOFF_DTPMOD22", 0, FALSE
, FALSE
),
461 IA64_HOWTO (R_IA64_DTPREL14
, "DTPREL14", 0, FALSE
, FALSE
),
462 IA64_HOWTO (R_IA64_DTPREL22
, "DTPREL22", 0, FALSE
, FALSE
),
463 IA64_HOWTO (R_IA64_DTPREL64I
, "DTPREL64I", 0, FALSE
, FALSE
),
464 IA64_HOWTO (R_IA64_DTPREL32MSB
, "DTPREL32MSB", 2, FALSE
, FALSE
),
465 IA64_HOWTO (R_IA64_DTPREL32LSB
, "DTPREL32LSB", 2, FALSE
, FALSE
),
466 IA64_HOWTO (R_IA64_DTPREL64MSB
, "DTPREL64MSB", 4, FALSE
, FALSE
),
467 IA64_HOWTO (R_IA64_DTPREL64LSB
, "DTPREL64LSB", 4, FALSE
, FALSE
),
468 IA64_HOWTO (R_IA64_LTOFF_DTPREL22
, "LTOFF_DTPREL22", 0, FALSE
, FALSE
),
471 static unsigned char elf_code_to_howto_index
[R_IA64_MAX_RELOC_CODE
+ 1];
473 /* Given a BFD reloc type, return the matching HOWTO structure. */
475 static reloc_howto_type
*
479 static int inited
= 0;
486 memset (elf_code_to_howto_index
, 0xff, sizeof (elf_code_to_howto_index
));
487 for (i
= 0; i
< NELEMS (ia64_howto_table
); ++i
)
488 elf_code_to_howto_index
[ia64_howto_table
[i
].type
] = i
;
491 if (rtype
> R_IA64_MAX_RELOC_CODE
)
493 i
= elf_code_to_howto_index
[rtype
];
494 if (i
>= NELEMS (ia64_howto_table
))
496 return ia64_howto_table
+ i
;
499 static reloc_howto_type
*
500 elfNN_ia64_reloc_type_lookup (abfd
, bfd_code
)
501 bfd
*abfd ATTRIBUTE_UNUSED
;
502 bfd_reloc_code_real_type bfd_code
;
508 case BFD_RELOC_NONE
: rtype
= R_IA64_NONE
; break;
510 case BFD_RELOC_IA64_IMM14
: rtype
= R_IA64_IMM14
; break;
511 case BFD_RELOC_IA64_IMM22
: rtype
= R_IA64_IMM22
; break;
512 case BFD_RELOC_IA64_IMM64
: rtype
= R_IA64_IMM64
; break;
514 case BFD_RELOC_IA64_DIR32MSB
: rtype
= R_IA64_DIR32MSB
; break;
515 case BFD_RELOC_IA64_DIR32LSB
: rtype
= R_IA64_DIR32LSB
; break;
516 case BFD_RELOC_IA64_DIR64MSB
: rtype
= R_IA64_DIR64MSB
; break;
517 case BFD_RELOC_IA64_DIR64LSB
: rtype
= R_IA64_DIR64LSB
; break;
519 case BFD_RELOC_IA64_GPREL22
: rtype
= R_IA64_GPREL22
; break;
520 case BFD_RELOC_IA64_GPREL64I
: rtype
= R_IA64_GPREL64I
; break;
521 case BFD_RELOC_IA64_GPREL32MSB
: rtype
= R_IA64_GPREL32MSB
; break;
522 case BFD_RELOC_IA64_GPREL32LSB
: rtype
= R_IA64_GPREL32LSB
; break;
523 case BFD_RELOC_IA64_GPREL64MSB
: rtype
= R_IA64_GPREL64MSB
; break;
524 case BFD_RELOC_IA64_GPREL64LSB
: rtype
= R_IA64_GPREL64LSB
; break;
526 case BFD_RELOC_IA64_LTOFF22
: rtype
= R_IA64_LTOFF22
; break;
527 case BFD_RELOC_IA64_LTOFF64I
: rtype
= R_IA64_LTOFF64I
; break;
529 case BFD_RELOC_IA64_PLTOFF22
: rtype
= R_IA64_PLTOFF22
; break;
530 case BFD_RELOC_IA64_PLTOFF64I
: rtype
= R_IA64_PLTOFF64I
; break;
531 case BFD_RELOC_IA64_PLTOFF64MSB
: rtype
= R_IA64_PLTOFF64MSB
; break;
532 case BFD_RELOC_IA64_PLTOFF64LSB
: rtype
= R_IA64_PLTOFF64LSB
; break;
533 case BFD_RELOC_IA64_FPTR64I
: rtype
= R_IA64_FPTR64I
; break;
534 case BFD_RELOC_IA64_FPTR32MSB
: rtype
= R_IA64_FPTR32MSB
; break;
535 case BFD_RELOC_IA64_FPTR32LSB
: rtype
= R_IA64_FPTR32LSB
; break;
536 case BFD_RELOC_IA64_FPTR64MSB
: rtype
= R_IA64_FPTR64MSB
; break;
537 case BFD_RELOC_IA64_FPTR64LSB
: rtype
= R_IA64_FPTR64LSB
; break;
539 case BFD_RELOC_IA64_PCREL21B
: rtype
= R_IA64_PCREL21B
; break;
540 case BFD_RELOC_IA64_PCREL21BI
: rtype
= R_IA64_PCREL21BI
; break;
541 case BFD_RELOC_IA64_PCREL21M
: rtype
= R_IA64_PCREL21M
; break;
542 case BFD_RELOC_IA64_PCREL21F
: rtype
= R_IA64_PCREL21F
; break;
543 case BFD_RELOC_IA64_PCREL22
: rtype
= R_IA64_PCREL22
; break;
544 case BFD_RELOC_IA64_PCREL60B
: rtype
= R_IA64_PCREL60B
; break;
545 case BFD_RELOC_IA64_PCREL64I
: rtype
= R_IA64_PCREL64I
; break;
546 case BFD_RELOC_IA64_PCREL32MSB
: rtype
= R_IA64_PCREL32MSB
; break;
547 case BFD_RELOC_IA64_PCREL32LSB
: rtype
= R_IA64_PCREL32LSB
; break;
548 case BFD_RELOC_IA64_PCREL64MSB
: rtype
= R_IA64_PCREL64MSB
; break;
549 case BFD_RELOC_IA64_PCREL64LSB
: rtype
= R_IA64_PCREL64LSB
; break;
551 case BFD_RELOC_IA64_LTOFF_FPTR22
: rtype
= R_IA64_LTOFF_FPTR22
; break;
552 case BFD_RELOC_IA64_LTOFF_FPTR64I
: rtype
= R_IA64_LTOFF_FPTR64I
; break;
553 case BFD_RELOC_IA64_LTOFF_FPTR32MSB
: rtype
= R_IA64_LTOFF_FPTR32MSB
; break;
554 case BFD_RELOC_IA64_LTOFF_FPTR32LSB
: rtype
= R_IA64_LTOFF_FPTR32LSB
; break;
555 case BFD_RELOC_IA64_LTOFF_FPTR64MSB
: rtype
= R_IA64_LTOFF_FPTR64MSB
; break;
556 case BFD_RELOC_IA64_LTOFF_FPTR64LSB
: rtype
= R_IA64_LTOFF_FPTR64LSB
; break;
558 case BFD_RELOC_IA64_SEGREL32MSB
: rtype
= R_IA64_SEGREL32MSB
; break;
559 case BFD_RELOC_IA64_SEGREL32LSB
: rtype
= R_IA64_SEGREL32LSB
; break;
560 case BFD_RELOC_IA64_SEGREL64MSB
: rtype
= R_IA64_SEGREL64MSB
; break;
561 case BFD_RELOC_IA64_SEGREL64LSB
: rtype
= R_IA64_SEGREL64LSB
; break;
563 case BFD_RELOC_IA64_SECREL32MSB
: rtype
= R_IA64_SECREL32MSB
; break;
564 case BFD_RELOC_IA64_SECREL32LSB
: rtype
= R_IA64_SECREL32LSB
; break;
565 case BFD_RELOC_IA64_SECREL64MSB
: rtype
= R_IA64_SECREL64MSB
; break;
566 case BFD_RELOC_IA64_SECREL64LSB
: rtype
= R_IA64_SECREL64LSB
; break;
568 case BFD_RELOC_IA64_REL32MSB
: rtype
= R_IA64_REL32MSB
; break;
569 case BFD_RELOC_IA64_REL32LSB
: rtype
= R_IA64_REL32LSB
; break;
570 case BFD_RELOC_IA64_REL64MSB
: rtype
= R_IA64_REL64MSB
; break;
571 case BFD_RELOC_IA64_REL64LSB
: rtype
= R_IA64_REL64LSB
; break;
573 case BFD_RELOC_IA64_LTV32MSB
: rtype
= R_IA64_LTV32MSB
; break;
574 case BFD_RELOC_IA64_LTV32LSB
: rtype
= R_IA64_LTV32LSB
; break;
575 case BFD_RELOC_IA64_LTV64MSB
: rtype
= R_IA64_LTV64MSB
; break;
576 case BFD_RELOC_IA64_LTV64LSB
: rtype
= R_IA64_LTV64LSB
; break;
578 case BFD_RELOC_IA64_IPLTMSB
: rtype
= R_IA64_IPLTMSB
; break;
579 case BFD_RELOC_IA64_IPLTLSB
: rtype
= R_IA64_IPLTLSB
; break;
580 case BFD_RELOC_IA64_COPY
: rtype
= R_IA64_COPY
; break;
581 case BFD_RELOC_IA64_LTOFF22X
: rtype
= R_IA64_LTOFF22X
; break;
582 case BFD_RELOC_IA64_LDXMOV
: rtype
= R_IA64_LDXMOV
; break;
584 case BFD_RELOC_IA64_TPREL14
: rtype
= R_IA64_TPREL14
; break;
585 case BFD_RELOC_IA64_TPREL22
: rtype
= R_IA64_TPREL22
; break;
586 case BFD_RELOC_IA64_TPREL64I
: rtype
= R_IA64_TPREL64I
; break;
587 case BFD_RELOC_IA64_TPREL64MSB
: rtype
= R_IA64_TPREL64MSB
; break;
588 case BFD_RELOC_IA64_TPREL64LSB
: rtype
= R_IA64_TPREL64LSB
; break;
589 case BFD_RELOC_IA64_LTOFF_TPREL22
: rtype
= R_IA64_LTOFF_TPREL22
; break;
591 case BFD_RELOC_IA64_DTPMOD64MSB
: rtype
= R_IA64_DTPMOD64MSB
; break;
592 case BFD_RELOC_IA64_DTPMOD64LSB
: rtype
= R_IA64_DTPMOD64LSB
; break;
593 case BFD_RELOC_IA64_LTOFF_DTPMOD22
: rtype
= R_IA64_LTOFF_DTPMOD22
; break;
595 case BFD_RELOC_IA64_DTPREL14
: rtype
= R_IA64_DTPREL14
; break;
596 case BFD_RELOC_IA64_DTPREL22
: rtype
= R_IA64_DTPREL22
; break;
597 case BFD_RELOC_IA64_DTPREL64I
: rtype
= R_IA64_DTPREL64I
; break;
598 case BFD_RELOC_IA64_DTPREL32MSB
: rtype
= R_IA64_DTPREL32MSB
; break;
599 case BFD_RELOC_IA64_DTPREL32LSB
: rtype
= R_IA64_DTPREL32LSB
; break;
600 case BFD_RELOC_IA64_DTPREL64MSB
: rtype
= R_IA64_DTPREL64MSB
; break;
601 case BFD_RELOC_IA64_DTPREL64LSB
: rtype
= R_IA64_DTPREL64LSB
; break;
602 case BFD_RELOC_IA64_LTOFF_DTPREL22
: rtype
= R_IA64_LTOFF_DTPREL22
; break;
606 return lookup_howto (rtype
);
609 /* Given a ELF reloc, return the matching HOWTO structure. */
612 elfNN_ia64_info_to_howto (abfd
, bfd_reloc
, elf_reloc
)
613 bfd
*abfd ATTRIBUTE_UNUSED
;
615 Elf_Internal_Rela
*elf_reloc
;
618 = lookup_howto ((unsigned int) ELFNN_R_TYPE (elf_reloc
->r_info
));
621 #define PLT_HEADER_SIZE (3 * 16)
622 #define PLT_MIN_ENTRY_SIZE (1 * 16)
623 #define PLT_FULL_ENTRY_SIZE (2 * 16)
624 #define PLT_RESERVED_WORDS 3
626 static const bfd_byte plt_header
[PLT_HEADER_SIZE
] =
628 0x0b, 0x10, 0x00, 0x1c, 0x00, 0x21, /* [MMI] mov r2=r14;; */
629 0xe0, 0x00, 0x08, 0x00, 0x48, 0x00, /* addl r14=0,r2 */
630 0x00, 0x00, 0x04, 0x00, /* nop.i 0x0;; */
631 0x0b, 0x80, 0x20, 0x1c, 0x18, 0x14, /* [MMI] ld8 r16=[r14],8;; */
632 0x10, 0x41, 0x38, 0x30, 0x28, 0x00, /* ld8 r17=[r14],8 */
633 0x00, 0x00, 0x04, 0x00, /* nop.i 0x0;; */
634 0x11, 0x08, 0x00, 0x1c, 0x18, 0x10, /* [MIB] ld8 r1=[r14] */
635 0x60, 0x88, 0x04, 0x80, 0x03, 0x00, /* mov b6=r17 */
636 0x60, 0x00, 0x80, 0x00 /* br.few b6;; */
639 static const bfd_byte plt_min_entry
[PLT_MIN_ENTRY_SIZE
] =
641 0x11, 0x78, 0x00, 0x00, 0x00, 0x24, /* [MIB] mov r15=0 */
642 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, /* nop.i 0x0 */
643 0x00, 0x00, 0x00, 0x40 /* br.few 0 <PLT0>;; */
646 static const bfd_byte plt_full_entry
[PLT_FULL_ENTRY_SIZE
] =
648 0x0b, 0x78, 0x00, 0x02, 0x00, 0x24, /* [MMI] addl r15=0,r1;; */
649 0x00, 0x41, 0x3c, 0x70, 0x29, 0xc0, /* ld8.acq r16=[r15],8*/
650 0x01, 0x08, 0x00, 0x84, /* mov r14=r1;; */
651 0x11, 0x08, 0x00, 0x1e, 0x18, 0x10, /* [MIB] ld8 r1=[r15] */
652 0x60, 0x80, 0x04, 0x80, 0x03, 0x00, /* mov b6=r16 */
653 0x60, 0x00, 0x80, 0x00 /* br.few b6;; */
656 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
658 static const bfd_byte oor_brl
[16] =
660 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MLX] nop.m 0 */
661 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* brl.sptk.few tgt;; */
662 0x00, 0x00, 0x00, 0xc0
665 static const bfd_byte oor_ip
[48] =
667 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MLX] nop.m 0 */
668 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, /* movl r15=0 */
669 0x01, 0x00, 0x00, 0x60,
670 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MII] nop.m 0 */
671 0x00, 0x01, 0x00, 0x60, 0x00, 0x00, /* mov r16=ip;; */
672 0xf2, 0x80, 0x00, 0x80, /* add r16=r15,r16;; */
673 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, /* [MIB] nop.m 0 */
674 0x60, 0x80, 0x04, 0x80, 0x03, 0x00, /* mov b6=r16 */
675 0x60, 0x00, 0x80, 0x00 /* br b6;; */
678 static size_t oor_branch_size
= sizeof (oor_brl
);
681 bfd_elfNN_ia64_after_parse (int itanium
)
683 oor_branch_size
= itanium
? sizeof (oor_ip
) : sizeof (oor_brl
);
686 #define BTYPE_SHIFT 6
693 #define OPCODE_SHIFT 37
695 #define OPCODE_BITS (0xfLL << OPCODE_SHIFT)
696 #define X6_BITS (0x3fLL << X6_SHIFT)
697 #define X4_BITS (0xfLL << X4_SHIFT)
698 #define X3_BITS (0x7LL << X3_SHIFT)
699 #define X2_BITS (0x3LL << X2_SHIFT)
700 #define X_BITS (0x1LL << X_SHIFT)
701 #define Y_BITS (0x1LL << Y_SHIFT)
702 #define BTYPE_BITS (0x7LL << BTYPE_SHIFT)
703 #define PREDICATE_BITS (0x3fLL)
705 #define IS_NOP_B(i) \
706 (((i) & (OPCODE_BITS | X6_BITS)) == (2LL << OPCODE_SHIFT))
707 #define IS_NOP_F(i) \
708 (((i) & (OPCODE_BITS | X_BITS | X6_BITS | Y_BITS)) \
709 == (0x1LL << X6_SHIFT))
710 #define IS_NOP_I(i) \
711 (((i) & (OPCODE_BITS | X3_BITS | X6_BITS | Y_BITS)) \
712 == (0x1LL << X6_SHIFT))
713 #define IS_NOP_M(i) \
714 (((i) & (OPCODE_BITS | X3_BITS | X2_BITS | X4_BITS | Y_BITS)) \
715 == (0x1LL << X4_SHIFT))
716 #define IS_BR_COND(i) \
717 (((i) & (OPCODE_BITS | BTYPE_BITS)) == (0x4LL << OPCODE_SHIFT))
718 #define IS_BR_CALL(i) \
719 (((i) & OPCODE_BITS) == (0x5LL << OPCODE_SHIFT))
722 elfNN_ia64_relax_br (bfd_byte
*contents
, bfd_vma off
)
724 unsigned int template, mlx
;
725 bfd_vma t0
, t1
, s0
, s1
, s2
, br_code
;
729 hit_addr
= (bfd_byte
*) (contents
+ off
);
730 br_slot
= (long) hit_addr
& 0x3;
732 t0
= bfd_getl64 (hit_addr
+ 0);
733 t1
= bfd_getl64 (hit_addr
+ 8);
735 /* Check if we can turn br into brl. A label is always at the start
736 of the bundle. Even if there are predicates on NOPs, we still
737 perform this optimization. */
738 template = t0
& 0x1e;
739 s0
= (t0
>> 5) & 0x1ffffffffffLL
;
740 s1
= ((t0
>> 46) | (t1
<< 18)) & 0x1ffffffffffLL
;
741 s2
= (t1
>> 23) & 0x1ffffffffffLL
;
745 /* Check if slot 1 and slot 2 are NOPs. Possible template is
746 BBB. We only need to check nop.b. */
747 if (!(IS_NOP_B (s1
) && IS_NOP_B (s2
)))
752 /* Check if slot 2 is NOP. Possible templates are MBB and BBB.
753 For BBB, slot 0 also has to be nop.b. */
754 if (!((template == 0x12 /* MBB */
756 || (template == 0x16 /* BBB */
763 /* Check if slot 1 is NOP. Possible templates are MIB, MBB, BBB,
764 MMB and MFB. For BBB, slot 0 also has to be nop.b. */
765 if (!((template == 0x10 /* MIB */
767 || (template == 0x12 /* MBB */
769 || (template == 0x16 /* BBB */
772 || (template == 0x18 /* MMB */
774 || (template == 0x1c /* MFB */
780 /* It should never happen. */
784 /* We can turn br.cond/br.call into brl.cond/brl.call. */
785 if (!(IS_BR_COND (br_code
) || IS_BR_CALL (br_code
)))
788 /* Turn br into brl by setting bit 40. */
789 br_code
|= 0x1LL
<< 40;
791 /* Turn the old bundle into a MLX bundle with the same stop-bit
798 if (template == 0x16)
800 /* For BBB, we need to put nop.m in slot 0. We keep the original
801 predicate only if slot 0 isn't br. */
805 t0
&= PREDICATE_BITS
<< 5;
806 t0
|= 0x1LL
<< (X4_SHIFT
+ 5);
810 /* Keep the original instruction in slot 0. */
811 t0
&= 0x1ffffffffffLL
<< 5;
816 /* Put brl in slot 1. */
819 bfd_putl64 (t0
, hit_addr
);
820 bfd_putl64 (t1
, hit_addr
+ 8);
825 elfNN_ia64_relax_brl (bfd_byte
*contents
, bfd_vma off
)
829 bfd_vma t0
, t1
, i0
, i1
, i2
;
831 hit_addr
= (bfd_byte
*) (contents
+ off
);
832 hit_addr
-= (long) hit_addr
& 0x3;
833 t0
= bfd_getl64 (hit_addr
);
834 t1
= bfd_getl64 (hit_addr
+ 8);
836 /* Keep the instruction in slot 0. */
837 i0
= (t0
>> 5) & 0x1ffffffffffLL
;
838 /* Use nop.b for slot 1. */
840 /* For slot 2, turn brl into br by masking out bit 40. */
841 i2
= (t1
>> 23) & 0x0ffffffffffLL
;
843 /* Turn a MLX bundle into a MBB bundle with the same stop-bit
849 t0
= (i1
<< 46) | (i0
<< 5) | template;
850 t1
= (i2
<< 23) | (i1
>> 18);
852 bfd_putl64 (t0
, hit_addr
);
853 bfd_putl64 (t1
, hit_addr
+ 8);
856 /* These functions do relaxation for IA-64 ELF. */
859 elfNN_ia64_relax_section (abfd
, sec
, link_info
, again
)
862 struct bfd_link_info
*link_info
;
867 struct one_fixup
*next
;
873 Elf_Internal_Shdr
*symtab_hdr
;
874 Elf_Internal_Rela
*internal_relocs
;
875 Elf_Internal_Rela
*irel
, *irelend
;
877 Elf_Internal_Sym
*isymbuf
= NULL
;
878 struct elfNN_ia64_link_hash_table
*ia64_info
;
879 struct one_fixup
*fixups
= NULL
;
880 bfd_boolean changed_contents
= FALSE
;
881 bfd_boolean changed_relocs
= FALSE
;
882 bfd_boolean changed_got
= FALSE
;
885 /* Assume we're not going to change any sizes, and we'll only need
889 /* Don't even try to relax for non-ELF outputs. */
890 if (!is_elf_hash_table (link_info
->hash
))
893 /* Nothing to do if there are no relocations or there is no need for
894 the relax finalize pass. */
895 if ((sec
->flags
& SEC_RELOC
) == 0
896 || sec
->reloc_count
== 0
897 || (!link_info
->need_relax_finalize
898 && sec
->need_finalize_relax
== 0))
901 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
903 /* Load the relocations for this section. */
904 internal_relocs
= (_bfd_elf_link_read_relocs
905 (abfd
, sec
, (PTR
) NULL
, (Elf_Internal_Rela
*) NULL
,
906 link_info
->keep_memory
));
907 if (internal_relocs
== NULL
)
910 ia64_info
= elfNN_ia64_hash_table (link_info
);
911 irelend
= internal_relocs
+ sec
->reloc_count
;
913 /* Get the section contents. */
914 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
915 contents
= elf_section_data (sec
)->this_hdr
.contents
;
918 if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
922 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
924 unsigned long r_type
= ELFNN_R_TYPE (irel
->r_info
);
925 bfd_vma symaddr
, reladdr
, trampoff
, toff
, roff
;
929 bfd_boolean is_branch
;
930 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
935 case R_IA64_PCREL21B
:
936 case R_IA64_PCREL21BI
:
937 case R_IA64_PCREL21M
:
938 case R_IA64_PCREL21F
:
939 /* In the finalize pass, all br relaxations are done. We can
941 if (!link_info
->need_relax_finalize
)
946 case R_IA64_PCREL60B
:
947 /* We can't optimize brl to br before the finalize pass since
948 br relaxations will increase the code size. Defer it to
949 the finalize pass. */
950 if (link_info
->need_relax_finalize
)
952 sec
->need_finalize_relax
= 1;
958 case R_IA64_LTOFF22X
:
960 /* We can't relax ldx/mov before the finalize pass since
961 br relaxations will increase the code size. Defer it to
962 the finalize pass. */
963 if (link_info
->need_relax_finalize
)
965 sec
->need_finalize_relax
= 1;
975 /* Get the value of the symbol referred to by the reloc. */
976 if (ELFNN_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
978 /* A local symbol. */
979 Elf_Internal_Sym
*isym
;
981 /* Read this BFD's local symbols. */
984 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
986 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
987 symtab_hdr
->sh_info
, 0,
993 isym
= isymbuf
+ ELFNN_R_SYM (irel
->r_info
);
994 if (isym
->st_shndx
== SHN_UNDEF
)
995 continue; /* We can't do anything with undefined symbols. */
996 else if (isym
->st_shndx
== SHN_ABS
)
997 tsec
= bfd_abs_section_ptr
;
998 else if (isym
->st_shndx
== SHN_COMMON
)
999 tsec
= bfd_com_section_ptr
;
1000 else if (isym
->st_shndx
== SHN_IA_64_ANSI_COMMON
)
1001 tsec
= bfd_com_section_ptr
;
1003 tsec
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
1005 toff
= isym
->st_value
;
1006 dyn_i
= get_dyn_sym_info (ia64_info
, NULL
, abfd
, irel
, FALSE
);
1007 symtype
= ELF_ST_TYPE (isym
->st_info
);
1012 struct elf_link_hash_entry
*h
;
1014 indx
= ELFNN_R_SYM (irel
->r_info
) - symtab_hdr
->sh_info
;
1015 h
= elf_sym_hashes (abfd
)[indx
];
1016 BFD_ASSERT (h
!= NULL
);
1018 while (h
->root
.type
== bfd_link_hash_indirect
1019 || h
->root
.type
== bfd_link_hash_warning
)
1020 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1022 dyn_i
= get_dyn_sym_info (ia64_info
, h
, abfd
, irel
, FALSE
);
1024 /* For branches to dynamic symbols, we're interested instead
1025 in a branch to the PLT entry. */
1026 if (is_branch
&& dyn_i
&& dyn_i
->want_plt2
)
1028 /* Internal branches shouldn't be sent to the PLT.
1029 Leave this for now and we'll give an error later. */
1030 if (r_type
!= R_IA64_PCREL21B
)
1033 tsec
= ia64_info
->plt_sec
;
1034 toff
= dyn_i
->plt2_offset
;
1035 BFD_ASSERT (irel
->r_addend
== 0);
1038 /* Can't do anything else with dynamic symbols. */
1039 else if (elfNN_ia64_dynamic_symbol_p (h
, link_info
, r_type
))
1044 /* We can't do anything with undefined symbols. */
1045 if (h
->root
.type
== bfd_link_hash_undefined
1046 || h
->root
.type
== bfd_link_hash_undefweak
)
1049 tsec
= h
->root
.u
.def
.section
;
1050 toff
= h
->root
.u
.def
.value
;
1056 if (tsec
->sec_info_type
== ELF_INFO_TYPE_MERGE
)
1058 /* At this stage in linking, no SEC_MERGE symbol has been
1059 adjusted, so all references to such symbols need to be
1060 passed through _bfd_merged_section_offset. (Later, in
1061 relocate_section, all SEC_MERGE symbols *except* for
1062 section symbols have been adjusted.)
1064 gas may reduce relocations against symbols in SEC_MERGE
1065 sections to a relocation against the section symbol when
1066 the original addend was zero. When the reloc is against
1067 a section symbol we should include the addend in the
1068 offset passed to _bfd_merged_section_offset, since the
1069 location of interest is the original symbol. On the
1070 other hand, an access to "sym+addend" where "sym" is not
1071 a section symbol should not include the addend; Such an
1072 access is presumed to be an offset from "sym"; The
1073 location of interest is just "sym". */
1074 if (symtype
== STT_SECTION
)
1075 toff
+= irel
->r_addend
;
1077 toff
= _bfd_merged_section_offset (abfd
, &tsec
,
1078 elf_section_data (tsec
)->sec_info
,
1081 if (symtype
!= STT_SECTION
)
1082 toff
+= irel
->r_addend
;
1085 toff
+= irel
->r_addend
;
1087 symaddr
= tsec
->output_section
->vma
+ tsec
->output_offset
+ toff
;
1089 roff
= irel
->r_offset
;
1093 bfd_signed_vma offset
;
1095 reladdr
= (sec
->output_section
->vma
1096 + sec
->output_offset
1097 + roff
) & (bfd_vma
) -4;
1099 /* If the branch is in range, no need to do anything. */
1100 if ((bfd_signed_vma
) (symaddr
- reladdr
) >= -0x1000000
1101 && (bfd_signed_vma
) (symaddr
- reladdr
) <= 0x0FFFFF0)
1103 /* If the 60-bit branch is in 21-bit range, optimize it. */
1104 if (r_type
== R_IA64_PCREL60B
)
1106 elfNN_ia64_relax_brl (contents
, roff
);
1109 = ELFNN_R_INFO (ELFNN_R_SYM (irel
->r_info
),
1112 /* If the original relocation offset points to slot
1113 1, change it to slot 2. */
1114 if ((irel
->r_offset
& 3) == 1)
1115 irel
->r_offset
+= 1;
1120 else if (r_type
== R_IA64_PCREL60B
)
1122 else if (elfNN_ia64_relax_br (contents
, roff
))
1125 = ELFNN_R_INFO (ELFNN_R_SYM (irel
->r_info
),
1128 /* Make the relocation offset point to slot 1. */
1129 irel
->r_offset
= (irel
->r_offset
& ~((bfd_vma
) 0x3)) + 1;
1133 /* We can't put a trampoline in a .init/.fini section. Issue
1135 if (strcmp (sec
->output_section
->name
, ".init") == 0
1136 || strcmp (sec
->output_section
->name
, ".fini") == 0)
1138 (*_bfd_error_handler
)
1139 (_("%B: Can't relax br at 0x%lx in section `%A'. Please use brl or indirect branch."),
1140 sec
->owner
, sec
, (unsigned long) roff
);
1141 bfd_set_error (bfd_error_bad_value
);
1145 /* If the branch and target are in the same section, you've
1146 got one honking big section and we can't help you unless
1147 you are branching backwards. You'll get an error message
1149 if (tsec
== sec
&& toff
> roff
)
1152 /* Look for an existing fixup to this address. */
1153 for (f
= fixups
; f
; f
= f
->next
)
1154 if (f
->tsec
== tsec
&& f
->toff
== toff
)
1159 /* Two alternatives: If it's a branch to a PLT entry, we can
1160 make a copy of the FULL_PLT entry. Otherwise, we'll have
1161 to use a `brl' insn to get where we're going. */
1165 if (tsec
== ia64_info
->plt_sec
)
1166 size
= sizeof (plt_full_entry
);
1168 size
= oor_branch_size
;
1170 /* Resize the current section to make room for the new branch. */
1171 trampoff
= (sec
->size
+ 15) & (bfd_vma
) -16;
1173 /* If trampoline is out of range, there is nothing we
1175 offset
= trampoff
- (roff
& (bfd_vma
) -4);
1176 if (offset
< -0x1000000 || offset
> 0x0FFFFF0)
1179 amt
= trampoff
+ size
;
1180 contents
= (bfd_byte
*) bfd_realloc (contents
, amt
);
1181 if (contents
== NULL
)
1185 if (tsec
== ia64_info
->plt_sec
)
1187 memcpy (contents
+ trampoff
, plt_full_entry
, size
);
1189 /* Hijack the old relocation for use as the PLTOFF reloc. */
1190 irel
->r_info
= ELFNN_R_INFO (ELFNN_R_SYM (irel
->r_info
),
1192 irel
->r_offset
= trampoff
;
1196 if (size
== sizeof (oor_ip
))
1198 memcpy (contents
+ trampoff
, oor_ip
, size
);
1199 irel
->r_info
= ELFNN_R_INFO (ELFNN_R_SYM (irel
->r_info
),
1201 irel
->r_addend
-= 16;
1202 irel
->r_offset
= trampoff
+ 2;
1206 memcpy (contents
+ trampoff
, oor_brl
, size
);
1207 irel
->r_info
= ELFNN_R_INFO (ELFNN_R_SYM (irel
->r_info
),
1209 irel
->r_offset
= trampoff
+ 2;
1214 /* Record the fixup so we don't do it again this section. */
1215 f
= (struct one_fixup
*)
1216 bfd_malloc ((bfd_size_type
) sizeof (*f
));
1220 f
->trampoff
= trampoff
;
1225 /* If trampoline is out of range, there is nothing we
1227 offset
= f
->trampoff
- (roff
& (bfd_vma
) -4);
1228 if (offset
< -0x1000000 || offset
> 0x0FFFFF0)
1231 /* Nop out the reloc, since we're finalizing things here. */
1232 irel
->r_info
= ELFNN_R_INFO (0, R_IA64_NONE
);
1235 /* Fix up the existing branch to hit the trampoline. */
1236 if (elfNN_ia64_install_value (contents
+ roff
, offset
, r_type
)
1240 changed_contents
= TRUE
;
1241 changed_relocs
= TRUE
;
1248 bfd
*obfd
= sec
->output_section
->owner
;
1249 gp
= _bfd_get_gp_value (obfd
);
1252 if (!elfNN_ia64_choose_gp (obfd
, link_info
))
1254 gp
= _bfd_get_gp_value (obfd
);
1258 /* If the data is out of range, do nothing. */
1259 if ((bfd_signed_vma
) (symaddr
- gp
) >= 0x200000
1260 ||(bfd_signed_vma
) (symaddr
- gp
) < -0x200000)
1263 if (r_type
== R_IA64_LTOFF22X
)
1265 irel
->r_info
= ELFNN_R_INFO (ELFNN_R_SYM (irel
->r_info
),
1267 changed_relocs
= TRUE
;
1268 if (dyn_i
->want_gotx
)
1270 dyn_i
->want_gotx
= 0;
1271 changed_got
|= !dyn_i
->want_got
;
1276 elfNN_ia64_relax_ldxmov (contents
, roff
);
1277 irel
->r_info
= ELFNN_R_INFO (0, R_IA64_NONE
);
1278 changed_contents
= TRUE
;
1279 changed_relocs
= TRUE
;
1284 /* ??? If we created fixups, this may push the code segment large
1285 enough that the data segment moves, which will change the GP.
1286 Reset the GP so that we re-calculate next round. We need to
1287 do this at the _beginning_ of the next round; now will not do. */
1289 /* Clean up and go home. */
1292 struct one_fixup
*f
= fixups
;
1293 fixups
= fixups
->next
;
1298 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
1300 if (! link_info
->keep_memory
)
1304 /* Cache the symbols for elf_link_input_bfd. */
1305 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
1309 if (contents
!= NULL
1310 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
1312 if (!changed_contents
&& !link_info
->keep_memory
)
1316 /* Cache the section contents for elf_link_input_bfd. */
1317 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1321 if (elf_section_data (sec
)->relocs
!= internal_relocs
)
1323 if (!changed_relocs
)
1324 free (internal_relocs
);
1326 elf_section_data (sec
)->relocs
= internal_relocs
;
1331 struct elfNN_ia64_allocate_data data
;
1332 data
.info
= link_info
;
1334 ia64_info
->self_dtpmod_offset
= (bfd_vma
) -1;
1336 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_global_data_got
, &data
);
1337 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_global_fptr_got
, &data
);
1338 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_local_got
, &data
);
1339 ia64_info
->got_sec
->size
= data
.ofs
;
1341 if (ia64_info
->root
.dynamic_sections_created
1342 && ia64_info
->rel_got_sec
!= NULL
)
1344 /* Resize .rela.got. */
1345 ia64_info
->rel_got_sec
->size
= 0;
1346 if (link_info
->shared
1347 && ia64_info
->self_dtpmod_offset
!= (bfd_vma
) -1)
1348 ia64_info
->rel_got_sec
->size
+= sizeof (ElfNN_External_Rela
);
1349 data
.only_got
= TRUE
;
1350 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_dynrel_entries
,
1355 if (!link_info
->need_relax_finalize
)
1356 sec
->need_finalize_relax
= 0;
1358 *again
= changed_contents
|| changed_relocs
;
1362 if (isymbuf
!= NULL
&& (unsigned char *) isymbuf
!= symtab_hdr
->contents
)
1364 if (contents
!= NULL
1365 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
1367 if (internal_relocs
!= NULL
1368 && elf_section_data (sec
)->relocs
!= internal_relocs
)
1369 free (internal_relocs
);
1374 elfNN_ia64_relax_ldxmov (contents
, off
)
1379 bfd_vma dword
, insn
;
1381 switch ((int)off
& 0x3)
1383 case 0: shift
= 5; break;
1384 case 1: shift
= 14; off
+= 3; break;
1385 case 2: shift
= 23; off
+= 6; break;
1390 dword
= bfd_getl64 (contents
+ off
);
1391 insn
= (dword
>> shift
) & 0x1ffffffffffLL
;
1393 r1
= (insn
>> 6) & 127;
1394 r3
= (insn
>> 20) & 127;
1396 insn
= 0x8000000; /* nop */
1398 insn
= (insn
& 0x7f01fff) | 0x10800000000LL
; /* (qp) mov r1 = r3 */
1400 dword
&= ~(0x1ffffffffffLL
<< shift
);
1401 dword
|= (insn
<< shift
);
1402 bfd_putl64 (dword
, contents
+ off
);
1405 /* Return TRUE if NAME is an unwind table section name. */
1407 static inline bfd_boolean
1408 is_unwind_section_name (abfd
, name
)
1412 size_t len1
, len2
, len3
;
1414 if (elfNN_ia64_hpux_vec (abfd
->xvec
)
1415 && !strcmp (name
, ELF_STRING_ia64_unwind_hdr
))
1418 len1
= sizeof (ELF_STRING_ia64_unwind
) - 1;
1419 len2
= sizeof (ELF_STRING_ia64_unwind_info
) - 1;
1420 len3
= sizeof (ELF_STRING_ia64_unwind_once
) - 1;
1421 return ((strncmp (name
, ELF_STRING_ia64_unwind
, len1
) == 0
1422 && strncmp (name
, ELF_STRING_ia64_unwind_info
, len2
) != 0)
1423 || strncmp (name
, ELF_STRING_ia64_unwind_once
, len3
) == 0);
1426 /* Handle an IA-64 specific section when reading an object file. This
1427 is called when bfd_section_from_shdr finds a section with an unknown
1431 elfNN_ia64_section_from_shdr (bfd
*abfd
,
1432 Elf_Internal_Shdr
*hdr
,
1438 /* There ought to be a place to keep ELF backend specific flags, but
1439 at the moment there isn't one. We just keep track of the
1440 sections by their name, instead. Fortunately, the ABI gives
1441 suggested names for all the MIPS specific sections, so we will
1442 probably get away with this. */
1443 switch (hdr
->sh_type
)
1445 case SHT_IA_64_UNWIND
:
1446 case SHT_IA_64_HP_OPT_ANOT
:
1450 if (strcmp (name
, ELF_STRING_ia64_archext
) != 0)
1458 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
1460 newsect
= hdr
->bfd_section
;
1465 /* Convert IA-64 specific section flags to bfd internal section flags. */
1467 /* ??? There is no bfd internal flag equivalent to the SHF_IA_64_NORECOV
1471 elfNN_ia64_section_flags (flags
, hdr
)
1473 const Elf_Internal_Shdr
*hdr
;
1475 if (hdr
->sh_flags
& SHF_IA_64_SHORT
)
1476 *flags
|= SEC_SMALL_DATA
;
1481 /* Set the correct type for an IA-64 ELF section. We do this by the
1482 section name, which is a hack, but ought to work. */
1485 elfNN_ia64_fake_sections (abfd
, hdr
, sec
)
1486 bfd
*abfd ATTRIBUTE_UNUSED
;
1487 Elf_Internal_Shdr
*hdr
;
1490 register const char *name
;
1492 name
= bfd_get_section_name (abfd
, sec
);
1494 if (is_unwind_section_name (abfd
, name
))
1496 /* We don't have the sections numbered at this point, so sh_info
1497 is set later, in elfNN_ia64_final_write_processing. */
1498 hdr
->sh_type
= SHT_IA_64_UNWIND
;
1499 hdr
->sh_flags
|= SHF_LINK_ORDER
;
1501 else if (strcmp (name
, ELF_STRING_ia64_archext
) == 0)
1502 hdr
->sh_type
= SHT_IA_64_EXT
;
1503 else if (strcmp (name
, ".HP.opt_annot") == 0)
1504 hdr
->sh_type
= SHT_IA_64_HP_OPT_ANOT
;
1505 else if (strcmp (name
, ".reloc") == 0)
1506 /* This is an ugly, but unfortunately necessary hack that is
1507 needed when producing EFI binaries on IA-64. It tells
1508 elf.c:elf_fake_sections() not to consider ".reloc" as a section
1509 containing ELF relocation info. We need this hack in order to
1510 be able to generate ELF binaries that can be translated into
1511 EFI applications (which are essentially COFF objects). Those
1512 files contain a COFF ".reloc" section inside an ELFNN object,
1513 which would normally cause BFD to segfault because it would
1514 attempt to interpret this section as containing relocation
1515 entries for section "oc". With this hack enabled, ".reloc"
1516 will be treated as a normal data section, which will avoid the
1517 segfault. However, you won't be able to create an ELFNN binary
1518 with a section named "oc" that needs relocations, but that's
1519 the kind of ugly side-effects you get when detecting section
1520 types based on their names... In practice, this limitation is
1521 unlikely to bite. */
1522 hdr
->sh_type
= SHT_PROGBITS
;
1524 if (sec
->flags
& SEC_SMALL_DATA
)
1525 hdr
->sh_flags
|= SHF_IA_64_SHORT
;
1530 /* The final processing done just before writing out an IA-64 ELF
1534 elfNN_ia64_final_write_processing (abfd
, linker
)
1536 bfd_boolean linker ATTRIBUTE_UNUSED
;
1538 Elf_Internal_Shdr
*hdr
;
1541 for (s
= abfd
->sections
; s
; s
= s
->next
)
1543 hdr
= &elf_section_data (s
)->this_hdr
;
1544 switch (hdr
->sh_type
)
1546 case SHT_IA_64_UNWIND
:
1547 /* The IA-64 processor-specific ABI requires setting sh_link
1548 to the unwind section, whereas HP-UX requires sh_info to
1549 do so. For maximum compatibility, we'll set both for
1551 hdr
->sh_info
= hdr
->sh_link
;
1556 if (! elf_flags_init (abfd
))
1558 unsigned long flags
= 0;
1560 if (abfd
->xvec
->byteorder
== BFD_ENDIAN_BIG
)
1561 flags
|= EF_IA_64_BE
;
1562 if (bfd_get_mach (abfd
) == bfd_mach_ia64_elf64
)
1563 flags
|= EF_IA_64_ABI64
;
1565 elf_elfheader(abfd
)->e_flags
= flags
;
1566 elf_flags_init (abfd
) = TRUE
;
1570 /* Hook called by the linker routine which adds symbols from an object
1571 file. We use it to put .comm items in .sbss, and not .bss. */
1574 elfNN_ia64_add_symbol_hook (abfd
, info
, sym
, namep
, flagsp
, secp
, valp
)
1576 struct bfd_link_info
*info
;
1577 Elf_Internal_Sym
*sym
;
1578 const char **namep ATTRIBUTE_UNUSED
;
1579 flagword
*flagsp ATTRIBUTE_UNUSED
;
1583 if (sym
->st_shndx
== SHN_COMMON
1584 && !info
->relocatable
1585 && sym
->st_size
<= elf_gp_size (abfd
))
1587 /* Common symbols less than or equal to -G nn bytes are
1588 automatically put into .sbss. */
1590 asection
*scomm
= bfd_get_section_by_name (abfd
, ".scommon");
1594 scomm
= bfd_make_section_with_flags (abfd
, ".scommon",
1597 | SEC_LINKER_CREATED
));
1603 *valp
= sym
->st_size
;
1609 /* Return the number of additional phdrs we will need. */
1612 elfNN_ia64_additional_program_headers (abfd
)
1618 /* See if we need a PT_IA_64_ARCHEXT segment. */
1619 s
= bfd_get_section_by_name (abfd
, ELF_STRING_ia64_archext
);
1620 if (s
&& (s
->flags
& SEC_LOAD
))
1623 /* Count how many PT_IA_64_UNWIND segments we need. */
1624 for (s
= abfd
->sections
; s
; s
= s
->next
)
1625 if (is_unwind_section_name (abfd
, s
->name
) && (s
->flags
& SEC_LOAD
))
1632 elfNN_ia64_modify_segment_map (abfd
, info
)
1634 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1636 struct elf_segment_map
*m
, **pm
;
1637 Elf_Internal_Shdr
*hdr
;
1640 /* If we need a PT_IA_64_ARCHEXT segment, it must come before
1641 all PT_LOAD segments. */
1642 s
= bfd_get_section_by_name (abfd
, ELF_STRING_ia64_archext
);
1643 if (s
&& (s
->flags
& SEC_LOAD
))
1645 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
1646 if (m
->p_type
== PT_IA_64_ARCHEXT
)
1650 m
= ((struct elf_segment_map
*)
1651 bfd_zalloc (abfd
, (bfd_size_type
) sizeof *m
));
1655 m
->p_type
= PT_IA_64_ARCHEXT
;
1659 /* We want to put it after the PHDR and INTERP segments. */
1660 pm
= &elf_tdata (abfd
)->segment_map
;
1662 && ((*pm
)->p_type
== PT_PHDR
1663 || (*pm
)->p_type
== PT_INTERP
))
1671 /* Install PT_IA_64_UNWIND segments, if needed. */
1672 for (s
= abfd
->sections
; s
; s
= s
->next
)
1674 hdr
= &elf_section_data (s
)->this_hdr
;
1675 if (hdr
->sh_type
!= SHT_IA_64_UNWIND
)
1678 if (s
&& (s
->flags
& SEC_LOAD
))
1680 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
1681 if (m
->p_type
== PT_IA_64_UNWIND
)
1685 /* Look through all sections in the unwind segment
1686 for a match since there may be multiple sections
1688 for (i
= m
->count
- 1; i
>= 0; --i
)
1689 if (m
->sections
[i
] == s
)
1698 m
= ((struct elf_segment_map
*)
1699 bfd_zalloc (abfd
, (bfd_size_type
) sizeof *m
));
1703 m
->p_type
= PT_IA_64_UNWIND
;
1708 /* We want to put it last. */
1709 pm
= &elf_tdata (abfd
)->segment_map
;
1717 /* Turn on PF_IA_64_NORECOV if needed. This involves traversing all of
1718 the input sections for each output section in the segment and testing
1719 for SHF_IA_64_NORECOV on each. */
1720 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
1721 if (m
->p_type
== PT_LOAD
)
1724 for (i
= m
->count
- 1; i
>= 0; --i
)
1726 struct bfd_link_order
*order
= m
->sections
[i
]->map_head
.link_order
;
1729 if (order
->type
== bfd_indirect_link_order
)
1731 asection
*is
= order
->u
.indirect
.section
;
1732 bfd_vma flags
= elf_section_data(is
)->this_hdr
.sh_flags
;
1733 if (flags
& SHF_IA_64_NORECOV
)
1735 m
->p_flags
|= PF_IA_64_NORECOV
;
1739 order
= order
->next
;
1748 /* According to the Tahoe assembler spec, all labels starting with a
1752 elfNN_ia64_is_local_label_name (abfd
, name
)
1753 bfd
*abfd ATTRIBUTE_UNUSED
;
1756 return name
[0] == '.';
1759 /* Should we do dynamic things to this symbol? */
1762 elfNN_ia64_dynamic_symbol_p (h
, info
, r_type
)
1763 struct elf_link_hash_entry
*h
;
1764 struct bfd_link_info
*info
;
1767 bfd_boolean ignore_protected
1768 = ((r_type
& 0xf8) == 0x40 /* FPTR relocs */
1769 || (r_type
& 0xf8) == 0x50); /* LTOFF_FPTR relocs */
1771 return _bfd_elf_dynamic_symbol_p (h
, info
, ignore_protected
);
1774 static struct bfd_hash_entry
*
1775 elfNN_ia64_new_elf_hash_entry (entry
, table
, string
)
1776 struct bfd_hash_entry
*entry
;
1777 struct bfd_hash_table
*table
;
1780 struct elfNN_ia64_link_hash_entry
*ret
;
1781 ret
= (struct elfNN_ia64_link_hash_entry
*) entry
;
1783 /* Allocate the structure if it has not already been allocated by a
1786 ret
= bfd_hash_allocate (table
, sizeof (*ret
));
1791 /* Call the allocation method of the superclass. */
1792 ret
= ((struct elfNN_ia64_link_hash_entry
*)
1793 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
1797 return (struct bfd_hash_entry
*) ret
;
1801 elfNN_ia64_hash_copy_indirect (info
, xdir
, xind
)
1802 struct bfd_link_info
*info
;
1803 struct elf_link_hash_entry
*xdir
, *xind
;
1805 struct elfNN_ia64_link_hash_entry
*dir
, *ind
;
1807 dir
= (struct elfNN_ia64_link_hash_entry
*) xdir
;
1808 ind
= (struct elfNN_ia64_link_hash_entry
*) xind
;
1810 /* Copy down any references that we may have already seen to the
1811 symbol which just became indirect. */
1813 dir
->root
.ref_dynamic
|= ind
->root
.ref_dynamic
;
1814 dir
->root
.ref_regular
|= ind
->root
.ref_regular
;
1815 dir
->root
.ref_regular_nonweak
|= ind
->root
.ref_regular_nonweak
;
1816 dir
->root
.needs_plt
|= ind
->root
.needs_plt
;
1818 if (ind
->root
.root
.type
!= bfd_link_hash_indirect
)
1821 /* Copy over the got and plt data. This would have been done
1824 if (ind
->info
!= NULL
)
1826 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
1827 struct elfNN_ia64_dyn_sym_info
**pdyn
;
1830 while ((dyn_i
= *pdyn
) != NULL
)
1831 pdyn
= &dyn_i
->next
;
1832 *pdyn
= dyn_i
= ind
->info
;
1835 /* Fix up the dyn_sym_info pointers to the global symbol. */
1836 for (; dyn_i
; dyn_i
= dyn_i
->next
)
1837 dyn_i
->h
= &dir
->root
;
1840 /* Copy over the dynindx. */
1842 if (ind
->root
.dynindx
!= -1)
1844 if (dir
->root
.dynindx
!= -1)
1845 _bfd_elf_strtab_delref (elf_hash_table (info
)->dynstr
,
1846 dir
->root
.dynstr_index
);
1847 dir
->root
.dynindx
= ind
->root
.dynindx
;
1848 dir
->root
.dynstr_index
= ind
->root
.dynstr_index
;
1849 ind
->root
.dynindx
= -1;
1850 ind
->root
.dynstr_index
= 0;
1855 elfNN_ia64_hash_hide_symbol (info
, xh
, force_local
)
1856 struct bfd_link_info
*info
;
1857 struct elf_link_hash_entry
*xh
;
1858 bfd_boolean force_local
;
1860 struct elfNN_ia64_link_hash_entry
*h
;
1861 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
1863 h
= (struct elfNN_ia64_link_hash_entry
*)xh
;
1865 _bfd_elf_link_hash_hide_symbol (info
, &h
->root
, force_local
);
1867 for (dyn_i
= h
->info
; dyn_i
; dyn_i
= dyn_i
->next
)
1869 dyn_i
->want_plt2
= 0;
1870 dyn_i
->want_plt
= 0;
1874 /* Compute a hash of a local hash entry. */
1877 elfNN_ia64_local_htab_hash (ptr
)
1880 struct elfNN_ia64_local_hash_entry
*entry
1881 = (struct elfNN_ia64_local_hash_entry
*) ptr
;
1883 return (((entry
->id
& 0xff) << 24) | ((entry
->id
& 0xff00) << 8))
1884 ^ entry
->r_sym
^ (entry
->id
>> 16);
1887 /* Compare local hash entries. */
1890 elfNN_ia64_local_htab_eq (ptr1
, ptr2
)
1891 const void *ptr1
, *ptr2
;
1893 struct elfNN_ia64_local_hash_entry
*entry1
1894 = (struct elfNN_ia64_local_hash_entry
*) ptr1
;
1895 struct elfNN_ia64_local_hash_entry
*entry2
1896 = (struct elfNN_ia64_local_hash_entry
*) ptr2
;
1898 return entry1
->id
== entry2
->id
&& entry1
->r_sym
== entry2
->r_sym
;
1901 /* Create the derived linker hash table. The IA-64 ELF port uses this
1902 derived hash table to keep information specific to the IA-64 ElF
1903 linker (without using static variables). */
1905 static struct bfd_link_hash_table
*
1906 elfNN_ia64_hash_table_create (abfd
)
1909 struct elfNN_ia64_link_hash_table
*ret
;
1911 ret
= bfd_zmalloc ((bfd_size_type
) sizeof (*ret
));
1915 if (!_bfd_elf_link_hash_table_init (&ret
->root
, abfd
,
1916 elfNN_ia64_new_elf_hash_entry
))
1922 ret
->loc_hash_table
= htab_try_create (1024, elfNN_ia64_local_htab_hash
,
1923 elfNN_ia64_local_htab_eq
, NULL
);
1924 ret
->loc_hash_memory
= objalloc_create ();
1925 if (!ret
->loc_hash_table
|| !ret
->loc_hash_memory
)
1931 return &ret
->root
.root
;
1934 /* Destroy IA-64 linker hash table. */
1937 elfNN_ia64_hash_table_free (hash
)
1938 struct bfd_link_hash_table
*hash
;
1940 struct elfNN_ia64_link_hash_table
*ia64_info
1941 = (struct elfNN_ia64_link_hash_table
*) hash
;
1942 if (ia64_info
->loc_hash_table
)
1943 htab_delete (ia64_info
->loc_hash_table
);
1944 if (ia64_info
->loc_hash_memory
)
1945 objalloc_free ((struct objalloc
*) ia64_info
->loc_hash_memory
);
1946 _bfd_generic_link_hash_table_free (hash
);
1949 /* Traverse both local and global hash tables. */
1951 struct elfNN_ia64_dyn_sym_traverse_data
1953 bfd_boolean (*func
) PARAMS ((struct elfNN_ia64_dyn_sym_info
*, PTR
));
1958 elfNN_ia64_global_dyn_sym_thunk (xentry
, xdata
)
1959 struct bfd_hash_entry
*xentry
;
1962 struct elfNN_ia64_link_hash_entry
*entry
1963 = (struct elfNN_ia64_link_hash_entry
*) xentry
;
1964 struct elfNN_ia64_dyn_sym_traverse_data
*data
1965 = (struct elfNN_ia64_dyn_sym_traverse_data
*) xdata
;
1966 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
1968 if (entry
->root
.root
.type
== bfd_link_hash_warning
)
1969 entry
= (struct elfNN_ia64_link_hash_entry
*) entry
->root
.root
.u
.i
.link
;
1971 for (dyn_i
= entry
->info
; dyn_i
; dyn_i
= dyn_i
->next
)
1972 if (! (*data
->func
) (dyn_i
, data
->data
))
1978 elfNN_ia64_local_dyn_sym_thunk (slot
, xdata
)
1982 struct elfNN_ia64_local_hash_entry
*entry
1983 = (struct elfNN_ia64_local_hash_entry
*) *slot
;
1984 struct elfNN_ia64_dyn_sym_traverse_data
*data
1985 = (struct elfNN_ia64_dyn_sym_traverse_data
*) xdata
;
1986 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
1988 for (dyn_i
= entry
->info
; dyn_i
; dyn_i
= dyn_i
->next
)
1989 if (! (*data
->func
) (dyn_i
, data
->data
))
1995 elfNN_ia64_dyn_sym_traverse (ia64_info
, func
, data
)
1996 struct elfNN_ia64_link_hash_table
*ia64_info
;
1997 bfd_boolean (*func
) PARAMS ((struct elfNN_ia64_dyn_sym_info
*, PTR
));
2000 struct elfNN_ia64_dyn_sym_traverse_data xdata
;
2005 elf_link_hash_traverse (&ia64_info
->root
,
2006 elfNN_ia64_global_dyn_sym_thunk
, &xdata
);
2007 htab_traverse (ia64_info
->loc_hash_table
,
2008 elfNN_ia64_local_dyn_sym_thunk
, &xdata
);
2012 elfNN_ia64_create_dynamic_sections (abfd
, info
)
2014 struct bfd_link_info
*info
;
2016 struct elfNN_ia64_link_hash_table
*ia64_info
;
2019 if (! _bfd_elf_create_dynamic_sections (abfd
, info
))
2022 ia64_info
= elfNN_ia64_hash_table (info
);
2024 ia64_info
->plt_sec
= bfd_get_section_by_name (abfd
, ".plt");
2025 ia64_info
->got_sec
= bfd_get_section_by_name (abfd
, ".got");
2028 flagword flags
= bfd_get_section_flags (abfd
, ia64_info
->got_sec
);
2029 bfd_set_section_flags (abfd
, ia64_info
->got_sec
, SEC_SMALL_DATA
| flags
);
2030 /* The .got section is always aligned at 8 bytes. */
2031 bfd_set_section_alignment (abfd
, ia64_info
->got_sec
, 3);
2034 if (!get_pltoff (abfd
, info
, ia64_info
))
2037 s
= bfd_make_section_with_flags (abfd
, ".rela.IA_64.pltoff",
2038 (SEC_ALLOC
| SEC_LOAD
2041 | SEC_LINKER_CREATED
2044 || !bfd_set_section_alignment (abfd
, s
, LOG_SECTION_ALIGN
))
2046 ia64_info
->rel_pltoff_sec
= s
;
2048 s
= bfd_make_section_with_flags (abfd
, ".rela.got",
2049 (SEC_ALLOC
| SEC_LOAD
2052 | SEC_LINKER_CREATED
2055 || !bfd_set_section_alignment (abfd
, s
, LOG_SECTION_ALIGN
))
2057 ia64_info
->rel_got_sec
= s
;
2062 /* Find and/or create a hash entry for local symbol. */
2063 static struct elfNN_ia64_local_hash_entry
*
2064 get_local_sym_hash (ia64_info
, abfd
, rel
, create
)
2065 struct elfNN_ia64_link_hash_table
*ia64_info
;
2067 const Elf_Internal_Rela
*rel
;
2070 struct elfNN_ia64_local_hash_entry e
, *ret
;
2071 asection
*sec
= abfd
->sections
;
2072 hashval_t h
= (((sec
->id
& 0xff) << 24) | ((sec
->id
& 0xff00) << 8))
2073 ^ ELFNN_R_SYM (rel
->r_info
) ^ (sec
->id
>> 16);
2077 e
.r_sym
= ELFNN_R_SYM (rel
->r_info
);
2078 slot
= htab_find_slot_with_hash (ia64_info
->loc_hash_table
, &e
, h
,
2079 create
? INSERT
: NO_INSERT
);
2085 return (struct elfNN_ia64_local_hash_entry
*) *slot
;
2087 ret
= (struct elfNN_ia64_local_hash_entry
*)
2088 objalloc_alloc ((struct objalloc
*) ia64_info
->loc_hash_memory
,
2089 sizeof (struct elfNN_ia64_local_hash_entry
));
2092 memset (ret
, 0, sizeof (*ret
));
2094 ret
->r_sym
= ELFNN_R_SYM (rel
->r_info
);
2100 /* Find and/or create a descriptor for dynamic symbol info. This will
2101 vary based on global or local symbol, and the addend to the reloc. */
2103 static struct elfNN_ia64_dyn_sym_info
*
2104 get_dyn_sym_info (ia64_info
, h
, abfd
, rel
, create
)
2105 struct elfNN_ia64_link_hash_table
*ia64_info
;
2106 struct elf_link_hash_entry
*h
;
2108 const Elf_Internal_Rela
*rel
;
2111 struct elfNN_ia64_dyn_sym_info
**pp
;
2112 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2113 bfd_vma addend
= rel
? rel
->r_addend
: 0;
2116 pp
= &((struct elfNN_ia64_link_hash_entry
*)h
)->info
;
2119 struct elfNN_ia64_local_hash_entry
*loc_h
;
2121 loc_h
= get_local_sym_hash (ia64_info
, abfd
, rel
, create
);
2124 BFD_ASSERT (!create
);
2131 for (dyn_i
= *pp
; dyn_i
&& dyn_i
->addend
!= addend
; dyn_i
= *pp
)
2134 if (dyn_i
== NULL
&& create
)
2136 dyn_i
= ((struct elfNN_ia64_dyn_sym_info
*)
2137 bfd_zalloc (abfd
, (bfd_size_type
) sizeof *dyn_i
));
2139 dyn_i
->addend
= addend
;
2146 get_got (abfd
, info
, ia64_info
)
2148 struct bfd_link_info
*info
;
2149 struct elfNN_ia64_link_hash_table
*ia64_info
;
2154 got
= ia64_info
->got_sec
;
2159 dynobj
= ia64_info
->root
.dynobj
;
2161 ia64_info
->root
.dynobj
= dynobj
= abfd
;
2162 if (!_bfd_elf_create_got_section (dynobj
, info
))
2165 got
= bfd_get_section_by_name (dynobj
, ".got");
2167 ia64_info
->got_sec
= got
;
2169 /* The .got section is always aligned at 8 bytes. */
2170 if (!bfd_set_section_alignment (abfd
, got
, 3))
2173 flags
= bfd_get_section_flags (abfd
, got
);
2174 bfd_set_section_flags (abfd
, got
, SEC_SMALL_DATA
| flags
);
2180 /* Create function descriptor section (.opd). This section is called .opd
2181 because it contains "official procedure descriptors". The "official"
2182 refers to the fact that these descriptors are used when taking the address
2183 of a procedure, thus ensuring a unique address for each procedure. */
2186 get_fptr (abfd
, info
, ia64_info
)
2188 struct bfd_link_info
*info
;
2189 struct elfNN_ia64_link_hash_table
*ia64_info
;
2194 fptr
= ia64_info
->fptr_sec
;
2197 dynobj
= ia64_info
->root
.dynobj
;
2199 ia64_info
->root
.dynobj
= dynobj
= abfd
;
2201 fptr
= bfd_make_section_with_flags (dynobj
, ".opd",
2206 | (info
->pie
? 0 : SEC_READONLY
)
2207 | SEC_LINKER_CREATED
));
2209 || !bfd_set_section_alignment (abfd
, fptr
, 4))
2215 ia64_info
->fptr_sec
= fptr
;
2220 fptr_rel
= bfd_make_section_with_flags (dynobj
, ".rela.opd",
2221 (SEC_ALLOC
| SEC_LOAD
2224 | SEC_LINKER_CREATED
2226 if (fptr_rel
== NULL
2227 || !bfd_set_section_alignment (abfd
, fptr_rel
,
2234 ia64_info
->rel_fptr_sec
= fptr_rel
;
2242 get_pltoff (abfd
, info
, ia64_info
)
2244 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
2245 struct elfNN_ia64_link_hash_table
*ia64_info
;
2250 pltoff
= ia64_info
->pltoff_sec
;
2253 dynobj
= ia64_info
->root
.dynobj
;
2255 ia64_info
->root
.dynobj
= dynobj
= abfd
;
2257 pltoff
= bfd_make_section_with_flags (dynobj
,
2258 ELF_STRING_ia64_pltoff
,
2264 | SEC_LINKER_CREATED
));
2266 || !bfd_set_section_alignment (abfd
, pltoff
, 4))
2272 ia64_info
->pltoff_sec
= pltoff
;
2279 get_reloc_section (abfd
, ia64_info
, sec
, create
)
2281 struct elfNN_ia64_link_hash_table
*ia64_info
;
2285 const char *srel_name
;
2289 srel_name
= (bfd_elf_string_from_elf_section
2290 (abfd
, elf_elfheader(abfd
)->e_shstrndx
,
2291 elf_section_data(sec
)->rel_hdr
.sh_name
));
2292 if (srel_name
== NULL
)
2295 BFD_ASSERT ((strncmp (srel_name
, ".rela", 5) == 0
2296 && strcmp (bfd_get_section_name (abfd
, sec
),
2298 || (strncmp (srel_name
, ".rel", 4) == 0
2299 && strcmp (bfd_get_section_name (abfd
, sec
),
2300 srel_name
+4) == 0));
2302 dynobj
= ia64_info
->root
.dynobj
;
2304 ia64_info
->root
.dynobj
= dynobj
= abfd
;
2306 srel
= bfd_get_section_by_name (dynobj
, srel_name
);
2307 if (srel
== NULL
&& create
)
2309 srel
= bfd_make_section_with_flags (dynobj
, srel_name
,
2310 (SEC_ALLOC
| SEC_LOAD
2313 | SEC_LINKER_CREATED
2316 || !bfd_set_section_alignment (dynobj
, srel
,
2325 count_dyn_reloc (bfd
*abfd
, struct elfNN_ia64_dyn_sym_info
*dyn_i
,
2326 asection
*srel
, int type
, bfd_boolean reltext
)
2328 struct elfNN_ia64_dyn_reloc_entry
*rent
;
2330 for (rent
= dyn_i
->reloc_entries
; rent
; rent
= rent
->next
)
2331 if (rent
->srel
== srel
&& rent
->type
== type
)
2336 rent
= ((struct elfNN_ia64_dyn_reloc_entry
*)
2337 bfd_alloc (abfd
, (bfd_size_type
) sizeof (*rent
)));
2341 rent
->next
= dyn_i
->reloc_entries
;
2345 dyn_i
->reloc_entries
= rent
;
2347 rent
->reltext
= reltext
;
2354 elfNN_ia64_check_relocs (abfd
, info
, sec
, relocs
)
2356 struct bfd_link_info
*info
;
2358 const Elf_Internal_Rela
*relocs
;
2360 struct elfNN_ia64_link_hash_table
*ia64_info
;
2361 const Elf_Internal_Rela
*relend
;
2362 Elf_Internal_Shdr
*symtab_hdr
;
2363 const Elf_Internal_Rela
*rel
;
2364 asection
*got
, *fptr
, *srel
, *pltoff
;
2366 if (info
->relocatable
)
2369 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2370 ia64_info
= elfNN_ia64_hash_table (info
);
2372 got
= fptr
= srel
= pltoff
= NULL
;
2374 relend
= relocs
+ sec
->reloc_count
;
2375 for (rel
= relocs
; rel
< relend
; ++rel
)
2385 NEED_LTOFF_FPTR
= 128,
2391 struct elf_link_hash_entry
*h
= NULL
;
2392 unsigned long r_symndx
= ELFNN_R_SYM (rel
->r_info
);
2393 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2395 bfd_boolean maybe_dynamic
;
2396 int dynrel_type
= R_IA64_NONE
;
2398 if (r_symndx
>= symtab_hdr
->sh_info
)
2400 /* We're dealing with a global symbol -- find its hash entry
2401 and mark it as being referenced. */
2402 long indx
= r_symndx
- symtab_hdr
->sh_info
;
2403 h
= elf_sym_hashes (abfd
)[indx
];
2404 while (h
->root
.type
== bfd_link_hash_indirect
2405 || h
->root
.type
== bfd_link_hash_warning
)
2406 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2411 /* We can only get preliminary data on whether a symbol is
2412 locally or externally defined, as not all of the input files
2413 have yet been processed. Do something with what we know, as
2414 this may help reduce memory usage and processing time later. */
2415 maybe_dynamic
= FALSE
;
2416 if (h
&& ((!info
->executable
2418 || info
->unresolved_syms_in_shared_libs
== RM_IGNORE
))
2420 || h
->root
.type
== bfd_link_hash_defweak
))
2421 maybe_dynamic
= TRUE
;
2424 switch (ELFNN_R_TYPE (rel
->r_info
))
2426 case R_IA64_TPREL64MSB
:
2427 case R_IA64_TPREL64LSB
:
2428 if (info
->shared
|| maybe_dynamic
)
2429 need_entry
= NEED_DYNREL
;
2430 dynrel_type
= R_IA64_TPREL64LSB
;
2432 info
->flags
|= DF_STATIC_TLS
;
2435 case R_IA64_LTOFF_TPREL22
:
2436 need_entry
= NEED_TPREL
;
2438 info
->flags
|= DF_STATIC_TLS
;
2441 case R_IA64_DTPREL32MSB
:
2442 case R_IA64_DTPREL32LSB
:
2443 case R_IA64_DTPREL64MSB
:
2444 case R_IA64_DTPREL64LSB
:
2445 if (info
->shared
|| maybe_dynamic
)
2446 need_entry
= NEED_DYNREL
;
2447 dynrel_type
= R_IA64_DTPRELNNLSB
;
2450 case R_IA64_LTOFF_DTPREL22
:
2451 need_entry
= NEED_DTPREL
;
2454 case R_IA64_DTPMOD64MSB
:
2455 case R_IA64_DTPMOD64LSB
:
2456 if (info
->shared
|| maybe_dynamic
)
2457 need_entry
= NEED_DYNREL
;
2458 dynrel_type
= R_IA64_DTPMOD64LSB
;
2461 case R_IA64_LTOFF_DTPMOD22
:
2462 need_entry
= NEED_DTPMOD
;
2465 case R_IA64_LTOFF_FPTR22
:
2466 case R_IA64_LTOFF_FPTR64I
:
2467 case R_IA64_LTOFF_FPTR32MSB
:
2468 case R_IA64_LTOFF_FPTR32LSB
:
2469 case R_IA64_LTOFF_FPTR64MSB
:
2470 case R_IA64_LTOFF_FPTR64LSB
:
2471 need_entry
= NEED_FPTR
| NEED_GOT
| NEED_LTOFF_FPTR
;
2474 case R_IA64_FPTR64I
:
2475 case R_IA64_FPTR32MSB
:
2476 case R_IA64_FPTR32LSB
:
2477 case R_IA64_FPTR64MSB
:
2478 case R_IA64_FPTR64LSB
:
2479 if (info
->shared
|| h
)
2480 need_entry
= NEED_FPTR
| NEED_DYNREL
;
2482 need_entry
= NEED_FPTR
;
2483 dynrel_type
= R_IA64_FPTRNNLSB
;
2486 case R_IA64_LTOFF22
:
2487 case R_IA64_LTOFF64I
:
2488 need_entry
= NEED_GOT
;
2491 case R_IA64_LTOFF22X
:
2492 need_entry
= NEED_GOTX
;
2495 case R_IA64_PLTOFF22
:
2496 case R_IA64_PLTOFF64I
:
2497 case R_IA64_PLTOFF64MSB
:
2498 case R_IA64_PLTOFF64LSB
:
2499 need_entry
= NEED_PLTOFF
;
2503 need_entry
|= NEED_MIN_PLT
;
2507 (*info
->callbacks
->warning
)
2508 (info
, _("@pltoff reloc against local symbol"), 0,
2509 abfd
, 0, (bfd_vma
) 0);
2513 case R_IA64_PCREL21B
:
2514 case R_IA64_PCREL60B
:
2515 /* Depending on where this symbol is defined, we may or may not
2516 need a full plt entry. Only skip if we know we'll not need
2517 the entry -- static or symbolic, and the symbol definition
2518 has already been seen. */
2519 if (maybe_dynamic
&& rel
->r_addend
== 0)
2520 need_entry
= NEED_FULL_PLT
;
2526 case R_IA64_DIR32MSB
:
2527 case R_IA64_DIR32LSB
:
2528 case R_IA64_DIR64MSB
:
2529 case R_IA64_DIR64LSB
:
2530 /* Shared objects will always need at least a REL relocation. */
2531 if (info
->shared
|| maybe_dynamic
)
2532 need_entry
= NEED_DYNREL
;
2533 dynrel_type
= R_IA64_DIRNNLSB
;
2536 case R_IA64_IPLTMSB
:
2537 case R_IA64_IPLTLSB
:
2538 /* Shared objects will always need at least a REL relocation. */
2539 if (info
->shared
|| maybe_dynamic
)
2540 need_entry
= NEED_DYNREL
;
2541 dynrel_type
= R_IA64_IPLTLSB
;
2544 case R_IA64_PCREL22
:
2545 case R_IA64_PCREL64I
:
2546 case R_IA64_PCREL32MSB
:
2547 case R_IA64_PCREL32LSB
:
2548 case R_IA64_PCREL64MSB
:
2549 case R_IA64_PCREL64LSB
:
2551 need_entry
= NEED_DYNREL
;
2552 dynrel_type
= R_IA64_PCRELNNLSB
;
2559 if ((need_entry
& NEED_FPTR
) != 0
2562 (*info
->callbacks
->warning
)
2563 (info
, _("non-zero addend in @fptr reloc"), 0,
2564 abfd
, 0, (bfd_vma
) 0);
2567 dyn_i
= get_dyn_sym_info (ia64_info
, h
, abfd
, rel
, TRUE
);
2569 /* Record whether or not this is a local symbol. */
2572 /* Create what's needed. */
2573 if (need_entry
& (NEED_GOT
| NEED_GOTX
| NEED_TPREL
2574 | NEED_DTPMOD
| NEED_DTPREL
))
2578 got
= get_got (abfd
, info
, ia64_info
);
2582 if (need_entry
& NEED_GOT
)
2583 dyn_i
->want_got
= 1;
2584 if (need_entry
& NEED_GOTX
)
2585 dyn_i
->want_gotx
= 1;
2586 if (need_entry
& NEED_TPREL
)
2587 dyn_i
->want_tprel
= 1;
2588 if (need_entry
& NEED_DTPMOD
)
2589 dyn_i
->want_dtpmod
= 1;
2590 if (need_entry
& NEED_DTPREL
)
2591 dyn_i
->want_dtprel
= 1;
2593 if (need_entry
& NEED_FPTR
)
2597 fptr
= get_fptr (abfd
, info
, ia64_info
);
2602 /* FPTRs for shared libraries are allocated by the dynamic
2603 linker. Make sure this local symbol will appear in the
2604 dynamic symbol table. */
2605 if (!h
&& info
->shared
)
2607 if (! (bfd_elf_link_record_local_dynamic_symbol
2608 (info
, abfd
, (long) r_symndx
)))
2612 dyn_i
->want_fptr
= 1;
2614 if (need_entry
& NEED_LTOFF_FPTR
)
2615 dyn_i
->want_ltoff_fptr
= 1;
2616 if (need_entry
& (NEED_MIN_PLT
| NEED_FULL_PLT
))
2618 if (!ia64_info
->root
.dynobj
)
2619 ia64_info
->root
.dynobj
= abfd
;
2621 dyn_i
->want_plt
= 1;
2623 if (need_entry
& NEED_FULL_PLT
)
2624 dyn_i
->want_plt2
= 1;
2625 if (need_entry
& NEED_PLTOFF
)
2627 /* This is needed here, in case @pltoff is used in a non-shared
2631 pltoff
= get_pltoff (abfd
, info
, ia64_info
);
2636 dyn_i
->want_pltoff
= 1;
2638 if ((need_entry
& NEED_DYNREL
) && (sec
->flags
& SEC_ALLOC
))
2642 srel
= get_reloc_section (abfd
, ia64_info
, sec
, TRUE
);
2646 if (!count_dyn_reloc (abfd
, dyn_i
, srel
, dynrel_type
,
2647 (sec
->flags
& SEC_READONLY
) != 0))
2655 /* For cleanliness, and potentially faster dynamic loading, allocate
2656 external GOT entries first. */
2659 allocate_global_data_got (dyn_i
, data
)
2660 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2663 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2665 if ((dyn_i
->want_got
|| dyn_i
->want_gotx
)
2666 && ! dyn_i
->want_fptr
2667 && elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, x
->info
, 0))
2669 dyn_i
->got_offset
= x
->ofs
;
2672 if (dyn_i
->want_tprel
)
2674 dyn_i
->tprel_offset
= x
->ofs
;
2677 if (dyn_i
->want_dtpmod
)
2679 if (elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, x
->info
, 0))
2681 dyn_i
->dtpmod_offset
= x
->ofs
;
2686 struct elfNN_ia64_link_hash_table
*ia64_info
;
2688 ia64_info
= elfNN_ia64_hash_table (x
->info
);
2689 if (ia64_info
->self_dtpmod_offset
== (bfd_vma
) -1)
2691 ia64_info
->self_dtpmod_offset
= x
->ofs
;
2694 dyn_i
->dtpmod_offset
= ia64_info
->self_dtpmod_offset
;
2697 if (dyn_i
->want_dtprel
)
2699 dyn_i
->dtprel_offset
= x
->ofs
;
2705 /* Next, allocate all the GOT entries used by LTOFF_FPTR relocs. */
2708 allocate_global_fptr_got (dyn_i
, data
)
2709 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2712 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2716 && elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, x
->info
, R_IA64_FPTRNNLSB
))
2718 dyn_i
->got_offset
= x
->ofs
;
2724 /* Lastly, allocate all the GOT entries for local data. */
2727 allocate_local_got (dyn_i
, data
)
2728 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2731 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2733 if ((dyn_i
->want_got
|| dyn_i
->want_gotx
)
2734 && !elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, x
->info
, 0))
2736 dyn_i
->got_offset
= x
->ofs
;
2742 /* Search for the index of a global symbol in it's defining object file. */
2745 global_sym_index (h
)
2746 struct elf_link_hash_entry
*h
;
2748 struct elf_link_hash_entry
**p
;
2751 BFD_ASSERT (h
->root
.type
== bfd_link_hash_defined
2752 || h
->root
.type
== bfd_link_hash_defweak
);
2754 obj
= h
->root
.u
.def
.section
->owner
;
2755 for (p
= elf_sym_hashes (obj
); *p
!= h
; ++p
)
2758 return p
- elf_sym_hashes (obj
) + elf_tdata (obj
)->symtab_hdr
.sh_info
;
2761 /* Allocate function descriptors. We can do these for every function
2762 in a main executable that is not exported. */
2765 allocate_fptr (dyn_i
, data
)
2766 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2769 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2771 if (dyn_i
->want_fptr
)
2773 struct elf_link_hash_entry
*h
= dyn_i
->h
;
2776 while (h
->root
.type
== bfd_link_hash_indirect
2777 || h
->root
.type
== bfd_link_hash_warning
)
2778 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2780 if (!x
->info
->executable
2782 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
2783 || (h
->root
.type
!= bfd_link_hash_undefweak
2784 && h
->root
.type
!= bfd_link_hash_undefined
)))
2786 if (h
&& h
->dynindx
== -1)
2788 BFD_ASSERT ((h
->root
.type
== bfd_link_hash_defined
)
2789 || (h
->root
.type
== bfd_link_hash_defweak
));
2791 if (!bfd_elf_link_record_local_dynamic_symbol
2792 (x
->info
, h
->root
.u
.def
.section
->owner
,
2793 global_sym_index (h
)))
2797 dyn_i
->want_fptr
= 0;
2799 else if (h
== NULL
|| h
->dynindx
== -1)
2801 dyn_i
->fptr_offset
= x
->ofs
;
2805 dyn_i
->want_fptr
= 0;
2810 /* Allocate all the minimal PLT entries. */
2813 allocate_plt_entries (dyn_i
, data
)
2814 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2817 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2819 if (dyn_i
->want_plt
)
2821 struct elf_link_hash_entry
*h
= dyn_i
->h
;
2824 while (h
->root
.type
== bfd_link_hash_indirect
2825 || h
->root
.type
== bfd_link_hash_warning
)
2826 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2828 /* ??? Versioned symbols seem to lose NEEDS_PLT. */
2829 if (elfNN_ia64_dynamic_symbol_p (h
, x
->info
, 0))
2831 bfd_size_type offset
= x
->ofs
;
2833 offset
= PLT_HEADER_SIZE
;
2834 dyn_i
->plt_offset
= offset
;
2835 x
->ofs
= offset
+ PLT_MIN_ENTRY_SIZE
;
2837 dyn_i
->want_pltoff
= 1;
2841 dyn_i
->want_plt
= 0;
2842 dyn_i
->want_plt2
= 0;
2848 /* Allocate all the full PLT entries. */
2851 allocate_plt2_entries (dyn_i
, data
)
2852 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2855 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2857 if (dyn_i
->want_plt2
)
2859 struct elf_link_hash_entry
*h
= dyn_i
->h
;
2860 bfd_size_type ofs
= x
->ofs
;
2862 dyn_i
->plt2_offset
= ofs
;
2863 x
->ofs
= ofs
+ PLT_FULL_ENTRY_SIZE
;
2865 while (h
->root
.type
== bfd_link_hash_indirect
2866 || h
->root
.type
== bfd_link_hash_warning
)
2867 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2868 dyn_i
->h
->plt
.offset
= ofs
;
2873 /* Allocate all the PLTOFF entries requested by relocations and
2874 plt entries. We can't share space with allocated FPTR entries,
2875 because the latter are not necessarily addressable by the GP.
2876 ??? Relaxation might be able to determine that they are. */
2879 allocate_pltoff_entries (dyn_i
, data
)
2880 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2883 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2885 if (dyn_i
->want_pltoff
)
2887 dyn_i
->pltoff_offset
= x
->ofs
;
2893 /* Allocate dynamic relocations for those symbols that turned out
2897 allocate_dynrel_entries (dyn_i
, data
)
2898 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
2901 struct elfNN_ia64_allocate_data
*x
= (struct elfNN_ia64_allocate_data
*)data
;
2902 struct elfNN_ia64_link_hash_table
*ia64_info
;
2903 struct elfNN_ia64_dyn_reloc_entry
*rent
;
2904 bfd_boolean dynamic_symbol
, shared
, resolved_zero
;
2906 ia64_info
= elfNN_ia64_hash_table (x
->info
);
2908 /* Note that this can't be used in relation to FPTR relocs below. */
2909 dynamic_symbol
= elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, x
->info
, 0);
2911 shared
= x
->info
->shared
;
2912 resolved_zero
= (dyn_i
->h
2913 && ELF_ST_VISIBILITY (dyn_i
->h
->other
)
2914 && dyn_i
->h
->root
.type
== bfd_link_hash_undefweak
);
2916 /* Take care of the GOT and PLT relocations. */
2919 && (dynamic_symbol
|| shared
)
2920 && (dyn_i
->want_got
|| dyn_i
->want_gotx
))
2921 || (dyn_i
->want_ltoff_fptr
2923 && dyn_i
->h
->dynindx
!= -1))
2925 if (!dyn_i
->want_ltoff_fptr
2928 || dyn_i
->h
->root
.type
!= bfd_link_hash_undefweak
)
2929 ia64_info
->rel_got_sec
->size
+= sizeof (ElfNN_External_Rela
);
2931 if ((dynamic_symbol
|| shared
) && dyn_i
->want_tprel
)
2932 ia64_info
->rel_got_sec
->size
+= sizeof (ElfNN_External_Rela
);
2933 if (dynamic_symbol
&& dyn_i
->want_dtpmod
)
2934 ia64_info
->rel_got_sec
->size
+= sizeof (ElfNN_External_Rela
);
2935 if (dynamic_symbol
&& dyn_i
->want_dtprel
)
2936 ia64_info
->rel_got_sec
->size
+= sizeof (ElfNN_External_Rela
);
2941 if (ia64_info
->rel_fptr_sec
&& dyn_i
->want_fptr
)
2943 if (dyn_i
->h
== NULL
|| dyn_i
->h
->root
.type
!= bfd_link_hash_undefweak
)
2944 ia64_info
->rel_fptr_sec
->size
+= sizeof (ElfNN_External_Rela
);
2947 if (!resolved_zero
&& dyn_i
->want_pltoff
)
2949 bfd_size_type t
= 0;
2951 /* Dynamic symbols get one IPLT relocation. Local symbols in
2952 shared libraries get two REL relocations. Local symbols in
2953 main applications get nothing. */
2955 t
= sizeof (ElfNN_External_Rela
);
2957 t
= 2 * sizeof (ElfNN_External_Rela
);
2959 ia64_info
->rel_pltoff_sec
->size
+= t
;
2962 /* Take care of the normal data relocations. */
2964 for (rent
= dyn_i
->reloc_entries
; rent
; rent
= rent
->next
)
2966 int count
= rent
->count
;
2970 case R_IA64_FPTR32LSB
:
2971 case R_IA64_FPTR64LSB
:
2972 /* Allocate one iff !want_fptr and not PIE, which by this point
2973 will be true only if we're actually allocating one statically
2974 in the main executable. Position independent executables
2975 need a relative reloc. */
2976 if (dyn_i
->want_fptr
&& !x
->info
->pie
)
2979 case R_IA64_PCREL32LSB
:
2980 case R_IA64_PCREL64LSB
:
2981 if (!dynamic_symbol
)
2984 case R_IA64_DIR32LSB
:
2985 case R_IA64_DIR64LSB
:
2986 if (!dynamic_symbol
&& !shared
)
2989 case R_IA64_IPLTLSB
:
2990 if (!dynamic_symbol
&& !shared
)
2992 /* Use two REL relocations for IPLT relocations
2993 against local symbols. */
2994 if (!dynamic_symbol
)
2997 case R_IA64_DTPREL32LSB
:
2998 case R_IA64_TPREL64LSB
:
2999 case R_IA64_DTPREL64LSB
:
3000 case R_IA64_DTPMOD64LSB
:
3006 ia64_info
->reltext
= 1;
3007 rent
->srel
->size
+= sizeof (ElfNN_External_Rela
) * count
;
3014 elfNN_ia64_adjust_dynamic_symbol (info
, h
)
3015 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
3016 struct elf_link_hash_entry
*h
;
3018 /* ??? Undefined symbols with PLT entries should be re-defined
3019 to be the PLT entry. */
3021 /* If this is a weak symbol, and there is a real definition, the
3022 processor independent code will have arranged for us to see the
3023 real definition first, and we can just use the same value. */
3024 if (h
->u
.weakdef
!= NULL
)
3026 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
3027 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
3028 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
3029 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
3033 /* If this is a reference to a symbol defined by a dynamic object which
3034 is not a function, we might allocate the symbol in our .dynbss section
3035 and allocate a COPY dynamic relocation.
3037 But IA-64 code is canonically PIC, so as a rule we can avoid this sort
3044 elfNN_ia64_size_dynamic_sections (output_bfd
, info
)
3045 bfd
*output_bfd ATTRIBUTE_UNUSED
;
3046 struct bfd_link_info
*info
;
3048 struct elfNN_ia64_allocate_data data
;
3049 struct elfNN_ia64_link_hash_table
*ia64_info
;
3052 bfd_boolean relplt
= FALSE
;
3054 dynobj
= elf_hash_table(info
)->dynobj
;
3055 ia64_info
= elfNN_ia64_hash_table (info
);
3056 ia64_info
->self_dtpmod_offset
= (bfd_vma
) -1;
3057 BFD_ASSERT(dynobj
!= NULL
);
3060 /* Set the contents of the .interp section to the interpreter. */
3061 if (ia64_info
->root
.dynamic_sections_created
3062 && info
->executable
)
3064 sec
= bfd_get_section_by_name (dynobj
, ".interp");
3065 BFD_ASSERT (sec
!= NULL
);
3066 sec
->contents
= (bfd_byte
*) ELF_DYNAMIC_INTERPRETER
;
3067 sec
->size
= strlen (ELF_DYNAMIC_INTERPRETER
) + 1;
3070 /* Allocate the GOT entries. */
3072 if (ia64_info
->got_sec
)
3075 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_global_data_got
, &data
);
3076 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_global_fptr_got
, &data
);
3077 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_local_got
, &data
);
3078 ia64_info
->got_sec
->size
= data
.ofs
;
3081 /* Allocate the FPTR entries. */
3083 if (ia64_info
->fptr_sec
)
3086 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_fptr
, &data
);
3087 ia64_info
->fptr_sec
->size
= data
.ofs
;
3090 /* Now that we've seen all of the input files, we can decide which
3091 symbols need plt entries. Allocate the minimal PLT entries first.
3092 We do this even though dynamic_sections_created may be FALSE, because
3093 this has the side-effect of clearing want_plt and want_plt2. */
3096 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_plt_entries
, &data
);
3098 ia64_info
->minplt_entries
= 0;
3101 ia64_info
->minplt_entries
3102 = (data
.ofs
- PLT_HEADER_SIZE
) / PLT_MIN_ENTRY_SIZE
;
3105 /* Align the pointer for the plt2 entries. */
3106 data
.ofs
= (data
.ofs
+ 31) & (bfd_vma
) -32;
3108 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_plt2_entries
, &data
);
3109 if (data
.ofs
!= 0 || ia64_info
->root
.dynamic_sections_created
)
3111 /* FIXME: we always reserve the memory for dynamic linker even if
3112 there are no PLT entries since dynamic linker may assume the
3113 reserved memory always exists. */
3115 BFD_ASSERT (ia64_info
->root
.dynamic_sections_created
);
3117 ia64_info
->plt_sec
->size
= data
.ofs
;
3119 /* If we've got a .plt, we need some extra memory for the dynamic
3120 linker. We stuff these in .got.plt. */
3121 sec
= bfd_get_section_by_name (dynobj
, ".got.plt");
3122 sec
->size
= 8 * PLT_RESERVED_WORDS
;
3125 /* Allocate the PLTOFF entries. */
3127 if (ia64_info
->pltoff_sec
)
3130 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_pltoff_entries
, &data
);
3131 ia64_info
->pltoff_sec
->size
= data
.ofs
;
3134 if (ia64_info
->root
.dynamic_sections_created
)
3136 /* Allocate space for the dynamic relocations that turned out to be
3139 if (info
->shared
&& ia64_info
->self_dtpmod_offset
!= (bfd_vma
) -1)
3140 ia64_info
->rel_got_sec
->size
+= sizeof (ElfNN_External_Rela
);
3141 data
.only_got
= FALSE
;
3142 elfNN_ia64_dyn_sym_traverse (ia64_info
, allocate_dynrel_entries
, &data
);
3145 /* We have now determined the sizes of the various dynamic sections.
3146 Allocate memory for them. */
3147 for (sec
= dynobj
->sections
; sec
!= NULL
; sec
= sec
->next
)
3151 if (!(sec
->flags
& SEC_LINKER_CREATED
))
3154 /* If we don't need this section, strip it from the output file.
3155 There were several sections primarily related to dynamic
3156 linking that must be create before the linker maps input
3157 sections to output sections. The linker does that before
3158 bfd_elf_size_dynamic_sections is called, and it is that
3159 function which decides whether anything needs to go into
3162 strip
= (sec
->size
== 0);
3164 if (sec
== ia64_info
->got_sec
)
3166 else if (sec
== ia64_info
->rel_got_sec
)
3169 ia64_info
->rel_got_sec
= NULL
;
3171 /* We use the reloc_count field as a counter if we need to
3172 copy relocs into the output file. */
3173 sec
->reloc_count
= 0;
3175 else if (sec
== ia64_info
->fptr_sec
)
3178 ia64_info
->fptr_sec
= NULL
;
3180 else if (sec
== ia64_info
->rel_fptr_sec
)
3183 ia64_info
->rel_fptr_sec
= NULL
;
3185 /* We use the reloc_count field as a counter if we need to
3186 copy relocs into the output file. */
3187 sec
->reloc_count
= 0;
3189 else if (sec
== ia64_info
->plt_sec
)
3192 ia64_info
->plt_sec
= NULL
;
3194 else if (sec
== ia64_info
->pltoff_sec
)
3197 ia64_info
->pltoff_sec
= NULL
;
3199 else if (sec
== ia64_info
->rel_pltoff_sec
)
3202 ia64_info
->rel_pltoff_sec
= NULL
;
3206 /* We use the reloc_count field as a counter if we need to
3207 copy relocs into the output file. */
3208 sec
->reloc_count
= 0;
3215 /* It's OK to base decisions on the section name, because none
3216 of the dynobj section names depend upon the input files. */
3217 name
= bfd_get_section_name (dynobj
, sec
);
3219 if (strcmp (name
, ".got.plt") == 0)
3221 else if (strncmp (name
, ".rel", 4) == 0)
3225 /* We use the reloc_count field as a counter if we need to
3226 copy relocs into the output file. */
3227 sec
->reloc_count
= 0;
3235 sec
->flags
|= SEC_EXCLUDE
;
3238 /* Allocate memory for the section contents. */
3239 sec
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, sec
->size
);
3240 if (sec
->contents
== NULL
&& sec
->size
!= 0)
3245 if (elf_hash_table (info
)->dynamic_sections_created
)
3247 /* Add some entries to the .dynamic section. We fill in the values
3248 later (in finish_dynamic_sections) but we must add the entries now
3249 so that we get the correct size for the .dynamic section. */
3251 if (info
->executable
)
3253 /* The DT_DEBUG entry is filled in by the dynamic linker and used
3255 #define add_dynamic_entry(TAG, VAL) \
3256 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
3258 if (!add_dynamic_entry (DT_DEBUG
, 0))
3262 if (!add_dynamic_entry (DT_IA_64_PLT_RESERVE
, 0))
3264 if (!add_dynamic_entry (DT_PLTGOT
, 0))
3269 if (!add_dynamic_entry (DT_PLTRELSZ
, 0)
3270 || !add_dynamic_entry (DT_PLTREL
, DT_RELA
)
3271 || !add_dynamic_entry (DT_JMPREL
, 0))
3275 if (!add_dynamic_entry (DT_RELA
, 0)
3276 || !add_dynamic_entry (DT_RELASZ
, 0)
3277 || !add_dynamic_entry (DT_RELAENT
, sizeof (ElfNN_External_Rela
)))
3280 if (ia64_info
->reltext
)
3282 if (!add_dynamic_entry (DT_TEXTREL
, 0))
3284 info
->flags
|= DF_TEXTREL
;
3288 /* ??? Perhaps force __gp local. */
3293 static bfd_reloc_status_type
3294 elfNN_ia64_install_value (hit_addr
, v
, r_type
)
3297 unsigned int r_type
;
3299 const struct ia64_operand
*op
;
3300 int bigendian
= 0, shift
= 0;
3301 bfd_vma t0
, t1
, dword
;
3303 enum ia64_opnd opnd
;
3306 #ifdef BFD_HOST_U_64_BIT
3307 BFD_HOST_U_64_BIT val
= (BFD_HOST_U_64_BIT
) v
;
3312 opnd
= IA64_OPND_NIL
;
3317 return bfd_reloc_ok
;
3319 /* Instruction relocations. */
3322 case R_IA64_TPREL14
:
3323 case R_IA64_DTPREL14
:
3324 opnd
= IA64_OPND_IMM14
;
3327 case R_IA64_PCREL21F
: opnd
= IA64_OPND_TGT25
; break;
3328 case R_IA64_PCREL21M
: opnd
= IA64_OPND_TGT25b
; break;
3329 case R_IA64_PCREL60B
: opnd
= IA64_OPND_TGT64
; break;
3330 case R_IA64_PCREL21B
:
3331 case R_IA64_PCREL21BI
:
3332 opnd
= IA64_OPND_TGT25c
;
3336 case R_IA64_GPREL22
:
3337 case R_IA64_LTOFF22
:
3338 case R_IA64_LTOFF22X
:
3339 case R_IA64_PLTOFF22
:
3340 case R_IA64_PCREL22
:
3341 case R_IA64_LTOFF_FPTR22
:
3342 case R_IA64_TPREL22
:
3343 case R_IA64_DTPREL22
:
3344 case R_IA64_LTOFF_TPREL22
:
3345 case R_IA64_LTOFF_DTPMOD22
:
3346 case R_IA64_LTOFF_DTPREL22
:
3347 opnd
= IA64_OPND_IMM22
;
3351 case R_IA64_GPREL64I
:
3352 case R_IA64_LTOFF64I
:
3353 case R_IA64_PLTOFF64I
:
3354 case R_IA64_PCREL64I
:
3355 case R_IA64_FPTR64I
:
3356 case R_IA64_LTOFF_FPTR64I
:
3357 case R_IA64_TPREL64I
:
3358 case R_IA64_DTPREL64I
:
3359 opnd
= IA64_OPND_IMMU64
;
3362 /* Data relocations. */
3364 case R_IA64_DIR32MSB
:
3365 case R_IA64_GPREL32MSB
:
3366 case R_IA64_FPTR32MSB
:
3367 case R_IA64_PCREL32MSB
:
3368 case R_IA64_LTOFF_FPTR32MSB
:
3369 case R_IA64_SEGREL32MSB
:
3370 case R_IA64_SECREL32MSB
:
3371 case R_IA64_LTV32MSB
:
3372 case R_IA64_DTPREL32MSB
:
3373 size
= 4; bigendian
= 1;
3376 case R_IA64_DIR32LSB
:
3377 case R_IA64_GPREL32LSB
:
3378 case R_IA64_FPTR32LSB
:
3379 case R_IA64_PCREL32LSB
:
3380 case R_IA64_LTOFF_FPTR32LSB
:
3381 case R_IA64_SEGREL32LSB
:
3382 case R_IA64_SECREL32LSB
:
3383 case R_IA64_LTV32LSB
:
3384 case R_IA64_DTPREL32LSB
:
3385 size
= 4; bigendian
= 0;
3388 case R_IA64_DIR64MSB
:
3389 case R_IA64_GPREL64MSB
:
3390 case R_IA64_PLTOFF64MSB
:
3391 case R_IA64_FPTR64MSB
:
3392 case R_IA64_PCREL64MSB
:
3393 case R_IA64_LTOFF_FPTR64MSB
:
3394 case R_IA64_SEGREL64MSB
:
3395 case R_IA64_SECREL64MSB
:
3396 case R_IA64_LTV64MSB
:
3397 case R_IA64_TPREL64MSB
:
3398 case R_IA64_DTPMOD64MSB
:
3399 case R_IA64_DTPREL64MSB
:
3400 size
= 8; bigendian
= 1;
3403 case R_IA64_DIR64LSB
:
3404 case R_IA64_GPREL64LSB
:
3405 case R_IA64_PLTOFF64LSB
:
3406 case R_IA64_FPTR64LSB
:
3407 case R_IA64_PCREL64LSB
:
3408 case R_IA64_LTOFF_FPTR64LSB
:
3409 case R_IA64_SEGREL64LSB
:
3410 case R_IA64_SECREL64LSB
:
3411 case R_IA64_LTV64LSB
:
3412 case R_IA64_TPREL64LSB
:
3413 case R_IA64_DTPMOD64LSB
:
3414 case R_IA64_DTPREL64LSB
:
3415 size
= 8; bigendian
= 0;
3418 /* Unsupported / Dynamic relocations. */
3420 return bfd_reloc_notsupported
;
3425 case IA64_OPND_IMMU64
:
3426 hit_addr
-= (long) hit_addr
& 0x3;
3427 t0
= bfd_getl64 (hit_addr
);
3428 t1
= bfd_getl64 (hit_addr
+ 8);
3430 /* tmpl/s: bits 0.. 5 in t0
3431 slot 0: bits 5..45 in t0
3432 slot 1: bits 46..63 in t0, bits 0..22 in t1
3433 slot 2: bits 23..63 in t1 */
3435 /* First, clear the bits that form the 64 bit constant. */
3436 t0
&= ~(0x3ffffLL
<< 46);
3438 | (( (0x07fLL
<< 13) | (0x1ffLL
<< 27)
3439 | (0x01fLL
<< 22) | (0x001LL
<< 21)
3440 | (0x001LL
<< 36)) << 23));
3442 t0
|= ((val
>> 22) & 0x03ffffLL
) << 46; /* 18 lsbs of imm41 */
3443 t1
|= ((val
>> 40) & 0x7fffffLL
) << 0; /* 23 msbs of imm41 */
3444 t1
|= ( (((val
>> 0) & 0x07f) << 13) /* imm7b */
3445 | (((val
>> 7) & 0x1ff) << 27) /* imm9d */
3446 | (((val
>> 16) & 0x01f) << 22) /* imm5c */
3447 | (((val
>> 21) & 0x001) << 21) /* ic */
3448 | (((val
>> 63) & 0x001) << 36)) << 23; /* i */
3450 bfd_putl64 (t0
, hit_addr
);
3451 bfd_putl64 (t1
, hit_addr
+ 8);
3454 case IA64_OPND_TGT64
:
3455 hit_addr
-= (long) hit_addr
& 0x3;
3456 t0
= bfd_getl64 (hit_addr
);
3457 t1
= bfd_getl64 (hit_addr
+ 8);
3459 /* tmpl/s: bits 0.. 5 in t0
3460 slot 0: bits 5..45 in t0
3461 slot 1: bits 46..63 in t0, bits 0..22 in t1
3462 slot 2: bits 23..63 in t1 */
3464 /* First, clear the bits that form the 64 bit constant. */
3465 t0
&= ~(0x3ffffLL
<< 46);
3467 | ((1LL << 36 | 0xfffffLL
<< 13) << 23));
3470 t0
|= ((val
>> 20) & 0xffffLL
) << 2 << 46; /* 16 lsbs of imm39 */
3471 t1
|= ((val
>> 36) & 0x7fffffLL
) << 0; /* 23 msbs of imm39 */
3472 t1
|= ((((val
>> 0) & 0xfffffLL
) << 13) /* imm20b */
3473 | (((val
>> 59) & 0x1LL
) << 36)) << 23; /* i */
3475 bfd_putl64 (t0
, hit_addr
);
3476 bfd_putl64 (t1
, hit_addr
+ 8);
3480 switch ((long) hit_addr
& 0x3)
3482 case 0: shift
= 5; break;
3483 case 1: shift
= 14; hit_addr
+= 3; break;
3484 case 2: shift
= 23; hit_addr
+= 6; break;
3485 case 3: return bfd_reloc_notsupported
; /* shouldn't happen... */
3487 dword
= bfd_getl64 (hit_addr
);
3488 insn
= (dword
>> shift
) & 0x1ffffffffffLL
;
3490 op
= elf64_ia64_operands
+ opnd
;
3491 err
= (*op
->insert
) (op
, val
, &insn
);
3493 return bfd_reloc_overflow
;
3495 dword
&= ~(0x1ffffffffffLL
<< shift
);
3496 dword
|= (insn
<< shift
);
3497 bfd_putl64 (dword
, hit_addr
);
3501 /* A data relocation. */
3504 bfd_putb32 (val
, hit_addr
);
3506 bfd_putb64 (val
, hit_addr
);
3509 bfd_putl32 (val
, hit_addr
);
3511 bfd_putl64 (val
, hit_addr
);
3515 return bfd_reloc_ok
;
3519 elfNN_ia64_install_dyn_reloc (abfd
, info
, sec
, srel
, offset
, type
,
3522 struct bfd_link_info
*info
;
3530 Elf_Internal_Rela outrel
;
3533 BFD_ASSERT (dynindx
!= -1);
3534 outrel
.r_info
= ELFNN_R_INFO (dynindx
, type
);
3535 outrel
.r_addend
= addend
;
3536 outrel
.r_offset
= _bfd_elf_section_offset (abfd
, info
, sec
, offset
);
3537 if (outrel
.r_offset
>= (bfd_vma
) -2)
3539 /* Run for the hills. We shouldn't be outputting a relocation
3540 for this. So do what everyone else does and output a no-op. */
3541 outrel
.r_info
= ELFNN_R_INFO (0, R_IA64_NONE
);
3542 outrel
.r_addend
= 0;
3543 outrel
.r_offset
= 0;
3546 outrel
.r_offset
+= sec
->output_section
->vma
+ sec
->output_offset
;
3548 loc
= srel
->contents
;
3549 loc
+= srel
->reloc_count
++ * sizeof (ElfNN_External_Rela
);
3550 bfd_elfNN_swap_reloca_out (abfd
, &outrel
, loc
);
3551 BFD_ASSERT (sizeof (ElfNN_External_Rela
) * srel
->reloc_count
<= srel
->size
);
3554 /* Store an entry for target address TARGET_ADDR in the linkage table
3555 and return the gp-relative address of the linkage table entry. */
3558 set_got_entry (abfd
, info
, dyn_i
, dynindx
, addend
, value
, dyn_r_type
)
3560 struct bfd_link_info
*info
;
3561 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
3565 unsigned int dyn_r_type
;
3567 struct elfNN_ia64_link_hash_table
*ia64_info
;
3572 ia64_info
= elfNN_ia64_hash_table (info
);
3573 got_sec
= ia64_info
->got_sec
;
3577 case R_IA64_TPREL64LSB
:
3578 done
= dyn_i
->tprel_done
;
3579 dyn_i
->tprel_done
= TRUE
;
3580 got_offset
= dyn_i
->tprel_offset
;
3582 case R_IA64_DTPMOD64LSB
:
3583 if (dyn_i
->dtpmod_offset
!= ia64_info
->self_dtpmod_offset
)
3585 done
= dyn_i
->dtpmod_done
;
3586 dyn_i
->dtpmod_done
= TRUE
;
3590 done
= ia64_info
->self_dtpmod_done
;
3591 ia64_info
->self_dtpmod_done
= TRUE
;
3594 got_offset
= dyn_i
->dtpmod_offset
;
3596 case R_IA64_DTPREL32LSB
:
3597 case R_IA64_DTPREL64LSB
:
3598 done
= dyn_i
->dtprel_done
;
3599 dyn_i
->dtprel_done
= TRUE
;
3600 got_offset
= dyn_i
->dtprel_offset
;
3603 done
= dyn_i
->got_done
;
3604 dyn_i
->got_done
= TRUE
;
3605 got_offset
= dyn_i
->got_offset
;
3609 BFD_ASSERT ((got_offset
& 7) == 0);
3613 /* Store the target address in the linkage table entry. */
3614 bfd_put_64 (abfd
, value
, got_sec
->contents
+ got_offset
);
3616 /* Install a dynamic relocation if needed. */
3619 || ELF_ST_VISIBILITY (dyn_i
->h
->other
) == STV_DEFAULT
3620 || dyn_i
->h
->root
.type
!= bfd_link_hash_undefweak
)
3621 && dyn_r_type
!= R_IA64_DTPREL32LSB
3622 && dyn_r_type
!= R_IA64_DTPREL64LSB
)
3623 || elfNN_ia64_dynamic_symbol_p (dyn_i
->h
, info
, dyn_r_type
)
3625 && (dyn_r_type
== R_IA64_FPTR32LSB
3626 || dyn_r_type
== R_IA64_FPTR64LSB
)))
3627 && (!dyn_i
->want_ltoff_fptr
3630 || dyn_i
->h
->root
.type
!= bfd_link_hash_undefweak
))
3633 && dyn_r_type
!= R_IA64_TPREL64LSB
3634 && dyn_r_type
!= R_IA64_DTPMOD64LSB
3635 && dyn_r_type
!= R_IA64_DTPREL32LSB
3636 && dyn_r_type
!= R_IA64_DTPREL64LSB
)
3638 dyn_r_type
= R_IA64_RELNNLSB
;
3643 if (bfd_big_endian (abfd
))
3647 case R_IA64_REL32LSB
:
3648 dyn_r_type
= R_IA64_REL32MSB
;
3650 case R_IA64_DIR32LSB
:
3651 dyn_r_type
= R_IA64_DIR32MSB
;
3653 case R_IA64_FPTR32LSB
:
3654 dyn_r_type
= R_IA64_FPTR32MSB
;
3656 case R_IA64_DTPREL32LSB
:
3657 dyn_r_type
= R_IA64_DTPREL32MSB
;
3659 case R_IA64_REL64LSB
:
3660 dyn_r_type
= R_IA64_REL64MSB
;
3662 case R_IA64_DIR64LSB
:
3663 dyn_r_type
= R_IA64_DIR64MSB
;
3665 case R_IA64_FPTR64LSB
:
3666 dyn_r_type
= R_IA64_FPTR64MSB
;
3668 case R_IA64_TPREL64LSB
:
3669 dyn_r_type
= R_IA64_TPREL64MSB
;
3671 case R_IA64_DTPMOD64LSB
:
3672 dyn_r_type
= R_IA64_DTPMOD64MSB
;
3674 case R_IA64_DTPREL64LSB
:
3675 dyn_r_type
= R_IA64_DTPREL64MSB
;
3683 elfNN_ia64_install_dyn_reloc (abfd
, NULL
, got_sec
,
3684 ia64_info
->rel_got_sec
,
3685 got_offset
, dyn_r_type
,
3690 /* Return the address of the linkage table entry. */
3691 value
= (got_sec
->output_section
->vma
3692 + got_sec
->output_offset
3698 /* Fill in a function descriptor consisting of the function's code
3699 address and its global pointer. Return the descriptor's address. */
3702 set_fptr_entry (abfd
, info
, dyn_i
, value
)
3704 struct bfd_link_info
*info
;
3705 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
3708 struct elfNN_ia64_link_hash_table
*ia64_info
;
3711 ia64_info
= elfNN_ia64_hash_table (info
);
3712 fptr_sec
= ia64_info
->fptr_sec
;
3714 if (!dyn_i
->fptr_done
)
3716 dyn_i
->fptr_done
= 1;
3718 /* Fill in the function descriptor. */
3719 bfd_put_64 (abfd
, value
, fptr_sec
->contents
+ dyn_i
->fptr_offset
);
3720 bfd_put_64 (abfd
, _bfd_get_gp_value (abfd
),
3721 fptr_sec
->contents
+ dyn_i
->fptr_offset
+ 8);
3722 if (ia64_info
->rel_fptr_sec
)
3724 Elf_Internal_Rela outrel
;
3727 if (bfd_little_endian (abfd
))
3728 outrel
.r_info
= ELFNN_R_INFO (0, R_IA64_IPLTLSB
);
3730 outrel
.r_info
= ELFNN_R_INFO (0, R_IA64_IPLTMSB
);
3731 outrel
.r_addend
= value
;
3732 outrel
.r_offset
= (fptr_sec
->output_section
->vma
3733 + fptr_sec
->output_offset
3734 + dyn_i
->fptr_offset
);
3735 loc
= ia64_info
->rel_fptr_sec
->contents
;
3736 loc
+= ia64_info
->rel_fptr_sec
->reloc_count
++
3737 * sizeof (ElfNN_External_Rela
);
3738 bfd_elfNN_swap_reloca_out (abfd
, &outrel
, loc
);
3742 /* Return the descriptor's address. */
3743 value
= (fptr_sec
->output_section
->vma
3744 + fptr_sec
->output_offset
3745 + dyn_i
->fptr_offset
);
3750 /* Fill in a PLTOFF entry consisting of the function's code address
3751 and its global pointer. Return the descriptor's address. */
3754 set_pltoff_entry (abfd
, info
, dyn_i
, value
, is_plt
)
3756 struct bfd_link_info
*info
;
3757 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
3761 struct elfNN_ia64_link_hash_table
*ia64_info
;
3762 asection
*pltoff_sec
;
3764 ia64_info
= elfNN_ia64_hash_table (info
);
3765 pltoff_sec
= ia64_info
->pltoff_sec
;
3767 /* Don't do anything if this symbol uses a real PLT entry. In
3768 that case, we'll fill this in during finish_dynamic_symbol. */
3769 if ((! dyn_i
->want_plt
|| is_plt
)
3770 && !dyn_i
->pltoff_done
)
3772 bfd_vma gp
= _bfd_get_gp_value (abfd
);
3774 /* Fill in the function descriptor. */
3775 bfd_put_64 (abfd
, value
, pltoff_sec
->contents
+ dyn_i
->pltoff_offset
);
3776 bfd_put_64 (abfd
, gp
, pltoff_sec
->contents
+ dyn_i
->pltoff_offset
+ 8);
3778 /* Install dynamic relocations if needed. */
3782 || ELF_ST_VISIBILITY (dyn_i
->h
->other
) == STV_DEFAULT
3783 || dyn_i
->h
->root
.type
!= bfd_link_hash_undefweak
))
3785 unsigned int dyn_r_type
;
3787 if (bfd_big_endian (abfd
))
3788 dyn_r_type
= R_IA64_RELNNMSB
;
3790 dyn_r_type
= R_IA64_RELNNLSB
;
3792 elfNN_ia64_install_dyn_reloc (abfd
, NULL
, pltoff_sec
,
3793 ia64_info
->rel_pltoff_sec
,
3794 dyn_i
->pltoff_offset
,
3795 dyn_r_type
, 0, value
);
3796 elfNN_ia64_install_dyn_reloc (abfd
, NULL
, pltoff_sec
,
3797 ia64_info
->rel_pltoff_sec
,
3798 dyn_i
->pltoff_offset
+ ARCH_SIZE
/ 8,
3802 dyn_i
->pltoff_done
= 1;
3805 /* Return the descriptor's address. */
3806 value
= (pltoff_sec
->output_section
->vma
3807 + pltoff_sec
->output_offset
3808 + dyn_i
->pltoff_offset
);
3813 /* Return the base VMA address which should be subtracted from real addresses
3814 when resolving @tprel() relocation.
3815 Main program TLS (whose template starts at PT_TLS p_vaddr)
3816 is assigned offset round(2 * size of pointer, PT_TLS p_align). */
3819 elfNN_ia64_tprel_base (info
)
3820 struct bfd_link_info
*info
;
3822 asection
*tls_sec
= elf_hash_table (info
)->tls_sec
;
3824 BFD_ASSERT (tls_sec
!= NULL
);
3825 return tls_sec
->vma
- align_power ((bfd_vma
) ARCH_SIZE
/ 4,
3826 tls_sec
->alignment_power
);
3829 /* Return the base VMA address which should be subtracted from real addresses
3830 when resolving @dtprel() relocation.
3831 This is PT_TLS segment p_vaddr. */
3834 elfNN_ia64_dtprel_base (info
)
3835 struct bfd_link_info
*info
;
3837 BFD_ASSERT (elf_hash_table (info
)->tls_sec
!= NULL
);
3838 return elf_hash_table (info
)->tls_sec
->vma
;
3841 /* Called through qsort to sort the .IA_64.unwind section during a
3842 non-relocatable link. Set elfNN_ia64_unwind_entry_compare_bfd
3843 to the output bfd so we can do proper endianness frobbing. */
3845 static bfd
*elfNN_ia64_unwind_entry_compare_bfd
;
3848 elfNN_ia64_unwind_entry_compare (a
, b
)
3854 av
= bfd_get_64 (elfNN_ia64_unwind_entry_compare_bfd
, a
);
3855 bv
= bfd_get_64 (elfNN_ia64_unwind_entry_compare_bfd
, b
);
3857 return (av
< bv
? -1 : av
> bv
? 1 : 0);
3860 /* Make sure we've got ourselves a nice fat __gp value. */
3862 elfNN_ia64_choose_gp (abfd
, info
)
3864 struct bfd_link_info
*info
;
3866 bfd_vma min_vma
= (bfd_vma
) -1, max_vma
= 0;
3867 bfd_vma min_short_vma
= min_vma
, max_short_vma
= 0;
3868 struct elf_link_hash_entry
*gp
;
3871 struct elfNN_ia64_link_hash_table
*ia64_info
;
3873 ia64_info
= elfNN_ia64_hash_table (info
);
3875 /* Find the min and max vma of all sections marked short. Also collect
3876 min and max vma of any type, for use in selecting a nice gp. */
3877 for (os
= abfd
->sections
; os
; os
= os
->next
)
3881 if ((os
->flags
& SEC_ALLOC
) == 0)
3885 hi
= os
->vma
+ os
->size
;
3893 if (os
->flags
& SEC_SMALL_DATA
)
3895 if (min_short_vma
> lo
)
3897 if (max_short_vma
< hi
)
3902 /* See if the user wants to force a value. */
3903 gp
= elf_link_hash_lookup (elf_hash_table (info
), "__gp", FALSE
,
3907 && (gp
->root
.type
== bfd_link_hash_defined
3908 || gp
->root
.type
== bfd_link_hash_defweak
))
3910 asection
*gp_sec
= gp
->root
.u
.def
.section
;
3911 gp_val
= (gp
->root
.u
.def
.value
3912 + gp_sec
->output_section
->vma
3913 + gp_sec
->output_offset
);
3917 /* Pick a sensible value. */
3919 asection
*got_sec
= ia64_info
->got_sec
;
3921 /* Start with just the address of the .got. */
3923 gp_val
= got_sec
->output_section
->vma
;
3924 else if (max_short_vma
!= 0)
3925 gp_val
= min_short_vma
;
3929 /* If it is possible to address the entire image, but we
3930 don't with the choice above, adjust. */
3931 if (max_vma
- min_vma
< 0x400000
3932 && max_vma
- gp_val
<= 0x200000
3933 && gp_val
- min_vma
> 0x200000)
3934 gp_val
= min_vma
+ 0x200000;
3935 else if (max_short_vma
!= 0)
3937 /* If we don't cover all the short data, adjust. */
3938 if (max_short_vma
- gp_val
>= 0x200000)
3939 gp_val
= min_short_vma
+ 0x200000;
3941 /* If we're addressing stuff past the end, adjust back. */
3942 if (gp_val
> max_vma
)
3943 gp_val
= max_vma
- 0x200000 + 8;
3947 /* Validate whether all SHF_IA_64_SHORT sections are within
3948 range of the chosen GP. */
3950 if (max_short_vma
!= 0)
3952 if (max_short_vma
- min_short_vma
>= 0x400000)
3954 (*_bfd_error_handler
)
3955 (_("%s: short data segment overflowed (0x%lx >= 0x400000)"),
3956 bfd_get_filename (abfd
),
3957 (unsigned long) (max_short_vma
- min_short_vma
));
3960 else if ((gp_val
> min_short_vma
3961 && gp_val
- min_short_vma
> 0x200000)
3962 || (gp_val
< max_short_vma
3963 && max_short_vma
- gp_val
>= 0x200000))
3965 (*_bfd_error_handler
)
3966 (_("%s: __gp does not cover short data segment"),
3967 bfd_get_filename (abfd
));
3972 _bfd_set_gp_value (abfd
, gp_val
);
3978 elfNN_ia64_final_link (abfd
, info
)
3980 struct bfd_link_info
*info
;
3982 struct elfNN_ia64_link_hash_table
*ia64_info
;
3983 asection
*unwind_output_sec
;
3985 ia64_info
= elfNN_ia64_hash_table (info
);
3987 /* Make sure we've got ourselves a nice fat __gp value. */
3988 if (!info
->relocatable
)
3991 struct elf_link_hash_entry
*gp
;
3993 /* We assume after gp is set, section size will only decrease. We
3994 need to adjust gp for it. */
3995 _bfd_set_gp_value (abfd
, 0);
3996 if (! elfNN_ia64_choose_gp (abfd
, info
))
3998 gp_val
= _bfd_get_gp_value (abfd
);
4000 gp
= elf_link_hash_lookup (elf_hash_table (info
), "__gp", FALSE
,
4004 gp
->root
.type
= bfd_link_hash_defined
;
4005 gp
->root
.u
.def
.value
= gp_val
;
4006 gp
->root
.u
.def
.section
= bfd_abs_section_ptr
;
4010 /* If we're producing a final executable, we need to sort the contents
4011 of the .IA_64.unwind section. Force this section to be relocated
4012 into memory rather than written immediately to the output file. */
4013 unwind_output_sec
= NULL
;
4014 if (!info
->relocatable
)
4016 asection
*s
= bfd_get_section_by_name (abfd
, ELF_STRING_ia64_unwind
);
4019 unwind_output_sec
= s
->output_section
;
4020 unwind_output_sec
->contents
4021 = bfd_malloc (unwind_output_sec
->size
);
4022 if (unwind_output_sec
->contents
== NULL
)
4027 /* Invoke the regular ELF backend linker to do all the work. */
4028 if (!bfd_elf_final_link (abfd
, info
))
4031 if (unwind_output_sec
)
4033 elfNN_ia64_unwind_entry_compare_bfd
= abfd
;
4034 qsort (unwind_output_sec
->contents
,
4035 (size_t) (unwind_output_sec
->size
/ 24),
4037 elfNN_ia64_unwind_entry_compare
);
4039 if (! bfd_set_section_contents (abfd
, unwind_output_sec
,
4040 unwind_output_sec
->contents
, (bfd_vma
) 0,
4041 unwind_output_sec
->size
))
4049 elfNN_ia64_relocate_section (output_bfd
, info
, input_bfd
, input_section
,
4050 contents
, relocs
, local_syms
, local_sections
)
4052 struct bfd_link_info
*info
;
4054 asection
*input_section
;
4056 Elf_Internal_Rela
*relocs
;
4057 Elf_Internal_Sym
*local_syms
;
4058 asection
**local_sections
;
4060 struct elfNN_ia64_link_hash_table
*ia64_info
;
4061 Elf_Internal_Shdr
*symtab_hdr
;
4062 Elf_Internal_Rela
*rel
;
4063 Elf_Internal_Rela
*relend
;
4065 bfd_boolean ret_val
= TRUE
; /* for non-fatal errors */
4068 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
4069 ia64_info
= elfNN_ia64_hash_table (info
);
4071 /* Infect various flags from the input section to the output section. */
4072 if (info
->relocatable
)
4076 flags
= elf_section_data(input_section
)->this_hdr
.sh_flags
;
4077 flags
&= SHF_IA_64_NORECOV
;
4079 elf_section_data(input_section
->output_section
)
4080 ->this_hdr
.sh_flags
|= flags
;
4084 gp_val
= _bfd_get_gp_value (output_bfd
);
4085 srel
= get_reloc_section (input_bfd
, ia64_info
, input_section
, FALSE
);
4088 relend
= relocs
+ input_section
->reloc_count
;
4089 for (; rel
< relend
; ++rel
)
4091 struct elf_link_hash_entry
*h
;
4092 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
4093 bfd_reloc_status_type r
;
4094 reloc_howto_type
*howto
;
4095 unsigned long r_symndx
;
4096 Elf_Internal_Sym
*sym
;
4097 unsigned int r_type
;
4101 bfd_boolean dynamic_symbol_p
;
4102 bfd_boolean undef_weak_ref
;
4104 r_type
= ELFNN_R_TYPE (rel
->r_info
);
4105 if (r_type
> R_IA64_MAX_RELOC_CODE
)
4107 (*_bfd_error_handler
)
4108 (_("%B: unknown relocation type %d"),
4109 input_bfd
, (int) r_type
);
4110 bfd_set_error (bfd_error_bad_value
);
4115 howto
= lookup_howto (r_type
);
4116 r_symndx
= ELFNN_R_SYM (rel
->r_info
);
4120 undef_weak_ref
= FALSE
;
4122 if (r_symndx
< symtab_hdr
->sh_info
)
4124 /* Reloc against local symbol. */
4126 sym
= local_syms
+ r_symndx
;
4127 sym_sec
= local_sections
[r_symndx
];
4129 value
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &msec
, rel
);
4130 if ((sym_sec
->flags
& SEC_MERGE
)
4131 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
4132 && sym_sec
->sec_info_type
== ELF_INFO_TYPE_MERGE
)
4134 struct elfNN_ia64_local_hash_entry
*loc_h
;
4136 loc_h
= get_local_sym_hash (ia64_info
, input_bfd
, rel
, FALSE
);
4137 if (loc_h
&& ! loc_h
->sec_merge_done
)
4139 struct elfNN_ia64_dyn_sym_info
*dynent
;
4141 for (dynent
= loc_h
->info
; dynent
; dynent
= dynent
->next
)
4145 _bfd_merged_section_offset (output_bfd
, &msec
,
4146 elf_section_data (msec
)->
4150 dynent
->addend
-= sym
->st_value
;
4151 dynent
->addend
+= msec
->output_section
->vma
4152 + msec
->output_offset
4153 - sym_sec
->output_section
->vma
4154 - sym_sec
->output_offset
;
4156 loc_h
->sec_merge_done
= 1;
4162 bfd_boolean unresolved_reloc
;
4164 struct elf_link_hash_entry
**sym_hashes
= elf_sym_hashes (input_bfd
);
4166 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
4167 r_symndx
, symtab_hdr
, sym_hashes
,
4169 unresolved_reloc
, warned
);
4171 if (h
->root
.type
== bfd_link_hash_undefweak
)
4172 undef_weak_ref
= TRUE
;
4177 hit_addr
= contents
+ rel
->r_offset
;
4178 value
+= rel
->r_addend
;
4179 dynamic_symbol_p
= elfNN_ia64_dynamic_symbol_p (h
, info
, r_type
);
4190 case R_IA64_DIR32MSB
:
4191 case R_IA64_DIR32LSB
:
4192 case R_IA64_DIR64MSB
:
4193 case R_IA64_DIR64LSB
:
4194 /* Install a dynamic relocation for this reloc. */
4195 if ((dynamic_symbol_p
|| info
->shared
)
4197 && (input_section
->flags
& SEC_ALLOC
) != 0)
4199 unsigned int dyn_r_type
;
4203 BFD_ASSERT (srel
!= NULL
);
4210 /* ??? People shouldn't be doing non-pic code in
4211 shared libraries nor dynamic executables. */
4212 (*_bfd_error_handler
)
4213 (_("%B: non-pic code with imm relocation against dynamic symbol `%s'"),
4215 h
? h
->root
.root
.string
4216 : bfd_elf_sym_name (input_bfd
, symtab_hdr
, sym
,
4225 /* If we don't need dynamic symbol lookup, find a
4226 matching RELATIVE relocation. */
4227 dyn_r_type
= r_type
;
4228 if (dynamic_symbol_p
)
4230 dynindx
= h
->dynindx
;
4231 addend
= rel
->r_addend
;
4238 case R_IA64_DIR32MSB
:
4239 dyn_r_type
= R_IA64_REL32MSB
;
4241 case R_IA64_DIR32LSB
:
4242 dyn_r_type
= R_IA64_REL32LSB
;
4244 case R_IA64_DIR64MSB
:
4245 dyn_r_type
= R_IA64_REL64MSB
;
4247 case R_IA64_DIR64LSB
:
4248 dyn_r_type
= R_IA64_REL64LSB
;
4258 elfNN_ia64_install_dyn_reloc (output_bfd
, info
, input_section
,
4259 srel
, rel
->r_offset
, dyn_r_type
,
4264 case R_IA64_LTV32MSB
:
4265 case R_IA64_LTV32LSB
:
4266 case R_IA64_LTV64MSB
:
4267 case R_IA64_LTV64LSB
:
4268 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4271 case R_IA64_GPREL22
:
4272 case R_IA64_GPREL64I
:
4273 case R_IA64_GPREL32MSB
:
4274 case R_IA64_GPREL32LSB
:
4275 case R_IA64_GPREL64MSB
:
4276 case R_IA64_GPREL64LSB
:
4277 if (dynamic_symbol_p
)
4279 (*_bfd_error_handler
)
4280 (_("%B: @gprel relocation against dynamic symbol %s"),
4282 h
? h
->root
.root
.string
4283 : bfd_elf_sym_name (input_bfd
, symtab_hdr
, sym
,
4289 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4292 case R_IA64_LTOFF22
:
4293 case R_IA64_LTOFF22X
:
4294 case R_IA64_LTOFF64I
:
4295 dyn_i
= get_dyn_sym_info (ia64_info
, h
, input_bfd
, rel
, FALSE
);
4296 value
= set_got_entry (input_bfd
, info
, dyn_i
, (h
? h
->dynindx
: -1),
4297 rel
->r_addend
, value
, R_IA64_DIRNNLSB
);
4299 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4302 case R_IA64_PLTOFF22
:
4303 case R_IA64_PLTOFF64I
:
4304 case R_IA64_PLTOFF64MSB
:
4305 case R_IA64_PLTOFF64LSB
:
4306 dyn_i
= get_dyn_sym_info (ia64_info
, h
, input_bfd
, rel
, FALSE
);
4307 value
= set_pltoff_entry (output_bfd
, info
, dyn_i
, value
, FALSE
);
4309 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4312 case R_IA64_FPTR64I
:
4313 case R_IA64_FPTR32MSB
:
4314 case R_IA64_FPTR32LSB
:
4315 case R_IA64_FPTR64MSB
:
4316 case R_IA64_FPTR64LSB
:
4317 dyn_i
= get_dyn_sym_info (ia64_info
, h
, input_bfd
, rel
, FALSE
);
4318 if (dyn_i
->want_fptr
)
4320 if (!undef_weak_ref
)
4321 value
= set_fptr_entry (output_bfd
, info
, dyn_i
, value
);
4323 if (!dyn_i
->want_fptr
|| info
->pie
)
4326 unsigned int dyn_r_type
= r_type
;
4327 bfd_vma addend
= rel
->r_addend
;
4329 /* Otherwise, we expect the dynamic linker to create
4332 if (dyn_i
->want_fptr
)
4334 if (r_type
== R_IA64_FPTR64I
)
4336 /* We can't represent this without a dynamic symbol.
4337 Adjust the relocation to be against an output
4338 section symbol, which are always present in the
4339 dynamic symbol table. */
4340 /* ??? People shouldn't be doing non-pic code in
4341 shared libraries. Hork. */
4342 (*_bfd_error_handler
)
4343 (_("%B: linking non-pic code in a position independent executable"),
4350 dyn_r_type
= r_type
+ R_IA64_RELNNLSB
- R_IA64_FPTRNNLSB
;
4354 if (h
->dynindx
!= -1)
4355 dynindx
= h
->dynindx
;
4357 dynindx
= (_bfd_elf_link_lookup_local_dynindx
4358 (info
, h
->root
.u
.def
.section
->owner
,
4359 global_sym_index (h
)));
4364 dynindx
= (_bfd_elf_link_lookup_local_dynindx
4365 (info
, input_bfd
, (long) r_symndx
));
4369 elfNN_ia64_install_dyn_reloc (output_bfd
, info
, input_section
,
4370 srel
, rel
->r_offset
, dyn_r_type
,
4374 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4377 case R_IA64_LTOFF_FPTR22
:
4378 case R_IA64_LTOFF_FPTR64I
:
4379 case R_IA64_LTOFF_FPTR32MSB
:
4380 case R_IA64_LTOFF_FPTR32LSB
:
4381 case R_IA64_LTOFF_FPTR64MSB
:
4382 case R_IA64_LTOFF_FPTR64LSB
:
4386 dyn_i
= get_dyn_sym_info (ia64_info
, h
, input_bfd
, rel
, FALSE
);
4387 if (dyn_i
->want_fptr
)
4389 BFD_ASSERT (h
== NULL
|| h
->dynindx
== -1);
4390 if (!undef_weak_ref
)
4391 value
= set_fptr_entry (output_bfd
, info
, dyn_i
, value
);
4396 /* Otherwise, we expect the dynamic linker to create
4400 if (h
->dynindx
!= -1)
4401 dynindx
= h
->dynindx
;
4403 dynindx
= (_bfd_elf_link_lookup_local_dynindx
4404 (info
, h
->root
.u
.def
.section
->owner
,
4405 global_sym_index (h
)));
4408 dynindx
= (_bfd_elf_link_lookup_local_dynindx
4409 (info
, input_bfd
, (long) r_symndx
));
4413 value
= set_got_entry (output_bfd
, info
, dyn_i
, dynindx
,
4414 rel
->r_addend
, value
, R_IA64_FPTRNNLSB
);
4416 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4420 case R_IA64_PCREL32MSB
:
4421 case R_IA64_PCREL32LSB
:
4422 case R_IA64_PCREL64MSB
:
4423 case R_IA64_PCREL64LSB
:
4424 /* Install a dynamic relocation for this reloc. */
4425 if (dynamic_symbol_p
&& r_symndx
!= 0)
4427 BFD_ASSERT (srel
!= NULL
);
4429 elfNN_ia64_install_dyn_reloc (output_bfd
, info
, input_section
,
4430 srel
, rel
->r_offset
, r_type
,
4431 h
->dynindx
, rel
->r_addend
);
4435 case R_IA64_PCREL21B
:
4436 case R_IA64_PCREL60B
:
4437 /* We should have created a PLT entry for any dynamic symbol. */
4440 dyn_i
= get_dyn_sym_info (ia64_info
, h
, NULL
, NULL
, FALSE
);
4442 if (dyn_i
&& dyn_i
->want_plt2
)
4444 /* Should have caught this earlier. */
4445 BFD_ASSERT (rel
->r_addend
== 0);
4447 value
= (ia64_info
->plt_sec
->output_section
->vma
4448 + ia64_info
->plt_sec
->output_offset
4449 + dyn_i
->plt2_offset
);
4453 /* Since there's no PLT entry, Validate that this is
4455 BFD_ASSERT (undef_weak_ref
|| sym_sec
->output_section
!= NULL
);
4457 /* If the symbol is undef_weak, we shouldn't be trying
4458 to call it. There's every chance that we'd wind up
4459 with an out-of-range fixup here. Don't bother setting
4460 any value at all. */
4466 case R_IA64_PCREL21BI
:
4467 case R_IA64_PCREL21F
:
4468 case R_IA64_PCREL21M
:
4469 case R_IA64_PCREL22
:
4470 case R_IA64_PCREL64I
:
4471 /* The PCREL21BI reloc is specifically not intended for use with
4472 dynamic relocs. PCREL21F and PCREL21M are used for speculation
4473 fixup code, and thus probably ought not be dynamic. The
4474 PCREL22 and PCREL64I relocs aren't emitted as dynamic relocs. */
4475 if (dynamic_symbol_p
)
4479 if (r_type
== R_IA64_PCREL21BI
)
4480 msg
= _("%B: @internal branch to dynamic symbol %s");
4481 else if (r_type
== R_IA64_PCREL21F
|| r_type
== R_IA64_PCREL21M
)
4482 msg
= _("%B: speculation fixup to dynamic symbol %s");
4484 msg
= _("%B: @pcrel relocation against dynamic symbol %s");
4485 (*_bfd_error_handler
) (msg
, input_bfd
,
4486 h
? h
->root
.root
.string
4487 : bfd_elf_sym_name (input_bfd
,
4497 /* Make pc-relative. */
4498 value
-= (input_section
->output_section
->vma
4499 + input_section
->output_offset
4500 + rel
->r_offset
) & ~ (bfd_vma
) 0x3;
4501 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4504 case R_IA64_SEGREL32MSB
:
4505 case R_IA64_SEGREL32LSB
:
4506 case R_IA64_SEGREL64MSB
:
4507 case R_IA64_SEGREL64LSB
:
4510 /* If the input section was discarded from the output, then
4516 struct elf_segment_map
*m
;
4517 Elf_Internal_Phdr
*p
;
4519 /* Find the segment that contains the output_section. */
4520 for (m
= elf_tdata (output_bfd
)->segment_map
,
4521 p
= elf_tdata (output_bfd
)->phdr
;
4526 for (i
= m
->count
- 1; i
>= 0; i
--)
4527 if (m
->sections
[i
] == input_section
->output_section
)
4535 r
= bfd_reloc_notsupported
;
4539 /* The VMA of the segment is the vaddr of the associated
4541 if (value
> p
->p_vaddr
)
4542 value
-= p
->p_vaddr
;
4545 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4550 case R_IA64_SECREL32MSB
:
4551 case R_IA64_SECREL32LSB
:
4552 case R_IA64_SECREL64MSB
:
4553 case R_IA64_SECREL64LSB
:
4554 /* Make output-section relative to section where the symbol
4555 is defined. PR 475 */
4557 value
-= sym_sec
->output_section
->vma
;
4558 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4561 case R_IA64_IPLTMSB
:
4562 case R_IA64_IPLTLSB
:
4563 /* Install a dynamic relocation for this reloc. */
4564 if ((dynamic_symbol_p
|| info
->shared
)
4565 && (input_section
->flags
& SEC_ALLOC
) != 0)
4567 BFD_ASSERT (srel
!= NULL
);
4569 /* If we don't need dynamic symbol lookup, install two
4570 RELATIVE relocations. */
4571 if (!dynamic_symbol_p
)
4573 unsigned int dyn_r_type
;
4575 if (r_type
== R_IA64_IPLTMSB
)
4576 dyn_r_type
= R_IA64_REL64MSB
;
4578 dyn_r_type
= R_IA64_REL64LSB
;
4580 elfNN_ia64_install_dyn_reloc (output_bfd
, info
,
4582 srel
, rel
->r_offset
,
4583 dyn_r_type
, 0, value
);
4584 elfNN_ia64_install_dyn_reloc (output_bfd
, info
,
4586 srel
, rel
->r_offset
+ 8,
4587 dyn_r_type
, 0, gp_val
);
4590 elfNN_ia64_install_dyn_reloc (output_bfd
, info
, input_section
,
4591 srel
, rel
->r_offset
, r_type
,
4592 h
->dynindx
, rel
->r_addend
);
4595 if (r_type
== R_IA64_IPLTMSB
)
4596 r_type
= R_IA64_DIR64MSB
;
4598 r_type
= R_IA64_DIR64LSB
;
4599 elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4600 r
= elfNN_ia64_install_value (hit_addr
+ 8, gp_val
, r_type
);
4603 case R_IA64_TPREL14
:
4604 case R_IA64_TPREL22
:
4605 case R_IA64_TPREL64I
:
4606 value
-= elfNN_ia64_tprel_base (info
);
4607 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4610 case R_IA64_DTPREL14
:
4611 case R_IA64_DTPREL22
:
4612 case R_IA64_DTPREL64I
:
4613 case R_IA64_DTPREL32LSB
:
4614 case R_IA64_DTPREL32MSB
:
4615 case R_IA64_DTPREL64LSB
:
4616 case R_IA64_DTPREL64MSB
:
4617 value
-= elfNN_ia64_dtprel_base (info
);
4618 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4621 case R_IA64_LTOFF_TPREL22
:
4622 case R_IA64_LTOFF_DTPMOD22
:
4623 case R_IA64_LTOFF_DTPREL22
:
4626 long dynindx
= h
? h
->dynindx
: -1;
4627 bfd_vma r_addend
= rel
->r_addend
;
4632 case R_IA64_LTOFF_TPREL22
:
4633 if (!dynamic_symbol_p
)
4636 value
-= elfNN_ia64_tprel_base (info
);
4639 r_addend
+= value
- elfNN_ia64_dtprel_base (info
);
4643 got_r_type
= R_IA64_TPREL64LSB
;
4645 case R_IA64_LTOFF_DTPMOD22
:
4646 if (!dynamic_symbol_p
&& !info
->shared
)
4648 got_r_type
= R_IA64_DTPMOD64LSB
;
4650 case R_IA64_LTOFF_DTPREL22
:
4651 if (!dynamic_symbol_p
)
4652 value
-= elfNN_ia64_dtprel_base (info
);
4653 got_r_type
= R_IA64_DTPRELNNLSB
;
4656 dyn_i
= get_dyn_sym_info (ia64_info
, h
, input_bfd
, rel
, FALSE
);
4657 value
= set_got_entry (input_bfd
, info
, dyn_i
, dynindx
, r_addend
,
4660 r
= elfNN_ia64_install_value (hit_addr
, value
, r_type
);
4665 r
= bfd_reloc_notsupported
;
4674 case bfd_reloc_undefined
:
4675 /* This can happen for global table relative relocs if
4676 __gp is undefined. This is a panic situation so we
4677 don't try to continue. */
4678 (*info
->callbacks
->undefined_symbol
)
4679 (info
, "__gp", input_bfd
, input_section
, rel
->r_offset
, 1);
4682 case bfd_reloc_notsupported
:
4687 name
= h
->root
.root
.string
;
4689 name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
, sym
,
4691 if (!(*info
->callbacks
->warning
) (info
, _("unsupported reloc"),
4693 input_section
, rel
->r_offset
))
4699 case bfd_reloc_dangerous
:
4700 case bfd_reloc_outofrange
:
4701 case bfd_reloc_overflow
:
4707 name
= h
->root
.root
.string
;
4709 name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
, sym
,
4714 case R_IA64_PCREL21B
:
4715 case R_IA64_PCREL21BI
:
4716 case R_IA64_PCREL21M
:
4717 case R_IA64_PCREL21F
:
4718 if (is_elf_hash_table (info
->hash
))
4720 /* Relaxtion is always performed for ELF output.
4721 Overflow failures for those relocations mean
4722 that the section is too big to relax. */
4723 (*_bfd_error_handler
)
4724 (_("%B: Can't relax br (%s) to `%s' at 0x%lx in section `%A' with size 0x%lx (> 0x1000000)."),
4725 input_bfd
, input_section
, howto
->name
, name
,
4726 rel
->r_offset
, input_section
->size
);
4730 if (!(*info
->callbacks
->reloc_overflow
) (info
,
4752 elfNN_ia64_finish_dynamic_symbol (output_bfd
, info
, h
, sym
)
4754 struct bfd_link_info
*info
;
4755 struct elf_link_hash_entry
*h
;
4756 Elf_Internal_Sym
*sym
;
4758 struct elfNN_ia64_link_hash_table
*ia64_info
;
4759 struct elfNN_ia64_dyn_sym_info
*dyn_i
;
4761 ia64_info
= elfNN_ia64_hash_table (info
);
4762 dyn_i
= get_dyn_sym_info (ia64_info
, h
, NULL
, NULL
, FALSE
);
4764 /* Fill in the PLT data, if required. */
4765 if (dyn_i
&& dyn_i
->want_plt
)
4767 Elf_Internal_Rela outrel
;
4770 bfd_vma plt_addr
, pltoff_addr
, gp_val
, index
;
4772 gp_val
= _bfd_get_gp_value (output_bfd
);
4774 /* Initialize the minimal PLT entry. */
4776 index
= (dyn_i
->plt_offset
- PLT_HEADER_SIZE
) / PLT_MIN_ENTRY_SIZE
;
4777 plt_sec
= ia64_info
->plt_sec
;
4778 loc
= plt_sec
->contents
+ dyn_i
->plt_offset
;
4780 memcpy (loc
, plt_min_entry
, PLT_MIN_ENTRY_SIZE
);
4781 elfNN_ia64_install_value (loc
, index
, R_IA64_IMM22
);
4782 elfNN_ia64_install_value (loc
+2, -dyn_i
->plt_offset
, R_IA64_PCREL21B
);
4784 plt_addr
= (plt_sec
->output_section
->vma
4785 + plt_sec
->output_offset
4786 + dyn_i
->plt_offset
);
4787 pltoff_addr
= set_pltoff_entry (output_bfd
, info
, dyn_i
, plt_addr
, TRUE
);
4789 /* Initialize the FULL PLT entry, if needed. */
4790 if (dyn_i
->want_plt2
)
4792 loc
= plt_sec
->contents
+ dyn_i
->plt2_offset
;
4794 memcpy (loc
, plt_full_entry
, PLT_FULL_ENTRY_SIZE
);
4795 elfNN_ia64_install_value (loc
, pltoff_addr
- gp_val
, R_IA64_IMM22
);
4797 /* Mark the symbol as undefined, rather than as defined in the
4798 plt section. Leave the value alone. */
4799 /* ??? We didn't redefine it in adjust_dynamic_symbol in the
4800 first place. But perhaps elflink.c did some for us. */
4801 if (!h
->def_regular
)
4802 sym
->st_shndx
= SHN_UNDEF
;
4805 /* Create the dynamic relocation. */
4806 outrel
.r_offset
= pltoff_addr
;
4807 if (bfd_little_endian (output_bfd
))
4808 outrel
.r_info
= ELFNN_R_INFO (h
->dynindx
, R_IA64_IPLTLSB
);
4810 outrel
.r_info
= ELFNN_R_INFO (h
->dynindx
, R_IA64_IPLTMSB
);
4811 outrel
.r_addend
= 0;
4813 /* This is fun. In the .IA_64.pltoff section, we've got entries
4814 that correspond both to real PLT entries, and those that
4815 happened to resolve to local symbols but need to be created
4816 to satisfy @pltoff relocations. The .rela.IA_64.pltoff
4817 relocations for the real PLT should come at the end of the
4818 section, so that they can be indexed by plt entry at runtime.
4820 We emitted all of the relocations for the non-PLT @pltoff
4821 entries during relocate_section. So we can consider the
4822 existing sec->reloc_count to be the base of the array of
4825 loc
= ia64_info
->rel_pltoff_sec
->contents
;
4826 loc
+= ((ia64_info
->rel_pltoff_sec
->reloc_count
+ index
)
4827 * sizeof (ElfNN_External_Rela
));
4828 bfd_elfNN_swap_reloca_out (output_bfd
, &outrel
, loc
);
4831 /* Mark some specially defined symbols as absolute. */
4832 if (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
4833 || strcmp (h
->root
.root
.string
, "_GLOBAL_OFFSET_TABLE_") == 0
4834 || strcmp (h
->root
.root
.string
, "_PROCEDURE_LINKAGE_TABLE_") == 0)
4835 sym
->st_shndx
= SHN_ABS
;
4841 elfNN_ia64_finish_dynamic_sections (abfd
, info
)
4843 struct bfd_link_info
*info
;
4845 struct elfNN_ia64_link_hash_table
*ia64_info
;
4848 ia64_info
= elfNN_ia64_hash_table (info
);
4849 dynobj
= ia64_info
->root
.dynobj
;
4851 if (elf_hash_table (info
)->dynamic_sections_created
)
4853 ElfNN_External_Dyn
*dyncon
, *dynconend
;
4854 asection
*sdyn
, *sgotplt
;
4857 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
4858 sgotplt
= bfd_get_section_by_name (dynobj
, ".got.plt");
4859 BFD_ASSERT (sdyn
!= NULL
);
4860 dyncon
= (ElfNN_External_Dyn
*) sdyn
->contents
;
4861 dynconend
= (ElfNN_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
4863 gp_val
= _bfd_get_gp_value (abfd
);
4865 for (; dyncon
< dynconend
; dyncon
++)
4867 Elf_Internal_Dyn dyn
;
4869 bfd_elfNN_swap_dyn_in (dynobj
, dyncon
, &dyn
);
4874 dyn
.d_un
.d_ptr
= gp_val
;
4878 dyn
.d_un
.d_val
= (ia64_info
->minplt_entries
4879 * sizeof (ElfNN_External_Rela
));
4883 /* See the comment above in finish_dynamic_symbol. */
4884 dyn
.d_un
.d_ptr
= (ia64_info
->rel_pltoff_sec
->output_section
->vma
4885 + ia64_info
->rel_pltoff_sec
->output_offset
4886 + (ia64_info
->rel_pltoff_sec
->reloc_count
4887 * sizeof (ElfNN_External_Rela
)));
4890 case DT_IA_64_PLT_RESERVE
:
4891 dyn
.d_un
.d_ptr
= (sgotplt
->output_section
->vma
4892 + sgotplt
->output_offset
);
4896 /* Do not have RELASZ include JMPREL. This makes things
4897 easier on ld.so. This is not what the rest of BFD set up. */
4898 dyn
.d_un
.d_val
-= (ia64_info
->minplt_entries
4899 * sizeof (ElfNN_External_Rela
));
4903 bfd_elfNN_swap_dyn_out (abfd
, &dyn
, dyncon
);
4906 /* Initialize the PLT0 entry. */
4907 if (ia64_info
->plt_sec
)
4909 bfd_byte
*loc
= ia64_info
->plt_sec
->contents
;
4912 memcpy (loc
, plt_header
, PLT_HEADER_SIZE
);
4914 pltres
= (sgotplt
->output_section
->vma
4915 + sgotplt
->output_offset
4918 elfNN_ia64_install_value (loc
+1, pltres
, R_IA64_GPREL22
);
4925 /* ELF file flag handling: */
4927 /* Function to keep IA-64 specific file flags. */
4929 elfNN_ia64_set_private_flags (abfd
, flags
)
4933 BFD_ASSERT (!elf_flags_init (abfd
)
4934 || elf_elfheader (abfd
)->e_flags
== flags
);
4936 elf_elfheader (abfd
)->e_flags
= flags
;
4937 elf_flags_init (abfd
) = TRUE
;
4941 /* Merge backend specific data from an object file to the output
4942 object file when linking. */
4944 elfNN_ia64_merge_private_bfd_data (ibfd
, obfd
)
4949 bfd_boolean ok
= TRUE
;
4951 /* Don't even pretend to support mixed-format linking. */
4952 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
4953 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
4956 in_flags
= elf_elfheader (ibfd
)->e_flags
;
4957 out_flags
= elf_elfheader (obfd
)->e_flags
;
4959 if (! elf_flags_init (obfd
))
4961 elf_flags_init (obfd
) = TRUE
;
4962 elf_elfheader (obfd
)->e_flags
= in_flags
;
4964 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
4965 && bfd_get_arch_info (obfd
)->the_default
)
4967 return bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
4968 bfd_get_mach (ibfd
));
4974 /* Check flag compatibility. */
4975 if (in_flags
== out_flags
)
4978 /* Output has EF_IA_64_REDUCEDFP set only if all inputs have it set. */
4979 if (!(in_flags
& EF_IA_64_REDUCEDFP
) && (out_flags
& EF_IA_64_REDUCEDFP
))
4980 elf_elfheader (obfd
)->e_flags
&= ~EF_IA_64_REDUCEDFP
;
4982 if ((in_flags
& EF_IA_64_TRAPNIL
) != (out_flags
& EF_IA_64_TRAPNIL
))
4984 (*_bfd_error_handler
)
4985 (_("%B: linking trap-on-NULL-dereference with non-trapping files"),
4988 bfd_set_error (bfd_error_bad_value
);
4991 if ((in_flags
& EF_IA_64_BE
) != (out_flags
& EF_IA_64_BE
))
4993 (*_bfd_error_handler
)
4994 (_("%B: linking big-endian files with little-endian files"),
4997 bfd_set_error (bfd_error_bad_value
);
5000 if ((in_flags
& EF_IA_64_ABI64
) != (out_flags
& EF_IA_64_ABI64
))
5002 (*_bfd_error_handler
)
5003 (_("%B: linking 64-bit files with 32-bit files"),
5006 bfd_set_error (bfd_error_bad_value
);
5009 if ((in_flags
& EF_IA_64_CONS_GP
) != (out_flags
& EF_IA_64_CONS_GP
))
5011 (*_bfd_error_handler
)
5012 (_("%B: linking constant-gp files with non-constant-gp files"),
5015 bfd_set_error (bfd_error_bad_value
);
5018 if ((in_flags
& EF_IA_64_NOFUNCDESC_CONS_GP
)
5019 != (out_flags
& EF_IA_64_NOFUNCDESC_CONS_GP
))
5021 (*_bfd_error_handler
)
5022 (_("%B: linking auto-pic files with non-auto-pic files"),
5025 bfd_set_error (bfd_error_bad_value
);
5033 elfNN_ia64_print_private_bfd_data (abfd
, ptr
)
5037 FILE *file
= (FILE *) ptr
;
5038 flagword flags
= elf_elfheader (abfd
)->e_flags
;
5040 BFD_ASSERT (abfd
!= NULL
&& ptr
!= NULL
);
5042 fprintf (file
, "private flags = %s%s%s%s%s%s%s%s\n",
5043 (flags
& EF_IA_64_TRAPNIL
) ? "TRAPNIL, " : "",
5044 (flags
& EF_IA_64_EXT
) ? "EXT, " : "",
5045 (flags
& EF_IA_64_BE
) ? "BE, " : "LE, ",
5046 (flags
& EF_IA_64_REDUCEDFP
) ? "REDUCEDFP, " : "",
5047 (flags
& EF_IA_64_CONS_GP
) ? "CONS_GP, " : "",
5048 (flags
& EF_IA_64_NOFUNCDESC_CONS_GP
) ? "NOFUNCDESC_CONS_GP, " : "",
5049 (flags
& EF_IA_64_ABSOLUTE
) ? "ABSOLUTE, " : "",
5050 (flags
& EF_IA_64_ABI64
) ? "ABI64" : "ABI32");
5052 _bfd_elf_print_private_bfd_data (abfd
, ptr
);
5056 static enum elf_reloc_type_class
5057 elfNN_ia64_reloc_type_class (rela
)
5058 const Elf_Internal_Rela
*rela
;
5060 switch ((int) ELFNN_R_TYPE (rela
->r_info
))
5062 case R_IA64_REL32MSB
:
5063 case R_IA64_REL32LSB
:
5064 case R_IA64_REL64MSB
:
5065 case R_IA64_REL64LSB
:
5066 return reloc_class_relative
;
5067 case R_IA64_IPLTMSB
:
5068 case R_IA64_IPLTLSB
:
5069 return reloc_class_plt
;
5071 return reloc_class_copy
;
5073 return reloc_class_normal
;
5077 static const struct bfd_elf_special_section elfNN_ia64_special_sections
[] =
5079 { ".sbss", 5, -1, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_IA_64_SHORT
},
5080 { ".sdata", 6, -1, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_IA_64_SHORT
},
5081 { NULL
, 0, 0, 0, 0 }
5085 elfNN_ia64_object_p (bfd
*abfd
)
5088 asection
*group
, *unwi
, *unw
;
5091 char *unwi_name
, *unw_name
;
5094 if (abfd
->flags
& DYNAMIC
)
5097 /* Flags for fake group section. */
5098 flags
= (SEC_LINKER_CREATED
| SEC_GROUP
| SEC_LINK_ONCE
5101 /* We add a fake section group for each .gnu.linkonce.t.* section,
5102 which isn't in a section group, and its unwind sections. */
5103 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
5105 if (elf_sec_group (sec
) == NULL
5106 && ((sec
->flags
& (SEC_LINK_ONCE
| SEC_CODE
| SEC_GROUP
))
5107 == (SEC_LINK_ONCE
| SEC_CODE
))
5108 && strncmp (sec
->name
, ".gnu.linkonce.t.", 16) == 0)
5110 name
= sec
->name
+ 16;
5112 amt
= strlen (name
) + sizeof (".gnu.linkonce.ia64unwi.");
5113 unwi_name
= bfd_alloc (abfd
, amt
);
5117 strcpy (stpcpy (unwi_name
, ".gnu.linkonce.ia64unwi."), name
);
5118 unwi
= bfd_get_section_by_name (abfd
, unwi_name
);
5120 amt
= strlen (name
) + sizeof (".gnu.linkonce.ia64unw.");
5121 unw_name
= bfd_alloc (abfd
, amt
);
5125 strcpy (stpcpy (unw_name
, ".gnu.linkonce.ia64unw."), name
);
5126 unw
= bfd_get_section_by_name (abfd
, unw_name
);
5128 /* We need to create a fake group section for it and its
5130 group
= bfd_make_section_anyway_with_flags (abfd
, name
,
5135 /* Move the fake group section to the beginning. */
5136 bfd_section_list_remove (abfd
, group
);
5137 bfd_section_list_prepend (abfd
, group
);
5139 elf_next_in_group (group
) = sec
;
5141 elf_group_name (sec
) = name
;
5142 elf_next_in_group (sec
) = sec
;
5143 elf_sec_group (sec
) = group
;
5147 elf_group_name (unwi
) = name
;
5148 elf_next_in_group (unwi
) = sec
;
5149 elf_next_in_group (sec
) = unwi
;
5150 elf_sec_group (unwi
) = group
;
5155 elf_group_name (unw
) = name
;
5158 elf_next_in_group (unw
) = elf_next_in_group (unwi
);
5159 elf_next_in_group (unwi
) = unw
;
5163 elf_next_in_group (unw
) = sec
;
5164 elf_next_in_group (sec
) = unw
;
5166 elf_sec_group (unw
) = group
;
5169 /* Fake SHT_GROUP section header. */
5170 elf_section_data (group
)->this_hdr
.bfd_section
= group
;
5171 elf_section_data (group
)->this_hdr
.sh_type
= SHT_GROUP
;
5178 elfNN_ia64_hpux_vec (const bfd_target
*vec
)
5180 extern const bfd_target bfd_elfNN_ia64_hpux_big_vec
;
5181 return (vec
== & bfd_elfNN_ia64_hpux_big_vec
);
5185 elfNN_hpux_post_process_headers (abfd
, info
)
5187 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
5189 Elf_Internal_Ehdr
*i_ehdrp
= elf_elfheader (abfd
);
5191 i_ehdrp
->e_ident
[EI_OSABI
] = ELFOSABI_HPUX
;
5192 i_ehdrp
->e_ident
[EI_ABIVERSION
] = 1;
5196 elfNN_hpux_backend_section_from_bfd_section (abfd
, sec
, retval
)
5197 bfd
*abfd ATTRIBUTE_UNUSED
;
5201 if (bfd_is_com_section (sec
))
5203 *retval
= SHN_IA_64_ANSI_COMMON
;
5210 elfNN_hpux_backend_symbol_processing (bfd
*abfd ATTRIBUTE_UNUSED
,
5213 elf_symbol_type
*elfsym
= (elf_symbol_type
*) asym
;
5215 switch (elfsym
->internal_elf_sym
.st_shndx
)
5217 case SHN_IA_64_ANSI_COMMON
:
5218 asym
->section
= bfd_com_section_ptr
;
5219 asym
->value
= elfsym
->internal_elf_sym
.st_size
;
5220 asym
->flags
&= ~BSF_GLOBAL
;
5226 #define TARGET_LITTLE_SYM bfd_elfNN_ia64_little_vec
5227 #define TARGET_LITTLE_NAME "elfNN-ia64-little"
5228 #define TARGET_BIG_SYM bfd_elfNN_ia64_big_vec
5229 #define TARGET_BIG_NAME "elfNN-ia64-big"
5230 #define ELF_ARCH bfd_arch_ia64
5231 #define ELF_MACHINE_CODE EM_IA_64
5232 #define ELF_MACHINE_ALT1 1999 /* EAS2.3 */
5233 #define ELF_MACHINE_ALT2 1998 /* EAS2.2 */
5234 #define ELF_MAXPAGESIZE 0x10000 /* 64KB */
5236 #define elf_backend_section_from_shdr \
5237 elfNN_ia64_section_from_shdr
5238 #define elf_backend_section_flags \
5239 elfNN_ia64_section_flags
5240 #define elf_backend_fake_sections \
5241 elfNN_ia64_fake_sections
5242 #define elf_backend_final_write_processing \
5243 elfNN_ia64_final_write_processing
5244 #define elf_backend_add_symbol_hook \
5245 elfNN_ia64_add_symbol_hook
5246 #define elf_backend_additional_program_headers \
5247 elfNN_ia64_additional_program_headers
5248 #define elf_backend_modify_segment_map \
5249 elfNN_ia64_modify_segment_map
5250 #define elf_info_to_howto \
5251 elfNN_ia64_info_to_howto
5253 #define bfd_elfNN_bfd_reloc_type_lookup \
5254 elfNN_ia64_reloc_type_lookup
5255 #define bfd_elfNN_bfd_is_local_label_name \
5256 elfNN_ia64_is_local_label_name
5257 #define bfd_elfNN_bfd_relax_section \
5258 elfNN_ia64_relax_section
5260 #define elf_backend_object_p \
5263 /* Stuff for the BFD linker: */
5264 #define bfd_elfNN_bfd_link_hash_table_create \
5265 elfNN_ia64_hash_table_create
5266 #define bfd_elfNN_bfd_link_hash_table_free \
5267 elfNN_ia64_hash_table_free
5268 #define elf_backend_create_dynamic_sections \
5269 elfNN_ia64_create_dynamic_sections
5270 #define elf_backend_check_relocs \
5271 elfNN_ia64_check_relocs
5272 #define elf_backend_adjust_dynamic_symbol \
5273 elfNN_ia64_adjust_dynamic_symbol
5274 #define elf_backend_size_dynamic_sections \
5275 elfNN_ia64_size_dynamic_sections
5276 #define elf_backend_relocate_section \
5277 elfNN_ia64_relocate_section
5278 #define elf_backend_finish_dynamic_symbol \
5279 elfNN_ia64_finish_dynamic_symbol
5280 #define elf_backend_finish_dynamic_sections \
5281 elfNN_ia64_finish_dynamic_sections
5282 #define bfd_elfNN_bfd_final_link \
5283 elfNN_ia64_final_link
5285 #define bfd_elfNN_bfd_merge_private_bfd_data \
5286 elfNN_ia64_merge_private_bfd_data
5287 #define bfd_elfNN_bfd_set_private_flags \
5288 elfNN_ia64_set_private_flags
5289 #define bfd_elfNN_bfd_print_private_bfd_data \
5290 elfNN_ia64_print_private_bfd_data
5292 #define elf_backend_plt_readonly 1
5293 #define elf_backend_want_plt_sym 0
5294 #define elf_backend_plt_alignment 5
5295 #define elf_backend_got_header_size 0
5296 #define elf_backend_want_got_plt 1
5297 #define elf_backend_may_use_rel_p 1
5298 #define elf_backend_may_use_rela_p 1
5299 #define elf_backend_default_use_rela_p 1
5300 #define elf_backend_want_dynbss 0
5301 #define elf_backend_copy_indirect_symbol elfNN_ia64_hash_copy_indirect
5302 #define elf_backend_hide_symbol elfNN_ia64_hash_hide_symbol
5303 #define elf_backend_reloc_type_class elfNN_ia64_reloc_type_class
5304 #define elf_backend_rela_normal 1
5305 #define elf_backend_special_sections elfNN_ia64_special_sections
5307 /* FIXME: PR 290: The Intel C compiler generates SHT_IA_64_UNWIND with
5308 SHF_LINK_ORDER. But it doesn't set the sh_link or sh_info fields.
5309 We don't want to flood users with so many error messages. We turn
5310 off the warning for now. It will be turned on later when the Intel
5311 compiler is fixed. */
5312 #define elf_backend_link_order_error_handler NULL
5314 #include "elfNN-target.h"
5316 /* HPUX-specific vectors. */
5318 #undef TARGET_LITTLE_SYM
5319 #undef TARGET_LITTLE_NAME
5320 #undef TARGET_BIG_SYM
5321 #define TARGET_BIG_SYM bfd_elfNN_ia64_hpux_big_vec
5322 #undef TARGET_BIG_NAME
5323 #define TARGET_BIG_NAME "elfNN-ia64-hpux-big"
5325 /* These are HP-UX specific functions. */
5327 #undef elf_backend_post_process_headers
5328 #define elf_backend_post_process_headers elfNN_hpux_post_process_headers
5330 #undef elf_backend_section_from_bfd_section
5331 #define elf_backend_section_from_bfd_section elfNN_hpux_backend_section_from_bfd_section
5333 #undef elf_backend_symbol_processing
5334 #define elf_backend_symbol_processing elfNN_hpux_backend_symbol_processing
5336 #undef elf_backend_want_p_paddr_set_to_zero
5337 #define elf_backend_want_p_paddr_set_to_zero 1
5339 #undef ELF_MAXPAGESIZE
5340 #define ELF_MAXPAGESIZE 0x1000 /* 1K */
5343 #define elfNN_bed elfNN_ia64_hpux_bed
5345 #include "elfNN-target.h"
5347 #undef elf_backend_want_p_paddr_set_to_zero