2011-03-25 Tristan Gingold <gingold@adacore.com>
[binutils.git] / bfd / ChangeLog
blobd9467c8d780d3df846e5b7b2ce751e1064c70dd0
1 2011-03-25  Tristan Gingold  <gingold@adacore.com>
3         * vms-alpha.c (_bfd_vms_find_nearest_dst_line): Allow the use
4         of find_nearest_line on object files.
6 2011-03-25  Tristan Gingold  <gingold@adacore.com>
8         * vms-alpha.c (evax_section_flags): Make $CODE$ section read-only.
9         Minor reordering.
10         (alpha_vms_create_eisd_for_section): Make code sections read-only.
12 2011-03-24  Alan Modra  <amodra@gmail.com>
14         * elf32-ppc.c (ppc_elf_tls_optimize): Catch more cases where
15         old-style __tls_get_addr calls without marker relocs don't match
16         their arg setup insn one for one.  If such mismatches are found
17         report the reloc and don't do any tls optimization.
18         * elf64-ppc.c (ppc64_elf_tls_optimize): Likewise.
20 2011-03-22  Eric B. Weddington  <eric.weddington@atmel.com>
22         * bfd-in2.h: Regenerate.
24 2011-03-22  Eric B. Weddington  <eric.weddington@atmel.com>
26         * archures.c: Add AVR XMEGA architecture information.
27         * cpu-avr.c (arch_info_struct): Likewise.
28         * elf32-avr.c (bfd_elf_avr_final_write_processing): Likewise.
29         (elf32_avr_object_p): Likewise.
31 2011-03-14  Richard Sandiford  <richard.sandiford@linaro.org>
33         * reloc.c (BFD_RELOC_ARM_IRELATIVE): New relocation.
34         * bfd-in2.h: Regenerate.
35         * elf32-arm.c (elf32_arm_howto_table_2): Rename existing definition
36         to elf32_arm_howto_table_3 and replace with a single R_ARM_IRELATIVE
37         entry.
38         (elf32_arm_howto_from_type): Update accordingly.
39         (elf32_arm_reloc_map): Map BFD_RELOC_ARM_IRELATIVE to R_ARM_IRELATIVE.
40         (elf32_arm_reloc_name_lookup): Handle elf32_arm_howto_table_3.
41         (arm_plt_info): New structure, split out from elf32_arm_link_hash_entry
42         with an extra noncall_refcount field.
43         (arm_local_iplt_info): New structure.
44         (elf_arm_obj_tdata): Add local_iplt.
45         (elf32_arm_local_iplt): New accessor macro.
46         (elf32_arm_link_hash_entry): Replace plt_thumb_refcount,
47         plt_maybe_thumb_refcount and plt_got_offset with an arm_plt_info.
48         Change tls_type to a bitfield and add is_iplt.
49         (elf32_arm_link_hash_newfunc): Update accordingly.
50         (elf32_arm_allocate_local_sym_info): New function.
51         (elf32_arm_create_local_iplt): Likewise.
52         (elf32_arm_get_plt_info): Likewise.
53         (elf32_arm_plt_needs_thumb_stub_p): Likewise.
54         (elf32_arm_get_local_dynreloc_list): Likewise.
55         (create_ifunc_sections): Likewise.
56         (elf32_arm_copy_indirect_symbol): Update after the changes to
57         elf32_arm_link_hash_entry.  Assert the is_iplt has not yet been set.
58         (arm_type_of_stub): Add an st_type argument.  Use elf32_arm_get_plt_info
59         to get PLT information.  Assert that all STT_GNU_IFUNC references
60         are turned into PLT references.
61         (arm_build_one_stub): Pass the symbol type to
62         elf32_arm_final_link_relocate.
63         (elf32_arm_size_stubs): Pass the symbol type to arm_type_of_stub.
64         (elf32_arm_allocate_irelocs): New function.
65         (elf32_arm_add_dynreloc): In static objects, use .rel.iplt for
66         all R_ARM_IRELATIVE.
67         (elf32_arm_allocate_plt_entry): New function.
68         (elf32_arm_populate_plt_entry): Likewise.
69         (elf32_arm_final_link_relocate): Add an st_type parameter.
70         Set srelgot to null for static objects.  Use separate variables
71         to record which st_value and st_type should be used when generating
72         a dynamic relocation.  Use elf32_arm_get_plt_info to find the
73         symbol's PLT information, setting has_iplt_entry, splt,
74         plt_offset and gotplt_offset accordingly.  Check whether
75         STT_GNU_IFUNC symbols should resolve to an .iplt entry, and change
76         the relocation target accordingly.  Broaden assert to include
77         .iplts.  Don't set sreloc for static relocations.  Assert that
78         we only generate dynamic R_ARM_RELATIVE relocations for R_ARM_ABS32
79         and R_ARM_ABS32_NOI.  Generate R_ARM_IRELATIVE relocations instead
80         of R_ARM_RELATIVE relocations if the target is an STT_GNU_IFUNC
81         symbol.  Pass the symbol type to arm_type_of_stub.  Conditionally
82         resolve GOT references to the .igot.plt entry.
83         (elf32_arm_relocate_section): Update the call to
84         elf32_arm_final_link_relocate.
85         (elf32_arm_gc_sweep_hook): Use elf32_arm_get_plt_info to get PLT
86         information.  Treat R_ARM_REL32 and R_ARM_REL32_NOI as call
87         relocations in shared libraries and relocatable executables.
88         Count non-call PLT references.  Use elf32_arm_get_local_dynreloc_list
89         to get the list of dynamic relocations for a local symbol.
90         (elf32_arm_check_relocs): Always create ifunc sections.  Set isym
91         at the same time as setting h.  Use elf32_arm_allocate_local_sym_info
92         to allocate local symbol information.  Treat R_ARM_REL32 and
93         R_ARM_REL32_NOI as call relocations in shared libraries and
94         relocatable executables.  Record PLT information for local
95         STT_GNU_IFUNC functions as well as global functions.   Count
96         non-call PLT references.  Use elf32_arm_get_local_dynreloc_list
97         to get the list of dynamic relocations for a local symbol.
98         (elf32_arm_adjust_dynamic_symbol): Handle STT_GNU_IFUNC symbols.
99         Don't remove STT_GNU_IFUNC PLTs unless all references have been
100         removed.  Update after the changes to elf32_arm_link_hash_entry.
101         (allocate_dynrelocs_for_symbol): Decide whether STT_GNU_IFUNC PLT
102         entries should live in .plt or .iplt.  Check whether the .igot.plt
103         and .got entries can be combined.  Use elf32_arm_allocate_plt_entry
104         to allocate .plt and .(i)got.plt entries.  Detect which .got
105         entries will need R_ARM_IRELATIVE relocations and use
106         elf32_arm_allocate_irelocs to allocate them.  Likewise other
107         non-.got dynamic relocations.
108         (elf32_arm_size_dynamic_sections): Allocate .iplt, .igot.plt
109         and dynamic relocations for local STT_GNU_IFUNC symbols.
110         Check whether the .igot.plt and .got entries can be combined.
111         Detect which .got entries will need R_ARM_IRELATIVE relocations
112         and use elf32_arm_allocate_irelocs to allocate them.  Use stashed
113         section pointers intead of strcmp checks.  Handle iplt and igotplt.
114         (elf32_arm_finish_dynamic_symbol): Use elf32_arm_populate_plt_entry
115         to fill in .plt, .got.plt and .rel(a).plt entries.  Point
116         STT_GNU_IFUNC symbols at an .iplt entry if non-call relocations
117         resolve to it.
118         (elf32_arm_output_plt_map_1): New function, split out from
119         elf32_arm_output_plt_map.  Handle .iplt entries.  Use
120         elf32_arm_plt_needs_thumb_stub_p.
121         (elf32_arm_output_plt_map): Call it.
122         (elf32_arm_output_arch_local_syms): Add mapping symbols for
123         local .iplt entries.
124         (elf32_arm_swap_symbol_in): Handle Thumb STT_GNU_IFUNC symbols.
125         (elf32_arm_swap_symbol_out): Likewise.
126         (elf32_arm_add_symbol_hook): New function.
127         (elf_backend_add_symbol_hook): Define for all targets.
129 2011-03-14  Richard Sandiford  <richard.sandiford@linaro.org>
131         * elf-bfd.h (elf_link_hash_entry): Add target_internal.
132         * elf.c (swap_out_syms): Set st_target_internal for each
133         Elf_Internal_Sym.
134         * elfcode.h (elf_swap_symbol_in): Likewise.
135         * elf32-i370.c (i370_elf_finish_dynamic_sections): Likewise.
136         * elf32-sh-symbian.c (sh_symbian_relocate_section): Likewise.
137         * elf64-sparc.c (elf64_sparc_output_arch_syms): Likewise.
138         * elfxx-sparc.c (_bfd_sparc_elf_size_dynamic_sections): Likewise.
139         * elflink.c (elf_link_output_extsym): Likewise.
140         (bfd_elf_final_link): Likewise.
141         (elf_link_add_object_symbols): Copy st_target_internal
142         to the hash table if we see a definition.
143         (_bfd_elf_copy_link_hash_symbol_type): Copy target_internal.
144         * elf32-arm.c (elf32_arm_stub_hash_entry): Replace st_type with
145         a branch_type field.
146         (a8_erratum_fix, a8_erratum_reloc): Likewise.
147         (arm_type_of_stub): Replace actual_st_type with an
148         actual_branch_type parameter.
149         (arm_build_one_stub): Use branch types rather than st_types to
150         determine the type of branch.
151         (cortex_a8_erratum_scan): Likewise.
152         (elf32_arm_size_stubs): Likewise.
153         (bfd_elf32_arm_process_before_allocation): Likewise.
154         (allocate_dynrelocs_for_symbol): Likewise.
155         (elf32_arm_finish_dynamic_sections): Likewise.
156         (elf32_arm_final_link_relocate): Replace sym_flags parameter with
157         a branch_type parameter.
158         (elf32_arm_relocate_section): Update call accordingly.
159         (elf32_arm_adjust_dynamic_symbol): Don't check STT_ARM_TFUNC.
160         (elf32_arm_output_map_sym): Initialize st_target_internal.
161         (elf32_arm_output_stub_sym): Likewise.
162         (elf32_arm_symbol_processing): Delete.
163         (elf32_arm_swap_symbol_in): Convert STT_ARM_TFUNCs into STT_FUNCs.
164         Use st_target_internal to record the branch type.
165         (elf32_arm_swap_symbol_out): Use st_target_internal to test for
166         Thumb functions.
167         (elf32_arm_is_function_type): Delete.
168         (elf_backend_symbol_processing): Likewise.
169         (elf_backend_is_function_type): Likewise.
171 2011-03-14  Richard Sandiford  <richard.sandiford@linaro.org>
173         * elf32-arm.c (elf32_arm_check_relocs): Always assign a dynobj.
174         (elf32_arm_finish_dynamic_sections): Move sgot != NULL assertion
175         into the PLT block.
177 2011-03-14  Richard Sandiford  <richard.sandiford@linaro.org>
179         * elf32-arm.c (elf32_arm_check_relocs): Use call_reloc_p,
180         may_need_local_target_p and may_become_dynamic_p to classify
181         the relocation type.  Don't check info->symbolic or h->def_regular
182         when deciding whether to record a potential dynamic reloc.
183         Don't treat potential dynamic relocs as PLT references.
184         (elf32_arm_gc_sweep_hook): Update to match.  Assert that we don't
185         try to make the PLT reference count go negative.
187 2011-03-14  Richard Sandiford  <richard.sandiford@linaro.org>
189         * elf32-arm.c (elf32_arm_final_link_relocate): Always fill in the
190         GOT entry here, rather than leaving it to finish_dynamic_symbol.
191         Only create a dynamic relocation for local references if
192         info->shared.
193         (allocate_dynrelocs_for_symbol): Update dynamic relocation
194         allocation accordingly.
195         (elf32_arm_finish_dynamic_symbol): Don't initialise the GOT entry here.
197 2011-03-14  Richard Sandiford  <richard.sandiford@linaro.org>
199         * elf32-arm.c (elf32_arm_allocate_dynrelocs): New function.
200         (elf32_arm_add_dynreloc): Likewise.
201         (elf32_arm_adjust_dynamic_symbol): Use elf32_arm_allocate_dynrelocs
202         to allocate dynamic relocations.
203         (elf32_arm_size_dynamic_sections): Likewise.
204         (allocate_dynrelocs): Likewise.  Rename to
205         allocate_dynrelocs_for_symbol.
206         (elf32_arm_final_link_relocate): Use elf32_arm_add_dynreloc to
207         create dynamic relocations.
208         (elf32_arm_finish_dynamic_symbol): Likewise.
210 2011-03-12  H.J. Lu  <hongjiu.lu@intel.com>
212         * elf64-x86-64.c (elf_x86_64_check_tls_transition): Supprt TLS
213         x32 GD->IE and GD->LE transitions.
214         (elf_x86_64_relocate_section): Supprt TLS x32 GD->IE, GD->LE
215         and LD->LE transitions.
217 2011-03-10  Alan Modra  <amodra@gmail.com>
219         * elf64-ppc.c (ppc64_elf_relocate_section): Provide section/offset
220         for LO_DS error message and correct multiple.
222 2011-03-10  Alan Modra  <amodra@gmail.com>
224         * elf64-ppc.c (bfd_elf64_bfd_link_just_syms): Define.
225         (ppc64_elf_link_just_syms): New function.
226         (opd_entry_value): Don't assume big-endian host.
227         (get_r2off): New function.
228         (ppc_build_one_stub, ppc_size_one_stub): Use it here.
230 2011-03-06  Michael Snyder  <msnyder@vmware.com>
232         * compress.c (bfd_compress_section_contents): Check for out of mem.
234         * elf64-x86-64.c (elf_x86_64_relocate_section): Document
235         that case statement falls through intentionally.
237         * elf32-i386.c (elf_i386_relocate_section): Document fall through.
239 2011-03-04  Alan Modra  <amodra@gmail.com>
241         * archive.c (bsd_write_armap): Don't call stat in deterministic
242         mode, and don't use st_mtime if stat returns error.
244 2011-03-03  Michael Snyder  <msnyder@vmware.com>
246         * elf64-x86-64.c (elf_x86_64_relocate_section): Remove dead code.
248         * coff-x86_64.c (coff_amd64_rtype_to_howto): Fencepost error.
250         * aoutx.h (aout_final_link): Use sizeof int not sizeof int*.
251         (aout_link_write_other_symbol): Missing break statement.
253         * dwarf2.c (scan_unit_for_symbols): Stop memory leak.
255         * archive.c (_bfd_slurp_extended_name_table): Fail if bfd_seek fails.
257 2011-03-03  H.J. Lu  <hongjiu.lu@intel.com>
259         * elf64-x86-64.c (elf_x86_64_check_tls_transition): Supprt TLS
260         x32 IE->LE transition.
261         (elf_x86_64_relocate_section): Likewise.
263 2011-03-02  Bernd Schmidt  <bernds@codesourcery.com>
265         * elflink.c (is_reloc_section): Remove function.
266         (get_dynamic_reloc_section_name): Construct string manually.
268 2011-02-28  Kai Tietz  <kai.tietz@onevision.com>
270         * archive.c (_bfd_find_nested_archive): Use filename_(n)cmp.
271         (adjust_relative_path): Likewise.
272         (_bfd_construct_extended_name_table): Likewise.
273         * corefile.c (generic_core_file_matches_executable_p): Likewise.
274         * elf32-bfin.c (bfinfdpic_relocate_section): Likewise.
275         * elf32-frv.c (elf32_frv_relocate_section): Likewise.
276         * elf32-spu.c (sort_bfds): Likewise.
277         (spu_elf_auto_overlay): Likewise.
278         * syms.c (_bfd_stab_section_find_nearest_line): Likewise.
279         * xcofflink.c (xcoff_set_import_path): Likewise.
280         * xtensa-isa.c (xtensa_regfile_lookup): Likewise.
281         (xtensa_regfile_lookup_shortname): Likewise.
283 2011-02-28  Alan Modra  <amodra@gmail.com>
285         PR 12513
286         * archive.c (bfd_slurp_bsd_armap_f2): Sanity check parsed_size and
287         stringsize.  Properly sanity check symdef_count.  Remove redundant
288         bfd_release.
290 2011-02-25  Rafael Ávila de Espíndola <respindola@mozilla.com>
292         * plugin.c (bfd_plugin_object_p): Correctly set the filesize
293         and handle claim_file seeking. Only try to load the plugin once.
295 2011-02-22  Andreas Schwab  <schwab@redhat.com>
297         * elf32-m68k.c (elf_m68k_finish_dynamic_symbol): For a TLS_GD
298         relocation read the value from the second GOT slot.
300 2011-02-15  Tristan Gingold  <gingold@adacore.com>
302         * vms-alpha.c (alpha_vms_link_add_archive_symbols): Add a comment.
304 2011-02-15  Alan Modra  <amodra@gmail.com>
306         * elf64-ppc.c (ppc64_elf_edit_toc): Reinstate second read of
307         toc relocs.  Fuss over free(NULL).
309 2011-02-14  Mike Frysinger  <vapier@gentoo.org>
311         * elflink.c (bfd_elf_size_dynamic_sections): Add
312         bfd_get_symbol_leading_char to the start of newname.
314 2011-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
316         * configure: Regenerate.
318 2011-02-09  Alan Modra  <amodra@gmail.com>
320         * elf64-ppc.c (ppc64_elf_edit_toc): Don't free toc relocs until
321         we are done.  When optimising large toc, check that a global
322         symbol on a toc reloc is defined in a kept section.
324 2011-02-08  Nick Clifton  <nickc@redhat.com>
326         PR binutils/12467
327         * elf.c (assign_file_positions_for_load_sections): Set the program
328         header offset and entry size to zero if there are no program
329         headers.
331 2011-02-08  Alan Modra  <amodra@gmail.com>
333         * elf64-ppc.c (ppc64_elf_edit_toc): Don't segfault on NULL
334         local_syms when looking for local symbols in .toc.
336 2011-02-01  Alan Modra  <amodra@gmail.com>
338         * elf64-ppc.c (ppc64_elf_next_input_section): Use elf_gp value
339         for toc pointer on any section having makes_toc_func_call set.
340         (check_pasted_section): Ensure pasted .init/.fini fragments use
341         the same toc if any has makes_toc_func_call set.
343 2011-01-28  Joseph Myers  <joseph@codesourcery.com>
345         * elf32-ppc.c (ppc_elf_link_hash_newfunc): Initialize has_sda_refs
346         field.
348 2011-01-22  Richard Sandiford  <rdsandiford@googlemail.com>
350         * elfxx-mips.c (_bfd_mips_elf_merge_private_bfd_data): Ignore
351         common sections too.
353 2011-01-18  H.J. Lu  <hongjiu.lu@intel.com>
355         * elf64-x86-64.c (elf_backend_want_plt_sym): Redefine to 0 after
356         Solaris target.
358 2011-01-18  Pierre Muller  <muller@ics.u-strasbg.fr>
360         Fix compilation for mingw64.
361         * coffcode.h (coff_slurp_symbol_table): Add intptr_t intermediate
362         typecast to avoid warning.
363         * elf32-rx.c: Add "bfd_stdint.h" include required for int32_t type
364         usage.
365         * elfxx-ia64.c (elfNN_ia64_relax_br): Use intptr_t typeacast instead
366         of long for pointer to avoid warning.
367         (elfNN_ia64_relax_brl): Idem.
368         (elfNN_ia64_install_value): Idem.
369         * vms-alpha.c (_bfd_vms_slurp_etir): Idem.
371 2011-01-17  Richard Sandiford  <richard.sandiford@linaro.org>
373         * elf32-arm.c (elf32_arm_check_relocs): Check needs_plt rather than
374         h->needs_plt when deciding whether to record a possible dynamic reloc.
376 2011-01-17  Richard Sandiford  <richard.sandiford@linaro.org>
378         * elf32-arm.c (elf32_arm_gc_sweep_hook): Remove all registered
379         dynamic relocs for the removed section.
381 2011-01-15  H.J. Lu  <hongjiu.lu@intel.com>
383         * elf64-x86-64.c (elf_x86_64_check_relocs): Check invalid x32
384         relocations.
386 2011-01-14  H.J. Lu  <hongjiu.lu@intel.com>
388         * elf64-x86-64.c (elf_x86_64_link_hash_table): Add pointer_r_type.
389         (elf_x86_64_link_hash_table_create): Set pointer_r_type.
390         (elf_x86_64_check_relocs): Handle R_X86_64_32 like R_X86_64_64
391         for ILP32.  Remove ABI_64_P PIC check for R_X86_64_8,
392         R_X86_64_16, R_X86_64_32 and R_X86_64_32S.
393         (elf_x86_64_relocate_section):  Handle R_X86_64_32 like R_X86_64_64
394         for ILP32.
396 2011-01-14  Alan Modra  <amodra@gmail.com>
398         * bfd.c (bfd_perror): Flush stdout before and stderr after printing
399         error.
400         (_bfd_default_error_handler): Likewise.
401         * elf.c (print_segment_map): Likewise.
402         * libbfd.c (warn_deprecated): Likewise.
403         * som.c (som_sizeof_headers): No need to do so here.
404         * coff-i860.c: Replace use of printf for error messages with
405         _bfd_error_handler.
406         * coff-ppc.c: Likewise.
407         * coff-sh.c: Likewise.
408         * elf32-bfin.c: Likewise.
409         * elf32-dlx.c: Likewise.
410         * elf32-mep.c: Likewise.
411         * elf32-v850.c: Likewise.
412         * mach-o.c: Likewise.
413         * pef.c: Likewise.
415 2011-01-13  H.J. Lu  <hongjiu.lu@intel.com>
417         * elf64-x86-64.c (elf_x86_64_link_hash_table): Remove
418         swap_reloca_out.
419         (elf_x86_64_link_hash_table_create): Don't set swap_reloca_out.
420         (elf_x86_64_check_relocs): Align relocation section to 4 byte
421         for 32bit.
422         (elf_x86_64_gc_sweep_hook): Replace ELF64_ST_TYPE with
423         ELF_ST_TYPE.
424         (elf_x86_64_finish_dynamic_symbol): Updated.
425         (elf_x86_64_finish_dynamic_sections): Don't use
426         Elf64_External_Dyn, bfd_elf64_swap_dyn_in, nor
427         bfd_elf64_swap_dyn_out.
429 2011-01-14  J. Park  <grassman@gmail.com>
431         PR ld/12339
432         * elf32-arm.c (allocate_dynrelocs): Don't set up eh before
433         following bfd_link_hash_warning symbol link.
435 2011-01-10  Nathan Sidwell  <nathan@codesourcery.com>
436             Glauber de Oliveira Costa  <glommer@gmail.com>
438         * reloc.c (BFD_RELOC_ARM_TLS_GOTDESC, BFD_RELOC_ARM_TLS_CALL,
439         BFD_RELOC_ARM_THM_TLS_CALL, BFD_RELOC_ARM_TLS_DESCSEQ,
440         BFD_RELOC_ARM_THM_TLS_DESCSEQ, BFD_RELOC_ARM_TLS_DESC): New
441         relocations.
442         * libbfd.h: Rebuilt.
443         * bfd-in2.h: Rebuilt.
444         * elf32-arm.c (elf32_arm_howto_table_1): Add new relocations.
445         (elf32_arm_reloc_map): Likewise.
446         (tls_trampoline, dl_tlsdesc_lazy_trampoline): New PLT templates.
447         (elf32_arm_stub_long_branch_any_tls_pic,
448         elf32_arm_stub_long_branch_v4t_thumb_tls_pic): New stub templates.
449         (DEF_STUBS): Add new stubs.
450         (struct_elf_arm_obj_data): Add local_tlsdesc_gotent field.
451         (elf32_arm_local_tlsdesc_gotent): New.
452         (GOT_TLS_GDESC): New mask.
453         (GOT_TLS_GD_ANY): Define.
454         (struct elf32_arm_link_hash_entry): Add tlsdesc_got field.
455         (elf32_arm_compute_jump_table_size): New.
456         (struct elf32_arm_link_hash_table): Add next_tls_desc_index,
457         num_tls_desc, dt_tlsdesc_plt, dt_tlsdesc_got, tls_trampoline,
458         sgotplt_jump_table_size fields.
459         (elf32_arm_link_hash_newfunc): Initialize tlsdesc_got field.
460         (elf32_arm_link_hash_table_create): Initialize new fields.
461         (arm_type_of_stub): Check TLS desc relocs too.
462         (elf32_arm_stub_name): TLS desc relocs can be shared.
463         (elf32_arm_tls_transition): Determine relaxation.
464         (arm_stub_required_alignment): Add tls stubs.
465         (elf32_arm_size_stubs): Likewise.
466         (elf32_arm_tls_relax): Perform TLS relaxing.
467         (elf32_arm_final_link_relocate): Process TLS DESC relocations.
468         (IS_ARM_TLS_GNU_RELOC): New.
469         (IS_ARM_TLS_RELOC): Use it.
470         (elf32_arm_relocate_section): Perform TLS relaxing.
471         (elf32_arm_check_relocs): Anticipate TLS relaxing, process tls
472         desc relocations.
473         (allocate_dynrelocs): Allocate tls desc relcoations.
474         (elf32_arm_output_arch_local_syms): Emit tls trampoline mapping
475         symbols.
476         (elf32_arm_size_dynamic_sections): Allocate tls trampolines and
477         got slots.
478         (elf32_arm_always_size_sections): New. Create _TLS_MODULE_BASE
479         symbol.
480         (elf32_arm_finish_dynamic_symbol): Adjust.
481         (arm_put_trampoline): New.
482         (elf32_arm_finish_dynamic_sections): Emit new dynamic tags and tls
483         trampolines.
484         (elf_backend_always_size_sections): Define.
486 2011-01-06  H.J. Lu  <hongjiu.lu@intel.com>
488         * elf-ifunc.c (_bfd_elf_allocate_ifunc_dyn_relocs): Optimized.
490 2011-01-06  H.J. Lu  <hongjiu.lu@intel.com>
492         PR ld/12366
493         PR ld/12371
494         * elf-ifunc.c (_bfd_elf_allocate_ifunc_dyn_relocs): Properly
495         handle symbols marked with regular reference, but not non-GOT
496         reference when building shared library.
498         * elf32-i386.c (elf_i386_gc_sweep_hook): Properly handle
499         local and global STT_GNU_IFUNC symols when building shared
500         library.
501         * elf64-x86-64.c (elf_x86_64_gc_sweep_hook): Likewise.
503 2011-01-05  DJ Delorie  <dj@redhat.com>
505         * reloc.c: Add BFD_RELOC_RX_OP_NEG.
506         * libbfd.h: Regenerate.
507         * bfd-in2.h: Regenerate.
508         * elf32-rx.c: Add it to the list, corresponding to R_RX_OPneg.
510 2011-01-03  H.J. Lu  <hongjiu.lu@intel.com>
512         * cpu-i386.c (bfd_i386_compatible): New.
513         (bfd_x64_32_arch_intel_syntax): Replace bfd_default_compatible
514         with bfd_i386_compatible.
515         (bfd_x86_64_arch_intel_syntax): Likewise.
516         (bfd_i386_arch_intel_syntax): Likewise.
517         (i8086_arch): Likewise.
518         (bfd_x64_32_arch): Likewise.
519         (bfd_x86_64_arch): Likewise.
520         (bfd_i386_arch): Likewise.
522 For older changes see ChangeLog-2010
524 Local Variables:
525 mode: change-log
526 left-margin: 8
527 fill-column: 74
528 version-control: never
529 End: