OSDN Git Service

* configure.in (--with-separate-debug-dir): New option.
[pf3gnuchains/pf3gnuchains3x.git] / bfd / ChangeLog
1 2007-06-23  Andreas Schwab  <schwab@suse.de>
2
3         * configure.in (--with-separate-debug-dir): New option.
4         * configure: Regenerate.
5         * Makefile.am (dwarf2.lo): Add rule to pass DEBUGDIR.
6         * Makefile.in: Regenerate.
7         * dwarf2.c (_bfd_dwarf2_find_nearest_line): Pass DEBUGDIR to
8         bfd_follow_gnu_debuglink.
9         (_bfd_dwarf2_find_line): Likewise.
10
11 2007-06-22  Nick Clifton  <nickc@redhat.com>
12
13         * dwarf2.c: Add support for reading in debug information via a
14         .gnu_debuglink section:
15         (struct dwarf2_debug): Add bfd field to record the bfd containing
16         the debug info.
17         (parse_comp_unit): Remove ABFD parameter.  Instead use the bfd
18         field in the dwarf2_debug structure.
19         (_bfd_dwarf2_find_nearest_line): If a debug info section could not
20         be found in the current bfd call bfd_follow_gnu_debuglink to see
21         if another file contains the debug information.  If it does, open
22         it and continue.
23         (_bfd_dwarf2_find_line): Likewise.
24
25 2007-06-19  H.J. Lu  <hongjiu.lu@intel.com>
26
27         PR ld/4590
28         * elfxx-ia64.c (sort_dyn_sym_info): Keep the valid got_offset
29         when removing duplicated entries.
30         (get_dyn_sym_info): Initialize the got_offset field to -1.
31         Update call to sort_dyn_sym_info.
32         (elfNN_ia64_relocate_section): Call sort_dyn_sym_info to sort
33         array of addend and remove duplicates.
34
35 2007-06-18  H.J. Lu  <hongjiu.lu@intel.com>
36
37         * libpei.h (_bfd_XXi_final_link_postscript): Remove
38         duplication.
39         (bfd_target_pei_p): New.
40         (bfd_target_pei_arch): New
41         (bfd_target_efi_p): Likewise.
42         (bfd_target_efi_arch): New
43         (bfd_pe_executable_p): Use bfd_target_pei_p and
44         bfd_target_efi_p.
45
46         * peicode.h (arch_type): New enum.
47         (pe_arch): New function.
48         (pe_bfd_object_p): Don't match PE/EFI target with EFI/PE file
49         if there is an EFI/PE target.
50
51 2007-06-14  H.J. Lu  <hongjiu.lu@intel.com>
52
53         * Makefile.am (ACLOCAL_AMFLAGS): Add -I . -I ../config.
54
55         * acinclude.m4: Don't include m4 files. Remove libtool
56         kludge.
57
58         * Makefile.in: Regenerated.
59         * aclocal.m4: Likewise.
60         * configure: Likewise.
61
62 2007-06-11  Sterling Augustine  <sterling@tensilica.com>
63             Bob Wilson  <bob.wilson@acm.org>
64         
65         * elf32-xtensa.c (extend_ebb_bounds_forward): Use renamed
66         XTENSA_PROP_NO_TRANSFORM flag instead of XTENSA_PROP_INSN_NO_TRANSFORM.
67         (extend_ebb_bounds_backward, compute_text_actions): Likewise.
68         (compute_ebb_proposed_actions, coalesce_shared_literal): Likewise.
69         (xtensa_get_property_predef_flags): Likewise.
70         (compute_removed_literals): Pass new arguments to is_removable_literal.
71         (is_removable_literal): Add sec, prop_table and ptblsize arguments.
72         Do not remove literal if the NO_TRANSFORM property flag is set.
73         
74 2007-05-31  Richard Sandiford  <rsandifo@nildram.co.uk>
75
76         * elfxx-mips.c (mips_elf_initialize_tls_index): When processing a
77         type (3) single-GOT entry, read tls_type from the hash table entry
78         rather than the GOT entry.
79
80 2007-06-01  Alan Modra  <amodra@bigpond.net.au>
81
82         * simple.c (bfd_simple_get_relocated_section_contents): Init
83         input_bfds_tail.
84
85 2007-05-30  Alan Modra  <amodra@bigpond.net.au>
86
87         * elf.c (elf_fake_sections): Adjust test for SHT_NOBITS sections
88         created by objcopy --only-keep-debug.
89         (_bfd_elf_init_private_section_data): Only change elf_section_type
90         if it is SHT_NULL.
91
92         * elf.c (assign_file_positions_for_load_sections): Correct sh_type
93         to SHT_NOBITS earlier.  Base actions in rest of function on sh_type
94         and sh_flags instead of bfd section flags.  Delete voff and code
95         keeping nobits segments aligned.
96
97 2007-05-25  Eric Christopher  <echristo@apple.com>
98
99         * elf-eh-frame.c (_bfd_elf_discard_section_eh_frame):
100         Check that sym_sec isn't NULL before accessing.
101
102 2007-05-24  Steve Ellcey  <sje@cup.hp.com>
103
104         * Makefile.in: Regnerate.
105         * configure: Regenerate.
106         * aclocal.m4: Regenerate.
107         * doc/Makefile.in: Regenerate.
108
109 2007-05-22  Paul Brook  <paul@codesourcery.com>
110
111         * elf32-arm.c (output_arch_syminfo): Replace plt_shndx and plt_offset
112         with sec and sec_shndx.
113         (elf32_arm_ouput_plt_map_sym): Use them.
114         (elf32_arm_output_arch_local_syms): Output mapping symbols for
115         interworking glue.
116
117 2007-05-18  Paul Brook  <paul@codesourcery.com>
118
119         * elf32-arm.c (ARM2THUMB_V5_STATIC_GLUE_SIZE): Define.
120         (a2t1v5_ldr_insn, a2t1v5_ldr_insn): New.
121         (record_arm_to_thumb_glue): Add v5t non-pic glue.
122         (elf32_arm_create_thumb_stub): Ditto.
123
124 2007-05-16  H.J. Lu  <hongjiu.lu@intel.com>
125             Alan Modra  <amodra@bigpond.net.au>
126
127         * elflink.c (_bfd_elf_adjust_dynamic_copy): Align dynamic bss
128         section to the minimum alignment.
129
130 2007-05-15  H.J. Lu  <hongjiu.lu@intel.com>
131             Alan Modra  <amodra@bigpond.net.au>
132
133         PR ld/4504
134         * elf-bfd.h (_bfd_elf_adjust_dynamic_copy): New.
135         * elflink.c (_bfd_elf_adjust_dynamic_copy): New.
136
137         * elf-m10300.c (_bfd_mn10300_elf_adjust_dynamic_symbol): Call
138         _bfd_elf_adjust_dynamic_copy to adjust for the copy in dynamic
139         bss section.
140         * elf32-arm.c (elf32_arm_adjust_dynamic_symbol): Likewise.
141         * elf32-cris.c (elf_cris_adjust_dynamic_symbol): Likewise.
142         * elf32-hppa.c (elf32_hppa_adjust_dynamic_symbol): Likewise.
143         * elf32-i370.c (i370_elf_adjust_dynamic_symbol): Likewise.
144         * elf32-i386.c (elf_i386_adjust_dynamic_symbol): Likewise.
145         * elf32-m32r.c (m32r_elf_adjust_dynamic_symbol): Likewise.
146         * elf32-m68k.c (elf_m68k_adjust_dynamic_symbol): Likewise.
147         * elf32-ppc.c (ppc_elf_adjust_dynamic_symbol): Likewise.
148         * elf32-s390.c (elf_s390_adjust_dynamic_symbol): Likewise.
149         * elf32-sh.c (sh_elf_adjust_dynamic_symbol): Likewise.
150         * elf32-vax.c (elf_vax_adjust_dynamic_symbol): Likewise.
151         * elf64-ppc.c (ppc64_elf_adjust_dynamic_symbol): Likewise.
152         * elf64-s390.c (elf_s390_adjust_dynamic_symbol): Likewise.
153         * elf64-sh64.c (sh64_elf64_adjust_dynamic_symbol): Likewise.
154         * elf64-x86-64.c (elf64_x86_64_adjust_dynamic_symbol): Likewise.
155         * elfxx-mips.c (_bfd_mips_vxworks_adjust_dynamic_symbol): Likewise.
156         * elfxx-sparc.c (_bfd_sparc_elf_adjust_dynamic_symbol): Likewise.
157
158 2007-05-15  Richard Sandiford  <richard@codesourcery.com>
159
160         * elfxx-mips.c (mips_elf_create_local_got_entry): Remove
161         input_section argument.  Create .rela.dyn relocations against
162         symbol 0 rather than the section symbol.
163         (mips_elf_local_got_index): Remove input_section argument.
164         Update call to mips_elf_create_local_got_entry.
165         (mips_elf_got_page, mips_elf_got16_entry): Likewise.
166         (mips_elf_calculate_relocation): Update calls to
167         mips_elf_local_got_index, mips_elf_got16_entry and mips_elf_got_page.
168
169 2007-05-15  Mark Shinwell  <shinwell@codesourcery.com>
170
171         * elf32-arm.c (elf32_arm_final_link_relocate): Correctly
172         handle the Thumb-2 JUMP19 relocation.
173
174 2007-05-15  Alan Modra  <amodra@bigpond.net.au>
175
176         PR 4479
177         * elf.c (elf_fake_sections): Don't allow backend to change
178         SHT_NOBITS if called for strip/objcopy --only-keep-debug.
179         * elfxx-mips.c (_bfd_mips_elf_fake_sections): Remove similar
180         fix from here.
181
182 2007-05-14  Alan Modra  <amodra@bigpond.net.au>
183
184         * elf.c (bfd_elf_string_from_elf_section): Return NULL on
185         invalid shstrndx.
186         (bfd_elf_get_str_section): Likewise.
187
188 2007-05-12  Alan Modra  <amodra@bigpond.net.au>
189
190         PR 4497
191         * elf-eh-frame.c (struct cie): Add "local_personality".  Make
192         "personality" a union.
193         (cie_eq): Compare local_personality too.  Adjust personality
194         comparison.
195         (_bfd_elf_discard_section_eh_frame): Check binding on personality
196         reloc sym to allow for bad symtab.  Use stashed local syms rather
197         than reading personality local sym.  Handle discarded sections.
198
199 2007-05-12  Alan Modra  <amodra@bigpond.net.au>
200
201         * elf32-spu.c (elf_howto_table): Add howto for R_SPU_ADDR16X.
202
203 2007-05-11  Alan Modra  <amodra@bigpond.net.au>
204
205         * elf32-ppc.h (ppc_elf_select_plt_layout): Update prototype.
206         (enum ppc_elf_plt_type): Move from..
207         * elf32-ppc.c: ..here.
208         (struct ppc_elf_obj_tdata): Add makes_plt_call and has_rel16.
209         (struct ppc_elf_link_hash_table): Reorder.  Add old_bfd.  Delete
210         can_use_new_plt.  Make is_vxworks a bitfield.
211         (ppc_elf_link_hash_table_create): Don't clear is_vxworks (again).
212         (ppc_elf_check_relocs): Update setting of reloc flags.  Set old_bfd.
213         (ppc_elf_select_plt_layout): Modify parameters.  Use bfd reloc
214         flags to better detect object files needing old bss-style plt.
215         Allow secure plt to be used without rel16 relocs being detected.
216         Warn if secure plt request cannot be allowed.
217
218 2007-05-11  Alan Modra  <amodra@bigpond.net.au>
219
220         * reloc.c (BFD_RELOC_SPU_PPU32, BFD_RELOC_SPU_PPU64): Define.
221         * elf-bfd.h (struct elf_backend_data): Change return type of
222         elf_backend_relocate_section to int.
223         * elf32-spu.c (elf_howto_table): Add howtos for R_SPU_PPU32 and
224         R_SPU_PPU64.
225         (spu_elf_bfd_to_reloc_type): Convert new relocs.
226         (spu_elf_count_relocs): New function.
227         (elf_backend_count_relocs): Define.
228         (spu_elf_relocate_section): Arrange to emit R_SPU_PPU32 and
229         R_SPU_PPU64 relocs.
230         * elflink.c (elf_link_input_bfd): Emit relocs if relocate_section
231         returns 2.
232         * bfd-in2.h: Regenerate.
233         * libbfd.h: Regenerate.
234
235 2007-05-10  Richard Sandiford  <richard@codesourcery.com>
236
237         * elf32-arm.c (elf32_arm_check_relocs): Don't create PLT entries
238         for R_ARM_ABS12 relocs.
239         (elf32_arm_finish_dynamic_symbol): Fix the loop that creates
240         non-shared VxWorks PLT entries.
241
242 2007-05-11  Alan Modra  <amodra@bigpond.net.au>
243
244         PR 4454
245         * elf-eh-frame.c (struct cie): Make "personality" a bfd_vma.
246         (_bfd_elf_discard_section_eh_frame): Handle local syms on
247         personality relocation.
248
249 2007-05-10  Richard Sandiford  <richard@codesourcery.com>
250
251         * elf.c (assign_file_positions_for_load_sections): Use p_memsz
252         rather than p_filesz to calculate the LMA of the end of a segment.
253
254 2007-05-10  Jakub Jelinek  <jakub@redhat.com>
255
256         * elf64-ppc.c (ppc64_elf_adjust_dynamic_symbol): Don't do copyreloc
257         processing if symbol is defined in the executable.
258
259 2007-05-10  Alexandre Oliva  <aoliva@redhat.com>
260
261         * elf32-frv.c (_frvfdpic_check_discarded_relocs): New.
262         (frvfdpic_elf_discard_info): New.
263         (elf_backend_discard_info): Define for FDPIC.
264
265 2007-05-09  Mark Shinwell  <shinwell@codesourcery.com>
266
267         * elf32-arm.c (bfd_elf32_arm_vfp11_erratum_scan): Don't
268         attempt to scan if the bfd doesn't correspond to an ELF image.
269         (bfd_elf32_arm_vfp11_fix_veneer_locations): Likewise.
270
271 2007-05-08  Alexandre Oliva  <aoliva@redhat.com>
272
273         * elf32-frv.c (elf32_frv_relocate_section): Discard dynamic relocs
274         for which _bfd_elf_section_offset returns -1.
275
276 2007-05-08  Alan Modra  <amodra@bigpond.net.au>
277
278         * elf32-spu.c (spu_elf_size_stubs): Use "void *" for psyms.
279         (mark_functions_via_relocs): Likewise.
280
281 2007-05-07  Alan Modra  <amodra@bigpond.net.au>
282
283         * elflink.c (bfd_elf_final_link): Correct reloc handling for
284         elf_backend_count_relocs.
285         (bfd_elf_discard_info): Print an error if we can't read syms.
286
287 2007-05-07  Alan Modra  <amodra@bigpond.net.au>
288
289         * elf32-spu.c (spu_elf_reloc_type_lookup): Return NULL on
290         invalid reloc code.
291         (spu_elf_gc_mark_hook, spu_elf_section_processing): Delete functions.
292         (elf_backend_gc_mark_hook, elf_backend_section_processing): Don't
293         define.
294
295 2007-05-07  Alan Modra  <amodra@bigpond.net.au>
296
297         * elf.c (assign_file_positions_for_load_sections): Don't check
298         core segment.
299
300 2007-05-04  H.J. Lu  <hongjiu.lu@intel.com>
301
302         * elflink.c (elf_link_sort_relocs): Return if both .rela.dyn
303         and .rel.dyn aren't present.
304
305 2007-05-04  Nick Clifton  <nickc@redhat.com>
306
307         * elflink.c (elf_link_sort_relocs): If both .rela.dyn and .rel.dyn
308         sections are present examine the indirect sections in an attempt
309         to compute the correct relocation size.  If there is any
310         ambiguity, produce an error and refuse to sort.
311
312 2007-05-03  Sandra Loosemore  <sandra@codesourcery.com>
313
314         * elf32-arm.c (allocate_dynrelocs): Fix typo in comment.
315
316 2007-05-03  Vincent Riviere  <vincent.riviere@freesbee.fr>
317             Nick Clifton  <nickc@redhat.com>
318
319         PR gas/3041
320         * aoutx.h (swap_std_reloc_out): Treat relocs against weak symbols
321         in the same way as relocs against external symbols.
322
323 2007-05-02  Alan Modra  <amodra@bigpond.net.au>
324
325         * elf.c (assign_file_positions_for_load_sections): Set sh_offset
326         here.  Set sh_type to SHT_NOBITS if we won't be allocating
327         file space.  Don't bump p_memsz for non-alloc sections.  Adjust
328         section-in-segment check.
329         (assign_file_positions_for_non_load_sections): Don't set sh_offset
330         here for sections that have already been handled above.
331
332 2007-04-30  Alan Modra  <amodra@bigpond.net.au>
333
334         * elf32-spu.c (struct spu_link_hash_table): Add stack_analysis
335         and emit_stack_syms bitfields.
336         (get_sym_h): Read all symbols if stack analysis will be done.
337         (spu_elf_create_sections): Add stack_analysis and emit_stack_syms
338         params, and stash in hash table.
339         (is_hint): Split off from..
340         (is_branch): ..here.  Adjust callers.
341         (spu_elf_size_stubs): Add stack_analysis param.  Arrange to read
342         and keep all syms.
343         (write_one_stub): Fix mem leak.
344         (find_function_stack_adjust): New function.
345         (sort_syms_syms, sort_syms_psecs): New vars.
346         (sort_syms): New function.
347         (struct call_info, struct function_info): New.
348         (struct spu_elf_stack_info): New.
349         (alloc_stack_info, maybe_insert_function, func_name): New functions.
350         (is_nop, insns_at_end, check_function_ranges): Likewise.
351         (find_function, insert_callee, mark_functions_via_relocs): Likewise.
352         (pasted_function, interesting_section, discover_functions): Likewise.
353         (mark_non_root, call_graph_traverse, build_call_tree): Likewise.
354         (sum_stack, spu_elf_stack_analysis, spu_elf_final_link): Likewise.
355         (bfd_elf32_bfd_final_link): Define.
356         * elf32-spu.h (struct _spu_elf_section_data): Add stack_info field.
357         (spu_elf_create_sections, spu_elf_size_stubs): Update prototypes.
358
359 2007-04-28  Sergey Rogozhkin  <rogozhkin@niisi.msk.ru>
360
361         * elfxx-mips.c (mips_elf_create_dynamic_relocation): Don't access
362         memory which we might not own.
363
364 2007-04-27  Bob Wilson  <bob.wilson@acm.org>
365
366         * elf32-xtensa.c (elf_xtensa_make_sym_local): Restore deleted function.
367         (elf_xtensa_hide_symbol, elf_backend_hide_symbol): Likewise.
368         (elf_xtensa_allocate_dynrelocs): Use elf_xtensa_make_sym_local.
369
370 2007-04-27  Bob Wilson  <bob.wilson@acm.org>
371
372         * elf32-xtensa.c (xtensa_read_table_entries): Step through table
373         contents and relocs in parallel.
374
375 2007-04-27  Bob Wilson  <bob.wilson@acm.org>
376
377         * elf32-xtensa.c (relax_property_section): Remove extra irel increment.
378
379 2007-04-27  Alan Modra  <amodra@bigpond.net.au>
380
381         * cpu-rs6000.c: Write Mimi's name in ASCII.
382         * coff-rs6000.c: Likewise.
383         * rs6000-core.c: Likewise.
384
385 2007-04-27  Alan Modra  <amodra@bigpond.net.au>
386
387         * sysdep.h: Include config.h first.
388         Many files: Include sysdep.h before bfd.h.
389         * Makefile.am: Run "make dep-am".
390         * Makefile.in: Regenerate.
391
392 2007-04-25  Alan Modra  <amodra@bigpond.net.au>
393
394         * sysdep.h: Revert last change.
395
396 2007-04-24  Nick Clifton  <nickc@redhat.com>
397
398         * coffcode.h (coff_slurp_reloc_table): Initialise dst.r_offset.
399         * coff-m68k.c (m68kcoff_rtype_to_howto): Initialize relent.howto.
400
401 2007-04-24  Alan Modra  <amodra@bigpond.net.au>
402
403         * elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Warn if
404         eh_frame_hdr table won't be created.
405
406 2007-04-24  Alan Modra  <amodra@bigpond.net.au>
407
408         * acinclude.m4: Include config/stdint.m4.
409         * configure.in: Invoke GCC_HEADER_STDINT.
410         * sysdep.h: Don't include ansidecl.h here.
411         * configure: Regenerate.
412         * config.in: Regenerate.
413         * Makefile.in: Regenerate.
414
415 2007-04-23  Nathan Sidwell  <nathan@codesourcery.com>
416
417         * archures.c (bfd_mach_mcf_isa_c, bfd_mach_mcf_isa_c_mac,
418         bfd_mach_mcf_isa_c_emac): New.
419         * elf32-m68k.c (ISAC_PLT_ENTRY_SIZE, elf_isac_plt0_entry,
420         elf_isac_plt_entry, elf_isac_plt_info): New.
421         (elf32_m68k_object_p): Add ISA_C.
422         (elf32_m68k_print_private_bfd_data): Print ISA_C.
423         (elf32_m68k_get_plt_info): Detect ISA_C.
424         * cpu-m68k.c (arch_info): Add ISAC.
425         (m68k_arch_features): Likewise,
426         (bfd_m68k_compatible): ISAs B & C are not compatible.
427
428 2007-04-21  Nick Clifton  <nickc@redhat.com>
429
430         * ecoff.c (_bfd_ecoff_write_armap): Initialise rehash.
431         (ecoff_link_add_archive_symbols): Likewise.
432         * coff-m68k.c (m68kcoff_common_addend_rtype_to_howto): Initialise
433         relent.howto.
434         * ieee.c (parse_int): Initialise x.
435         (must_parse_int): Initialise result.
436         (ieee_slurp_external_symbols): Initialise value.
437
438 2007-04-21  Alan Modra  <amodra@bigpond.net.au>
439
440         * config.bfd (spu-*-elf): Delete targ_selvecs.
441
442 2007-04-19  Nick Clifton  <nickc@redhat.com>
443
444         * coffcode.h (coff_rtype_to_howto): Initialise genrel.howto.
445
446 2007-04-19  Alan Modra  <amodra@bigpond.net.au>
447
448         * bfd.c (bfd_demangle): New function.
449         * Makefile.am: Run "make dep-am".
450         * Makefile.in: Regenerate.
451         * bfd-in2.h: Regenerate.
452
453 2007-04-18  Matthias Klose  <doko@ubuntu.com>
454
455         * Makefile.am (libbfd_la_LDFLAGS): Use bfd soversion.
456         (bfdver.h): Use the date in non-release builds for the soversion.
457         * Makefile.in: Regenerate.
458
459 2007-04-17  Paul Brook  <paul@codesourcery.com>
460
461         * elf.c (_bfd_elf_is_function_type): New function.
462         * elflink.c (_bfd_elf_merge_symbol): Use bed->is_function_type.
463         (_bfd_elf_dynamic_symbol_p, _bfd_elf_symbol_refs_local_p,
464         is_global_data_symbol_definition, elf_link_add_object_symbols): Ditto.
465         * elf-bfd.h (elf_backend_data): Add is_function_type.
466         (_bfd_elf_is_function_type): Add prototype.
467         * elfxx-target.h (elf_backend_is_function_type): Add default
468         definition.
469         (elfNN_bed): Add elf_backend_is_function_type.
470         * elf32-arm.c (elf32_arm_is_function_type): New function.
471         (elf_backend_is_function_type): Define.
472
473 2007-04-17  Daniel Jacobowitz  <dan@codesourcery.com>
474
475         * elfxx-mips.c (_bfd_mips_elf_size_dynamic_sections): Put
476         DT_MIPS_RLD_MAP before DT_DEBUG again.
477
478 2007-04-14  Steve Ellcey  <sje@cup.hp.com>
479
480         * Makefile.am: Add ACLOCAL_AMFLAGS.
481         * configure.in: Change macro call order.
482         * Makefile.in: Regnerate.
483         * doc/Makefile.in: Regenerate.
484         * configure: Regenerate.
485
486 2007-04-14  Jakub Jelinek  <jakub@redhat.com>
487
488         * elflink.c (bfd_elf_final_link): Don't free symbuf for
489         non-elf input bfds.
490         (bfd_elf_size_dynamic_sections): Don't access elf_section_data
491         for non-elf input bfds.
492
493 2007-04-12  Richard Sandiford  <richard@codesourcery.com>
494
495         * elfxx-mips.c (_bfd_mips_elf_size_dynamic_sections): Don't add
496         DT_MIPS_RTLD_MAP for PIEs.
497
498 2007-04-12  Richard Sandiford  <richard@codesourcery.com>
499
500         * elfxx-mips.c (mips_elf_calculate_relocation): Set DT_TEXTREL
501         when creating a __GOTT_BASE__ or __GOTT_INDEX__ relocation
502         in a read-only section.
503         (_bfd_mips_elf_check_relocs): Likewise.
504
505 2007-04-12  Bob Wilson  <bob.wilson@acm.org>
506
507         * elf32-xtensa.c (xtensa_is_insntable_section): New.
508         (xtensa_is_proptable_section): New.
509         (elf_xtensa_discard_info_for_section): Handle "full" .xt.prop property
510         tables with 12-byte entries, as well as tables with 8-byte entries.
511         Sort the relocations before examining them.
512         (relax_property_section): Use xtensa_is_proptable_section and
513         xtensa_is_littable_section.  Rewrite code for combining table entries
514         to be more robust in case of unexpected relocations.  Do not set offset
515         of unused relocations to less than zero.
516         (xtensa_is_property_section): Use other functions instead of
517         duplicating section name comparisons.
518         (xtensa_is_littable_section): Use CONST_STRNEQ for ".gnu.linkonce.p.".
519         (xtensa_get_property_predef_flags): Use xtensa_is_insntable_section.
520
521 2007-04-12  Bob Wilson  <bob.wilson@acm.org>
522
523         * elf32-xtensa.c (elf_xtensa_gc_mark_hook): Don't follow references
524         from Xtensa property sections.
525
526 2007-04-12  Alan Modra  <amodra@bigpond.net.au>
527
528         * elf32-spu.c (needs_ovl_stub): Test that spu_elf_section_data
529         is non-NULL before dereferencing.
530
531 2007-04-11  Nathan Sidwell  <nathan@codesourcery.com>
532
533         * elf-vxworks.c (elf_vxworks_emit_relocs): Remap weakdef PLT slot
534         relocs too.
535
536 2007-04-10  Richard Henderson  <rth@redhat.com>
537
538         * elf64-alpha.c (struct alpha_elf_link_hash_table): Add relax_trip.
539         (elf64_alpha_size_got_sections): Remove unused something_changed local.
540         (elf64_alpha_size_plt_section): Return void.
541         (elf64_alpha_size_rela_got_section): Likewise.
542         (elf64_alpha_relax_section): Only regenerate got+plt if the
543         relax_trip counter has changed.
544
545 2007-04-09  Daniel Jacobowitz  <dan@codesourcery.com>
546
547         * Makefile.am (bfdver.h): Do not generate doc/bfdver.texi.
548         * doc/Makefile.am (DOCFILES): Add bfdver.texi.
549         (bfdver.texi): New rule.
550         * Makefile.in, doc/Makefile.in: Regenerated.
551
552 2007-04-03  Matt Thomas  <matt@netbsd.org>
553
554         * elf32-vax.c (elf_vax_relocate_section): Do not emit a PCREL reloc
555         in a shared object if it is not in a CODE section or if it is against
556         a section symbol.  This allows DWARF2 to use pcrel format.
557
558 2007-04-05  H.J. Lu  <hongjiu.lu@intel.com>
559
560         PR ld/4304
561         * elflink.c (bfd_elf_final_link): Call einfo callback in
562         bfd_link_info instead of _bfd_error_handler for DT_TEXTREL
563         warning.
564
565 2007-04-05  Alan Modra  <amodra@bigpond.net.au>
566
567         * elf32-spu.c (spu_elf_output_symbol_hook): New function.
568         (elf_backend_link_output_symbol_hook): Define.
569
570 2007-04-02  Nick Clifton  <nickc@redhat.com>
571
572         PR binutils/4292
573         * bfd.c (bfd_fprintf_vma): Do not print addresses of 32-bit
574         targets as 64-bit values, even if running on a 64-bit host.
575         * coffgen.c (coff_print_symbol): Likewise.
576
577 2007-03-29  Nick Clifton  <nickc@redhat.com>
578
579         PR binutils/4110
580         * elf.c (IS_VALID_GROUP_SECTION_HEADER): New macro.
581         (setup_group): Use it.  Report corrupt group section headers.
582         (bfd_section_from_shdr): Use new macro.  Replace constant 4 with
583         GRP_ENTRY_SIZE.  Cope with NULLs in the group section table.
584         (elf_fake_section): Replace constant 4 with GRP_ENTRY_SIZE.
585
586 2007-03-29  Alan Modra  <amodra@bigpond.net.au>
587
588         PR ld/4267
589         * elflink.c (evaluate_complex_relocation_symbols): Use bfd_vma
590         for rel->r_info values.
591         (bfd_elf_perform_complex_relocation): Likewise.
592         * elf32-ppc.c (allocate_dynrelocs): Set plt.offset to -1 for
593         unused entries.  Don't clear plt.plist in loop.
594
595 2007-03-28  Richard Sandiford  <richard@codesourcery.com>
596
597         * elfxx-sparc.h (_bfd_sparc_elf_link_hash_table): Remove append_rela.
598         * elfxx-sparc.c (sparc_elf_append_rela_64, sparc_elf_append_rela_32):
599         Merge into...
600         (sparc_elf_append_rela): ...this new function.
601         (SPARC_ELF_APPEND_RELA): Delete.
602         (_bfd_sparc_elf_link_hash_table_create): Don't initialize
603         the deleted append_rela field.
604         (_bfd_sparc_elf_relocate_section): Use sparc_elf_append_rela
605         instead of SPARC_ELF_APPEND_RELA.
606         (_bfd_sparc_elf_finish_dynamic_symbol): Likewise.  Use the
607         elf_size_info structure to find the size of a RELA entry and
608         the associated swap-out function.
609         (sparc64_finish_dyn, sparc64_finish_dyn): Merge into...
610         (sparc_finish_dyn): ...this new function.
611         (_bfd_sparc_elf_finish_dynamic_sections): Update calls accordingly.
612
613 2007-03-28  Richard Sandiford  <richard@codesourcery.com>
614             Phil Edwards  <phil@codesourcery.com>
615
616         * doc/bfd.texinfo: Put the contents after the title page rather
617         than at the end of the document.
618
619 2007-03-27  Andreas Schwab  <schwab@suse.de>
620
621         * elfxx-ia64.c (elf_backend_default_execstack): Define to 0.
622
623 2007-03-26  H.J. Lu  <hongjiu.lu@intel.com>
624
625         * configure: Regenerated.
626
627 2007-03-26  Alan Modra  <amodra@bigpond.net.au>
628
629         * elf32-spu.c (struct stubarr): Add stub_hash_table and err fields.
630         (allocate_spuear_stubs): New function.
631         (spu_elf_size_stubs): Call allocate_spuear_stubs.
632
633 2007-03-26  Alan Modra  <amodra@bigpond.net.au>
634
635         * aout-adobe.c (aout_32_bfd_reloc_name_lookup): Define.
636         * aout-arm.c (MY_bfd_reloc_name_lookup): Define.
637         (MY (bfd_reloc_name_lookup)): New function.
638         * aout-ns32k.c (MY (bfd_reloc_name_lookup)): New function.
639         * aout-target.h (NAME (aout, reloc_name_lookup)): Declare.
640         (MY_bfd_reloc_name_lookup): Define.
641         * aout-tic30.c (tic30_aout_reloc_name_lookup): New function.
642         (MY_bfd_reloc_name_lookup): Define.
643         * aoutx.h (NAME (aout, reloc_type_lookup)): Don't declare.
644         (NAME (aout, reloc_name_lookup)): New function.
645         * bout.c (b_out_bfd_reloc_name_lookup): New function.
646         * coff-alpha.c (alpha_bfd_reloc_name_lookup): New function.
647         (_bfd_ecoff_bfd_reloc_name_lookup): Define.
648         * coff-arm.c (coff_arm_reloc_name_lookup): New function.
649         (coff_bfd_reloc_name_lookup): Define.
650         * coff-i386.c (coff_bfd_reloc_name_lookup): Define.
651         (coff_i386_reloc_name_lookup): New function.
652         * coff-i860.c (coff_i860_reloc_name_lookup): New function.
653         (coff_bfd_reloc_name_lookup): Define.
654         * coff-i960.c (coff_i960_reloc_name_lookup): New function.
655         (coff_bfd_reloc_name_lookup): Define.
656         * coff-m68k.c (m68k_reloc_name_lookup): New function.
657         (coff_bfd_reloc_name_lookup): Define.
658         * coff-maxq.c (maxq_reloc_name_lookup): New function.
659         (coff_bfd_reloc_name_lookup): Define.
660         * coff-mcore.c (mcore_coff_reloc_name_lookup): New function.
661         (coff_bfd_reloc_name_lookup): Define.
662         * coff-mips.c (mips_bfd_reloc_name_lookup): New function.
663         (_bfd_ecoff_bfd_reloc_name_lookup): Define.
664         * coff-ppc.c (ppc_coff_reloc_name_lookup): New function.
665         (coff_bfd_reloc_name_lookup): Define.
666         * coff-rs6000.c (coff_bfd_reloc_name_lookup): Define.
667         (_bfd_xcoff_reloc_name_lookup): New function.
668         (rs6000coff_vec, pmac_xcoff_vec): Init new field.
669         * coff-sh.c (coff_bfd_reloc_name_lookup): Define.
670         (sh_coff_reloc_name_lookup): New function.
671         * coff-sparc.c (coff_sparc_reloc_name_lookup): New function.
672         (coff_bfd_reloc_name_lookup): Define.
673         * coff-tic30.c (coff_bfd_reloc_name_lookup): Define.
674         (tic30_coff_reloc_name_lookup): New function.
675         * coff-tic4x.c (coff_bfd_reloc_name_lookup): Define.
676         (tic4x_coff_reloc_name_lookup): New function.
677         * coff-tic54x.c (coff_bfd_reloc_name_lookup): Define.
678         (tic54x_coff_reloc_name_lookup): New function.
679         * coff-x86_64.c (coff_bfd_reloc_name_lookup): Define.
680         (coff_amd64_reloc_name_lookup): New function.
681         * coff-z80.c (coff_z80_reloc_name_lookup): New function.
682         (coff_bfd_reloc_name_lookup): Define.
683         * coff-z8k.c (coff_z8k_reloc_name_lookup): New function.
684         (coff_bfd_reloc_name_lookup): Define.
685         * coff64-rs6000.c (coff_bfd_reloc_name_lookup): Define.
686         (xcoff64_reloc_name_lookup): New function.
687         (rs6000coff64_vec, aix5coff64_vec): Init new field.
688         * coffcode.h (coff_bfd_reloc_name_lookup): Define.
689         * elf-hppa.h (elf_hppa_reloc_name_lookup): New function.
690         * elf-m10200.c (bfd_elf32_bfd_reloc_name_lookup): New function.
691         * elf-m10300.c (bfd_elf32_bfd_reloc_name_lookup): New function.
692         * elf32-arc.c (bfd_elf32_bfd_reloc_name_lookup): New function.
693         * elf32-arm.c (elf32_arm_reloc_name_lookup): New function.
694         (bfd_elf32_bfd_reloc_name_lookup): Define.
695         * elf32-avr.c (bfd_elf32_bfd_reloc_name_lookup): New function.
696         * elf32-bfin.c (bfin_bfd_reloc_name_lookup): New function.
697         (bfd_elf32_bfd_reloc_name_lookup): Define.
698         * elf32-cr16c.c (elf_cr16c_reloc_name_lookup): New function.
699         (bfd_elf32_bfd_reloc_name_lookup): Define.
700         * elf32-cris.c (cris_reloc_name_lookup): New function.
701         (bfd_elf32_bfd_reloc_name_lookup): Define.
702         * elf32-crx.c (elf_crx_reloc_name_lookup): New function.
703         (bfd_elf32_bfd_reloc_name_lookup): Define.
704         * elf32-d10v.c (bfd_elf32_bfd_reloc_name_lookup): New function.
705         * elf32-d30v.c (bfd_elf32_bfd_reloc_name_lookup): New function.
706         * elf32-dlx.c (elf32_dlx_reloc_name_lookup): New function.
707         (bfd_elf32_bfd_reloc_name_lookup): Define.
708         * elf32-fr30.c (fr30_reloc_name_lookup): New function.
709         (bfd_elf32_bfd_reloc_name_lookup): Define.
710         * elf32-frv.c (frv_reloc_name_lookup): New function.
711         (bfd_elf32_bfd_reloc_name_lookup): Define.
712         * elf32-gen.c (bfd_elf32_bfd_reloc_name_lookup): Define.
713         * elf32-h8300.c (elf32_h8_reloc_name_lookup): New function.
714         (bfd_elf32_bfd_reloc_name_lookup): Define.
715         * elf32-hppa.c (bfd_elf32_bfd_reloc_name_lookup): Define.
716         * elf32-i370.c (i370_elf_reloc_name_lookup): New function.
717         (bfd_elf32_bfd_reloc_name_lookup): Define.
718         * elf32-i386.c (elf_i386_reloc_name_lookup): New function.
719         (bfd_elf32_bfd_reloc_name_lookup): Define.
720         * elf32-i860.c (elf32_i860_reloc_name_lookup): New function.
721         (bfd_elf32_bfd_reloc_name_lookup): Define.
722         * elf32-i960.c (elf32_i960_reloc_name_lookup): New function.
723         (bfd_elf32_bfd_reloc_name_lookup): Define.
724         * elf32-ip2k.c (ip2k_reloc_name_lookup): New function.
725         (bfd_elf32_bfd_reloc_name_lookup): Define.
726         * elf32-iq2000.c (iq2000_reloc_name_lookup): New function.
727         (bfd_elf32_bfd_reloc_name_lookup): Define.
728         * elf32-m32c.c (m32c_reloc_name_lookup): New function.
729         (bfd_elf32_bfd_reloc_name_lookup): Define.
730         * elf32-m32r.c (bfd_elf32_bfd_reloc_name_lookup): New function.
731         * elf32-m68hc11.c (bfd_elf32_bfd_reloc_name_lookup): New function.
732         * elf32-m68hc12.c (bfd_elf32_bfd_reloc_name_lookup): New function.
733         * elf32-m68k.c (reloc_name_lookup): New function.
734         (bfd_elf32_bfd_reloc_name_lookup): Define.
735         * elf32-m88k.c (bfd_elf32_bfd_reloc_name_lookup): Define.
736         * elf32-mcore.c (mcore_elf_reloc_name_lookup): New function.
737         (bfd_elf32_bfd_reloc_name_lookup): Define.
738         * elf32-mep.c (mep_reloc_name_lookup): New function.
739         (bfd_elf32_bfd_reloc_name_lookup): Define.
740         * elf32-mips.c (bfd_elf32_bfd_reloc_name_lookup): New function.
741         (mips_vxworks_bfd_reloc_name_lookup): Likewise.
742         (bfd_elf32_bfd_reloc_name_lookup): Define.
743         * elf32-msp430.c (bfd_elf32_bfd_reloc_name_lookup): New function.
744         * elf32-mt.c (mt_reloc_name_lookup): New function.
745         (bfd_elf32_bfd_reloc_name_lookup): Define.
746         * elf32-openrisc.c (openrisc_reloc_name_lookup): New function.
747         (bfd_elf32_bfd_reloc_name_lookup): Define.
748         * elf32-or32.c (bfd_elf32_bfd_reloc_name_lookup): New function.
749         * elf32-pj.c (pj_elf_reloc_name_lookup): New function.
750         (bfd_elf32_bfd_reloc_name_lookup): Define.
751         * elf32-ppc.c (ppc_elf_reloc_name_lookup): New function.
752         (bfd_elf32_bfd_reloc_name_lookup): Define.
753         * elf32-s390.c (elf_s390_reloc_name_lookup): New function.
754         (bfd_elf32_bfd_reloc_name_lookup): Define.
755         * elf32-score.c (elf32_score_reloc_name_lookup): New function.
756         (bfd_elf32_bfd_reloc_name_lookup): Define.
757         * elf32-sh.c (sh_elf_reloc_name_lookup): New function.
758         (bfd_elf32_bfd_reloc_name_lookup): Define.
759         * elf32-sparc.c (bfd_elf32_bfd_reloc_name_lookup): Define.
760         * elf32-spu.c (spu_elf_reloc_name_lookup): New function.
761         (bfd_elf32_bfd_reloc_name_lookup): Define.
762         * elf32-v850.c (v850_elf_reloc_name_lookup): New function.
763         (bfd_elf32_bfd_reloc_name_lookup): Define.
764         * elf32-vax.c (reloc_name_lookup): New function.
765         (bfd_elf32_bfd_reloc_name_lookup): Define.
766         * elf32-xc16x.c (xc16x_reloc_name_lookup): New function.
767         (bfd_elf32_bfd_reloc_name_lookup): Define.
768         * elf32-xstormy16.c (xstormy16_reloc_name_lookup): New function.
769         (bfd_elf32_bfd_reloc_name_lookup): Define.
770         * elf32-xtensa.c (elf_xtensa_reloc_name_lookup): New function.
771         (bfd_elf32_bfd_reloc_name_lookup): Define.
772         * elf64-alpha.c (elf64_alpha_bfd_reloc_name_lookup): New function.
773         (bfd_elf64_bfd_reloc_name_lookup): Define.
774         * elf64-gen.c (bfd_elf64_bfd_reloc_name_lookup): Define.
775         * elf64-hppa.c (bfd_elf64_bfd_reloc_name_lookup): Define.
776         * elf64-mips.c (bfd_elf64_bfd_reloc_name_lookup): New function.
777         * elf64-mmix.c (bfd_elf64_bfd_reloc_name_lookup): New function.
778         * elf64-ppc.c (ppc64_elf_reloc_name_lookup): New function.
779         (bfd_elf64_bfd_reloc_name_lookup): Define.
780         * elf64-s390.c (elf_s390_reloc_name_lookup): New function.
781         (bfd_elf64_bfd_reloc_name_lookup): Define.
782         * elf64-sh64.c (sh_elf64_reloc_name_lookup): New function.
783         (bfd_elf64_bfd_reloc_name_lookup): Define.
784         * elf64-sparc.c (bfd_elf64_bfd_reloc_name_lookup): Define.
785         * elf64-x86-64.c (elf64_x86_64_reloc_name_lookup): New function.
786         (bfd_elf64_bfd_reloc_name_lookup): Define.
787         * elfn32-mips.c (bfd_elf32_bfd_reloc_name_lookup): New function.
788         * elfxx-ia64.c (elfNN_ia64_reloc_name_lookup): New function.
789         (bfd_elfNN_bfd_reloc_name_lookup): Define.
790         * elfxx-sparc.c (_bfd_sparc_elf_reloc_name_lookup): New function.
791         * elfxx-sparc.h (_bfd_sparc_elf_reloc_name_lookup): Declare.
792         * i386msdos.c (msdos_bfd_reloc_name_lookup): Define.
793         * i386os9k.c (aout_32_bfd_reloc_name_lookup): Define.
794         * ieee.c (ieee_bfd_reloc_name_lookup): Define.
795         * libaout.h (NAME (aout, reloc_name_lookup)): Declare.
796         * libbfd-in.h (_bfd_norelocs_bfd_reloc_name_lookup): Declare.
797         * mipsbsd.c (MY_bfd_reloc_name_lookup): Define.
798         (MY(reloc_type_lookup)): Rename from MY(reloc_howto_type_lookup).
799         (MY(reloc_name_lookup)): New function.
800         * nlm-target.h (nlm_bfd_reloc_name_lookup): Define.
801         * oasys.c (oasys_bfd_reloc_name_lookup): Define.
802         * pdp11.c (NAME (aout, reloc_name_lookup)): New function.
803         * pe-mips.c (coff_mips_reloc_name_lookup): New function.
804         (coff_bfd_reloc_name_lookup): Define.
805         * reloc.c (bfd_reloc_name_lookup): New function.
806         * riscix.c (riscix_reloc_name_lookup): New function.
807         (MY_bfd_reloc_name_lookup): Define.
808         * som.c (som_bfd_reloc_name_lookup): New function.
809         * targets.c (struct bfd_target): Add reloc_name_lookup.
810         (BFD_JUMP_TABLE_RELOCS): Add NAME##_bfd_reloc_name_lookup.
811         * versados.c (versados_bfd_reloc_name_lookup): Define.
812         * vms.c (vms_bfd_reloc_name_lookup): New function.
813         * bfd-in2.h: Regenerate.
814         * libbfd.h: Regenerate.
815
816 2007-03-26  Thiemo Seufer  <ths@mips.com>
817
818         PR ld/4208
819         * elfxx-mips.c (mips_elf_next_relocation): Don't signal an error if no
820         matching relocation is found.
821         (_bfd_mips_elf_relocate_section): Only warn about missing relocations.
822
823 2007-03-23  H.J. Lu  <hongjiu.lu@intel.com>
824
825         * configure: Regenerated.
826
827 2007-03-23  Joseph Myers  <joseph@codesourcery.com>
828
829         * configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
830         * configure: Regenerate.
831
832 2007-03-23  Alan Modra  <amodra@bigpond.net.au>
833
834         * elf32-spu.c (spu_stub_name): Don't put input section in stub name.
835         Remove input_sec param.  Adjust all calls.
836         (write_one_stub): Adjust stub symbol.
837         (needs_ovl_stub): New function, extracted from..
838         (spu_elf_size_stubs): ..here.
839         (spu_elf_relocate_section): Use needs_ovl_stub.
840
841 2007-03-22  Joseph Myers  <joseph@codesourcery.com>
842
843         * Makefile.am (bfdver.h): Only set VERSION_PACKAGE in bfdver.texi
844         if nonempty.
845         * configure.in (REPORT_BUGS_TO): Do not use "URL:" prefix.
846         * Makefile.in, configure, doc/Makefile.in: Regenerate.
847
848 2007-03-22  H.J. Lu  <hongjiu.lu@intel.com>
849
850         PR ld/4210
851         * peXXigen.c (_bfd_XXi_swap_aouthdr_out): Use the virtual
852         address and virtual size of the last section for the image
853         size.
854
855 2007-03-22  H.J. Lu  <hongjiu.lu@intel.com>
856
857         PR ld/4007
858         * elf.c (assign_file_positions_for_load_sections): Check if
859         all sections are in the segment.
860
861 2007-03-20  H.J. Lu  <hongjiu.lu@intel.com>
862
863         PR ld/4208
864         * elfxx-mips.c (_bfd_mips_elf_relocate_section): Report missing
865         matching LO16 relocation for HI16 relocation.
866
867 2007-03-20  Paul Brook  <paul@codesourcery.com>
868
869         * bfd-in.h (bfd_elf32_arm_set_target_relocs): Update prototype.
870         * bfd-in2.h: Regenerate.
871         * elf32-arm.c (elf32_arm_link_hash_table): Add pic_veneer.
872         (record_arm_to_thumb_glue): Use globals->pic_veneer.
873         (elf32_arm_create_thumb_stub): Ditto.
874         (bfd_elf32_arm_set_target_relocs): Set globals->pic_veneer.
875
876 2007-03-18  Mark Shinwell  <shinwell@codesourcery.com>
877
878         * bfd-in.h (bfd_elf32_arm_set_target_relocs): Add "bfd *"
879         argument and extra last argument.
880         * bfd-in2.h: Regenerate.
881         * elf32-arm.c (elf32_arm_obj_tdata): Add no_enum_size_warning
882         member.
883         (bfd_elf32_arm_set_target_relocs): Add "bfd *" argument and
884         extra last argument.  Set no_enum_size_warning appropriately.
885         (elf32_arm_merge_eabi_attributes): Improve enum sizes
886         diagnostic, suppressing it when no_enum_size_warning dictates.
887
888 2007-03-20  Nick Clifton  <nickc@redhat.com>
889
890         PR binutils/3535
891         * elf.c (copy_private_bfd_data): Widen the scope of Solaris
892         specific conditions that need the program headers to be
893         rewritten.
894
895 2007-03-19  H.J. Lu  <hongjiu.lu@intel.com>
896
897         * peXXigen.c (_bfd_XXi_swap_aouthdr_in): Store Magic,
898         MajorLinkerVersion, MinorLinkerVersion, SizeOfCode,
899         SizeOfInitializedData, SizeOfUninitializedData,
900         AddressOfEntryPoint, BaseOfCode and BaseOfData in internal
901         extra PE a.out header.
902         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Defined as 0x10b if not defined.
903         (IMAGE_NT_OPTIONAL_HDR64_MAGIC): Defined as 0x20b if not
904         defined.
905         (IMAGE_NT_OPTIONAL_HDRROM_MAGIC): Defined as 0x107 if not
906         defined.
907         (_bfd_XX_print_private_bfd_data_common): Also print Magic,
908         MajorLinkerVersion, MinorLinkerVersion, SizeOfCode,
909         SizeOfInitializedData, SizeOfUninitializedData,
910         AddressOfEntryPoint, BaseOfCode and BaseOfData from internal
911         extra PE a.out header.
912
913 2007-03-18  H.J. Lu  <hongjiu.lu@intel.com>
914
915         * targets.c (_bfd_target_vector): Add bfd_efi_app_x86_64_vec
916         only if BFD64 is defined.
917
918 2007-03-17  Alan Modra  <amodra@bigpond.net.au>
919
920         * elf32-spu.c (spu_elf_size_stubs): Always use an overlay stub
921         on setjmp calls.
922
923 2007-03-15  H.J. Lu  <hongjiu.lu@intel.com>
924
925         * doc/Makefile.in: Regenerated.
926
927 2007-03-15  H.J. Lu  <hongjiu.lu@intel.com>
928
929         * Makefile.am (bfdver.h): Substitute report_bugs_to.  Also
930         create doc/bfdver.texi.
931         * Makefile.in: Regenerated.
932
933         * configure.in (--with-bugurl): New option.
934         * configure: Regenerated.
935
936         * version.h (REPORT_BUGS_TO): New.
937
938 2007-03-13  H.J. Lu  <hongjiu.lu@intel.com>
939
940         PR binutils/3826
941         * elf-bfd.h (elf_backend_data): Add elf_osabi.
942         (_bfd_elf_set_osabi): New.
943
944         * elf.c (_bfd_elf_set_osabi): New.
945
946         * elf32-hppa.c (elf32_hppa_post_process_headers): Removed.
947         (elf_backend_post_process_headers): Defined with
948         _bfd_elf_set_osabi.
949         (ELF_OSABI): Properly defined for each target.
950
951         * elf32-i370.c (i370_elf_post_process_headers): Removed.
952         (ELF_OSABI): Defined.
953         (elf_backend_post_process_headers): Defined with
954         _bfd_elf_set_osabi.
955
956         * elf32-i386.c (ELF_OSABI): Defined to ELFOSABI_FREEBSD for
957         freebsd.
958         (elf_i386_post_process_headers): Set EI_OSABI with elf_osabi.
959
960         * elf32-msp430.c (elf32_msp430_post_process_headers): Removed.
961         (ELF_OSABI): Defined.
962         (elf_backend_post_process_headers): Defined with
963         _bfd_elf_set_osabi.
964
965         * elf64-alpha.c (ELF_OSABI): Defined to ELFOSABI_FREEBSD for
966         freebsd.
967         (elf64_alpha_fbsd_post_process_headers): Set EI_OSABI with
968         elf_osabi.
969
970         * elf64-hppa.c (elf64_hppa_post_process_headers): Set EI_OSABI
971         with elf_osabi.
972         (ELF_OSABI): Properly defined for each target.
973         (elf_backend_post_process_headers): Defined with
974         _bfd_elf_set_osabi for Linux.
975
976         * elf64-sparc.c (elf64_sparc_fbsd_post_process_headers): Removed.
977         (ELF_OSABI): Defined to ELFOSABI_FREEBSD for freebsd.
978         (elf_backend_post_process_headers): Defined with
979         _bfd_elf_set_osabi.
980
981         * elf64-x86-64.c (elf64_x86_64_fbsd_post_process_headers): Removed.
982         (ELF_OSABI): Defined to ELFOSABI_FREEBSD for freebsd.
983         (elf_backend_post_process_headers): Defined with
984         _bfd_elf_set_osabi.
985
986         * elfcode.h (elf_object_p): Match the ELFOSABI_NONE ELF target
987         with any ELF target of the compatible machine for which we do not
988         have a specific backend.
989
990         * elfxx-ia64.c (elfNN_hpux_post_process_headers): Set EI_OSABI
991         with elf_osabi.
992
993         * elfxx-target.h (ELF_OSABI): Default to ELFOSABI_NONE.
994         (elfNN_bed): Initialize elf_osabi with ELF_OSABI.
995
996 2007-03-08  Alan Modra  <amodra@bigpond.net.au>
997
998         * elf32-v850.c (v850_elf_link_output_symbol_hook): Clean out
999         V850_OTHER_* bits.
1000
1001 2007-03-08  Alan Modra  <amodra@bigpond.net.au>
1002
1003         * Makefile.am (BFD64_BACKENDS): Add efi-app-x86_64.lo.
1004         (BFD64_BACKENDS_CFILES): Add efi-app-x86_64.c.
1005         Run "make dep-am".
1006         * Makefile.in: Regenerate.
1007         * po/SRC-POTFILES.in: Regenerate.
1008
1009 2007-03-07  H.J. Lu  <hongjiu.lu@intel.com>
1010
1011         * config.bfd (x86_64-*-freebsd*): Add bfd_efi_app_x86_64_vec.
1012         (x86_64-*-kfreebsd*-gnu): Likewise.
1013         (x86_64-*-netbsd*): Likewise.
1014         (x86_64-*-openbsd*): Likewise.
1015         (x86_64-*-linux-*): Likewise.
1016
1017         * configure.in: Support bfd_efi_app_x86_64_vec.
1018         * configure: Regenerated.
1019
1020         * efi-app-x86_64.c: New file.
1021
1022         * targets.c (bfd_efi_app_x86_64_vec): New.
1023         (_bfd_target_vector): Add bfd_efi_app_x86_64_vec.
1024
1025 2007-03-07  Kai Tietz   <kai.tietz@onevision.com>
1026
1027         * reloc.c (bfd_generic_get_relocated_section_contents): Remove
1028         const for type reloc_howto_type.
1029
1030 2007-03-07  Alan Modra  <amodra@bigpond.net.au>
1031
1032         PR 3958
1033         * elf-bfd.h (RELOC_FOR_GLOBAL_SYMBOL): No error on relocatable link.
1034         (elf_discarded_section): Move..
1035         * bfd-in.h: ..to here.
1036         * bfd-in2.h: Regenerate.
1037         * elflink.c (elf_link_input_bfd): Don't zap relocs against symbols
1038         from discarded sections before relocate_section has done its job.
1039         * reloc.c (bfd_generic_get_relocated_section_contents): Handle
1040         relocs against symbols from discarded sections.
1041         * elf-hppa.h (elf_hppa_howto_table): Set size.  Set dst_mask on
1042         SECREL32.
1043         (elf_hppa_relocate_section): Handle relocatable link after setting
1044         sec, sym, h etc. for final link.  Squash error messages for
1045         relocatable link.  Clear section contents for relocs against
1046         symbols in discarded sections, and zero reloc.  Remove existing
1047         zero r_symndx code.
1048         * elf-m10200.c (mn10200_elf_relocate_section): Likewise.
1049         * elf-m10300.c (mn10300_elf_relocate_section): Likewise.
1050         * elf32-arm.c (elf32_arm_relocate_section): Likewise.
1051         * elf32-avr.c (elf32_avr_relocate_section): Likewise.
1052         * elf32-bfin.c (bfinfdpic_relocate_section): Likewise.
1053         (bfin_relocate_section): Likewise.
1054         * elf32-cr16c.c (elf32_cr16c_relocate_section): Likewise.
1055         * elf32-cris.c (cris_elf_relocate_section): Likewise.
1056         * elf32-crx.c (elf32_crx_relocate_section): Likewise.
1057         * elf32-d10v.c (elf32_d10v_relocate_section): Likewise.
1058         * elf32-fr30.c (fr30_elf_relocate_section): Likewise.
1059         * elf32-frv.c (elf32_frv_relocate_section): Likewise.
1060         * elf32-h8300.c (elf32_h8_relocate_section): Likewise.
1061         * elf32-hppa.c (elf32_hppa_relocate_section): Likewise.
1062         * elf32-i370.c (i370_elf_relocate_section): Likewise.
1063         * elf32-i386.c (elf_i386_relocate_section): Likewise.
1064         * elf32-i860.c (elf32_i860_relocate_section): Likewise.
1065         * elf32-ip2k.c (ip2k_elf_relocate_section): Likewise.
1066         * elf32-iq2000.c (iq2000_elf_relocate_section): Likewise.
1067         * elf32-m32c.c (m32c_elf_relocate_section): Likewise.
1068         * elf32-m32r.c (m32r_elf_relocate_section): Likewise.
1069         * elf32-m68hc1x.c (elf32_m68hc11_check_relocs): Likewise.
1070         * elf32-m68k.c (elf_m68k_relocate_section): Likewise.
1071         * elf32-mcore.c (mcore_elf_relocate_section): Likewise.
1072         * elf32-mep.c (mep_elf_relocate_section): Likewise.
1073         * elf32-msp430.c (elf32_msp430_relocate_section): Likewise.
1074         * elf32-mt.c (mt_elf_relocate_section): Likewise.
1075         * elf32-openrisc.c (openrisc_elf_relocate_section): Likewise.
1076         * elf32-ppc.c (ppc_elf_relocate_section): Likewise.
1077         * elf32-s390.c (elf_s390_relocate_section): Likewise.
1078         * elf32-score.c (_bfd_score_elf_relocate_section): Likewise.
1079         * elf32-sh.c (sh_elf_relocate_section): Likewise.
1080         * elf32-spu.c (spu_elf_relocate_section): Likewise.
1081         * elf32-v850.c (v850_elf_relocate_section): Likewise.
1082         * elf32-vax.c (elf_vax_relocate_section): Likewise.
1083         * elf32-xc16x.c (elf32_xc16x_relocate_section): Likewise.
1084         * elf32-xstormy16.c (xstormy16_elf_relocate_section): Likewise.
1085         * elf32-xtensa.c (elf_xtensa_relocate_section): Likewise.
1086         * elf64-alpha.c (elf64_alpha_relocate_section_r): Likewise.
1087         (elf64_alpha_relocate_section): Likewise.
1088         * elf64-mmix.c (mmix_elf_relocate_section): Likewise.
1089         * elf64-ppc.c (ppc64_elf_relocate_section): Likewise.
1090         * elf64-s390.c (elf_s390_relocate_section): Likewise.
1091         * elf64-sh64.c (sh_elf64_relocate_section): Likewise.
1092         * elf64-x86-64.c (elf64_x86_64_relocate_section): Likewise.
1093         * elfxx-ia64.c (elfNN_ia64_relocate_section): Likewise.
1094         * elfxx-mips.c (_bfd_mips_elf_relocate_section): Likewise.
1095         * elfxx-sparc.c (_bfd_sparc_elf_relocate_section): Likewise.
1096
1097         * elf32-arm.c (elf32_arm_relocate_section): Always adjust section
1098         symbols for relocatable link.  Don't use always-zero st_value.
1099         (elf_backend_rela_normal): Don't define.
1100         * elf32-bfin.c (bfinfdpic_relocate_section): Use
1101         RELOC_FOR_GLOBAL_SYMBOL.
1102         * elf32-frv.c (elf32_frv_relocate_section): Likewise.
1103         * elf32-d10v.c (elf32_d10v_relocate_section): Combine SEC_MERGE
1104         section symbol adjustments with same for relocatable link.
1105         * elf32-i386.c (elf_i386_relocate_section): Likewise.
1106         * elf32-m68hc1x.c (m68hc11_get_relocation_value): Move..
1107         (elf32_m68hc11_check_relocs): ..to here.
1108         * elf32-score.c (score_elf_final_link_relocate): Remove zero
1109         r_symndx code.
1110         * elfxx-mips.c (mips_elf_calculate_relocation): Likewise.
1111
1112 2007-03-07  Alan Modra  <amodra@bigpond.net.au>
1113
1114         PR 4144
1115         * elf.c (assign_file_positions_for_load_sections): Don't
1116         adjust p_memsz for !SEC_LOAD section vma modulo page size.
1117         Instead, use the same lma based adjustment for SEC_LOAD
1118         sections.
1119
1120 2007-03-01  Bob Wilson  <bob.wilson@acm.org>
1121
1122         * elf32-xtensa.c (analyze_relocations): Zero src_count if not relaxing.
1123         (find_relaxable_sections): Do not increment src_count for unknown
1124         opcodes.  Decode only once instead of calling is_l32r_relocation.
1125         (compute_text_actions): Remove unused no_insn_move flag.  Assert that
1126         src_next matches src_count in relax_info.
1127
1128 2007-03-01  Joseph Myers  <joseph@codesourcery.com>
1129
1130         * Makefile.am (bfdver.h): Use "." not " " between version number
1131         and date.
1132         * Makefile.in: Regenerate.
1133         * configure.in (PKGVERSION): Default to "(GNU Binutils) ".
1134         * configure: Regenerate.
1135
1136 2007-02-28  Nathan Sidwell  <nathan@codesourcery.com>
1137
1138         * config.bfd (sh-*-uclinux, sh[12]-*-uclinux): New stanza.
1139
1140 2007-02-27  Alan Modra  <amodra@bigpond.net.au>
1141
1142         * elf32-spu.h (struct _ovl_stream): Make "start" and "end" const.
1143         * elf32-spu.c (ovl_mgr_pread): Add const to casts.
1144
1145 2007-02-23  Carlos O'Donell  <carlos@codesourcery.com>
1146
1147         * dwarf2.c (_bfd_dwarf2_find_nearest_line): Assume 32-bit
1148         DWARF even with 64-bit addresses.
1149         (_bfd_dwarf2_find_nearest_line): Likewise.
1150
1151 2007-02-23  Nick Clifton  <nickc@redhat.com>
1152
1153         PR binutils/3535
1154         * elf.c (copy_private_bfd_data): Always rewrite the program
1155         headers when a Solaris interpreter segment is involved.
1156
1157 2007-02-22  Paul Brook  <paul@codesourcery.com>
1158
1159         * elflink.c (gc_mark_hook_fn): Remove.
1160         (_bfd_elf_gc_mark): Rename gc_mark_hook_fn to elf_gc_mark_hook_fn.
1161         (bfd_elf_gc_sections): Ditto.  Call gc_mark_extra_sections.
1162         * elf-bfd.h (elf_gc_mark_hook_fn): Define.
1163         (elf_backend_data): Add gc_mark_extra_sections.
1164         * elfxx-target.h (elf_backend_gc_mark_extra_sections): Provide default
1165         definition.
1166         (elfNN_bed): Add elf_backend_gc_mark_extra_sections.
1167         * elf32-arm.c (elf32_arm_gc_mark_extra_sections): New function.
1168         (elf_backend_gc_mark_extra_sections): Define.
1169
1170 2007-02-21  Nick Clifton  <nickc@redhat.com>
1171
1172         * elf.c (_bfd_elf_map_sections_to_segments): If the
1173         override_segment_assignment callback is defined then call it.
1174
1175 2007-02-21  Alan Modra  <amodra@bigpond.net.au>
1176
1177         * elf32-spu.c (spu_elf_size_stubs): Correct order of warning args.
1178
1179 2007-02-19  Thiemo Seufer  <ths@mips.com>
1180
1181         * elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data): Remove
1182         translation marker from untranslatable strings.
1183
1184 2007-02-19  Alan Modra  <amodra@bigpond.net.au>
1185
1186         * elf-bfd.h (struct elf_backend_data): Add default_execstack.
1187         * elflink.c (bfd_elf_size_dynamic_sections): Heed default_execstack.
1188         * elfxx-target.h (elf_backend_default_execstack): Define to 1.
1189         (elfNN_bed): Init new field.
1190         * elf64-ppc.c (elf_backend_default_execstack): Define to 0.
1191
1192 2007-02-17  Mark Mitchell  <mark@codesourcery.com>
1193             Nathan Sidwell  <nathan@codesourcery.com>
1194             Vladimir Prus  <vladimir@codesourcery.com
1195             Joseph Myers  <joseph@codesourcery.com>
1196
1197         * configure.in (--with-pkgversion): New option.
1198         * configure: Regenerate.
1199         * Makefile.am (bfdver.h): Substitute for @bfd_version_package@.
1200         * Makefile.in: Regenerate.
1201         * version.h (BFD_VERSION_STRING): Define using
1202         @bfd_version_package@.
1203
1204 2007-02-16  Carlos O'Donell  <carlos@codesourcery.com>
1205
1206         * elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data):
1207         Print EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT
1208         and EF_MIPS_UCODE.
1209
1210 2007-02-15  Alan Modra  <amodra@bigpond.net.au>
1211
1212         * libbfd-in.h (_bfd_norelocs_get_reloc_upper_bound): Don't define,
1213         declare.
1214         (_bfd_norelocs_canonicalize_reloc): Likewise.
1215         * libbfd.h: Regenerate.
1216         * libbfd.c (_bfd_norelocs_get_reloc_upper_bound): New function.
1217         (_bfd_norelocs_canonicalize_reloc): Likewise.
1218         * binary.c (binary_bfd_reloc_type_lookup): Don't define.
1219         (binary_get_reloc_upper_bound, binary_canonicalize_reloc): Likewise.
1220         (binary_vec): Use _bfd_norelocs in BFD_JUMP_TABLE_RELOCS.
1221         * ihex.c: Similarly.
1222         * mach-o-target.c: Similarly.
1223         * mach-o.c: Similarly.
1224         * mmo.c: Similarly.
1225         * pef.c: Similarly.
1226         * ppcboot.c: Similarly.
1227         * srec.c: Similarly.
1228         * xsym.c: Similarly.
1229
1230 2007-02-14  H.J. Lu  <hongjiu.lu@intel.com>
1231
1232         PR ld/3953
1233         * elflink.c (_bfd_elf_add_default_symbol): Check warning symbol
1234         when adding default symbol.
1235
1236 2007-02-13  Alan Modra  <amodra@bigpond.net.au>
1237
1238         * elf64-ppc.c (create_linkage_sections): Use section ".branch_lt"
1239         for branch lookup table.
1240
1241 2007-02-12  Alan Modra  <amodra@bigpond.net.au>
1242
1243         * elf64-ppc.c (create_linkage_sections): Don't create
1244         .rela.rodata.brlt for --emit-relocs.
1245         (ppc_build_one_stub): Create relocs for brlt --emit-relocs here.
1246         (ppc_size_one_stub): Count them.  Simplify test of stub type
1247         when counting stub relocs.  Set SEC_RELOC too.
1248         (ppc64_elf_size_stubs): Clear reloc_count and SEC_RELOC.
1249         (ppc64_elf_finish_dynamic_sections): Output brlt relocs.
1250
1251 2007-02-12  Alan Modra  <amodra@bigpond.net.au>
1252
1253         * elflink.c (evaluate_complex_relocation_symbols): Ignore relocs
1254         with a zero symbol index.
1255
1256 2007-02-12  Alan Modra  <amodra@bigpond.net.au>
1257
1258         * elflink.c (bfd_elf_discard_info): Tidy setting of "eh".
1259
1260 2007-02-05  Dave Brolley  <brolley@redhat.com>
1261             Stan Cox  <scox@redhat.com>
1262
1263         PR ld/3972
1264         * elflink.c (elf_link_input_bfd): Always setup finfo->internal_syms.
1265
1266 2007-02-05  Dave Brolley  <brolley@redhat.com>
1267             Richard Sandiford  <rsandifo@redhat.com>
1268             Stan Cox  <scox@redhat.com>
1269             Nick Clifton  <nickc@redhat.com>
1270             DJ Delorie  <dj@redhat.com>
1271             Frank Ch. Eigler  <fche@redhat.com>
1272             Ben Elliston  <bje@redhat.com>
1273             Richard Henderson  <rth@redhat.com>
1274
1275         * Makefile.am (ALL_MACHINES): Add cpu-mep.lo.
1276         (ALL_MACHINES_CFILES): Add CPU_MEP.c.
1277         (BFD32_BACKENDS): Add elf32-mep.lo.
1278         (BFD32_BACKENDS_CFILES): Add elf32-mep.c.
1279         (cpu-mep.lo,elf32-mep.lo): New targets.
1280         * archures.c (bfd_arch_mep): New enumerator.
1281         (bfd_mach_mep, bfd_mach_mep_h1): New macros.
1282         (bfd_mep_arch): New external variable.
1283         (bfd_archures_list): Add bfd_mep_arch.
1284         * config.bfd: Support mep-*-elf.
1285         * configure.in: Support bfd_elf32_mep_vec and bfd_elf32_mep_little_vec.
1286         * reloc.c (BFD_RELOC_MEP_*): New relocation numbers.
1287         * targets.c (bfd_elf32_mep_vec,bfd_elf32_mep_little_vec): New extern
1288         declarations.
1289         (_bfd_target_vector): Add bfd_elf32_mep_vec and
1290         bfd_elf32_mep_little_vec.
1291         * mep-relocs.pl: New file.
1292         * cpu-mep.c: New file.
1293         * elf32-mep.c: New file.
1294         * bfd-in2.h: Regenerate.
1295         * po/POTFILES.in: Regenerate.
1296         * libbfd.h: Regenerate.
1297         * Makefile.in: Regenerate.
1298         * configure: Regenerate.
1299
1300 2007-02-05  Dave Brolley  <brolley@redhat.com>
1301
1302         * elflink.c (evaluate_complex_relocation_symbols): Check for
1303         STT_SRELC for global symbols.
1304         (perform_complex_relocations): Renamed to
1305         perform_complex_relocation and now examines only one relocation.
1306         (elf_link_input_bfd): Don't call perform_complex_relocations.
1307         * elf-bfd.h (bfd_elf_perform_complex_relocation_: New prototype.
1308         * elf32-mep.c (mep_elf_howto_table): Add R_RELC.
1309         (OD,OS,OU): #undefs corrected to N, S and U repectively.
1310         (mep_reloc_type_lookup): Handle BFD_RELOC_RELC.
1311         (complex_reloc_installation_howto): Removed.
1312         (mep_info_to_howto_rela): Remove special case for r_type==0xff.
1313         (mep_elf_relocate_section): Call bfd_elf_perform_complex_relocation.
1314
1315 2007-02-05  Dave Brolley  <brolley@redhat.com>
1316             Richard Sandiford  <rsandifo@redhat.com>
1317             DJ Delorie  <dj@redhat.com>
1318             Graydon Hoare  <graydon@redhat.com>
1319             Nick Clifton  <nickc@cambridge.redhat.com>
1320             Jeff Holcomb  <jeffh@redhat.com>
1321             Frank Ch. Eigler  <fche@redhat.com>
1322
1323         * elf-bfd.h (bfd_elf_perform_complex_relocations): New prototype.
1324         * elf.c (swap_out_syms): Handle BSF_RELC and BSF_SRELC.
1325         * elfcode.h (elf_slurp_symbol_table): Handle STT_RELC and STT_SRELC.
1326         * elflink.c (set_symbolValue): New static function.
1327         (resolve_symbol): Likewise.
1328         (resolve_section): Likewise.
1329         (undefined_reference): Likewise.
1330         (eval_symbol): Likewise.
1331         (evaluate_complex_relocation_symbols): Likewise.
1332         (put_value): Likewise.
1333         (get_value): Likewise.
1334         (decode_complex_addend):
1335         (bfd_elf_perform_complex_relocation): New function.
1336         (elf_link_input_bfd): Call evaluate_complex_relocation_symbols.
1337         * reloc.c (BFD_RELOC_RELC): New relocation number.
1338         * syms.c (BSF_RELC,BSF_SRELC): New macros.
1339
1340 2007-02-05  Bob Wilson  <bob.wilson@acm.org>
1341
1342         * elf32-xtensa.c (elf_xtensa_make_sym_local): Delete.
1343         (elf_xtensa_hide_symbol, elf_backend_hide_symbol): Delete.
1344         (elf_xtensa_fix_refcounts, elf_xtensa_allocate_plt_size)
1345         (elf_xtensa_allocate_got_size): Replace these with...
1346         (elf_xtensa_allocate_dynrelocs): ...this new function.
1347         (elf_xtensa_size_dynamic_sections): Use it.
1348
1349 2007-02-05  Bob Wilson  <bob.wilson@acm.org>
1350
1351         * elf32-xtensa.c (elf_howto_table) <R_XTENSA_GLOB_DAT>
1352         <R_XTENSA_JMP_SLOT, R_XTENSA_RELATIVE, R_XTENSA_PLT, R_XTENSA_DIFF32>:
1353         Set src_mask to zero.
1354         <R_XTENSA_DIFF8, R_XTENSA_DIFF16>: Likewise.  Also fix dst_mask.
1355         <R_XTENSA_ASM_EXPAND>: Set pcrel_offset to TRUE.
1356
1357 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
1358
1359         * elf32-xtensa.c (xtensa_elf_dynamic_symbol_p): Renamed to...
1360         (elf_xtensa_dynamic_symbol_p): ...this.
1361
1362 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
1363
1364         * elf32-xtensa.c (plt_reloc_count): Move into link hash table.
1365         (struct elf_xtensa_link_hash_table): New.
1366         (elf_xtensa_hash_table): New.
1367         (elf_xtensa_link_hash_table_create): New.
1368         (elf_xtensa_check_relocs): Update plt_reloc_count references.
1369         Update arguments to add_extra_plt_sections.
1370         (elf_xtensa_create_dynamic_sections): Record new sections in the hash
1371         table.  Update for plt_reloc_count and add_extra_plt_sections.
1372         (add_extra_plt_sections, elf_xtensa_create_plt_entry): Replace dynobj
1373         argument with link info.  Update calls to elf_xtensa_get_plt_section
1374         and elf_xtensa_get_gotplt_section.
1375         (elf_xtensa_allocate_local_got_size, elf_xtensa_size_dynamic_sections)
1376         (elf_xtensa_relocate_section, elf_xtensa_finish_dynamic_sections)
1377         (elf_xtensa_discard_info_for_section, shrink_dynamic_reloc_sections)
1378         (relax_property_section): Get sections from the hash table and update
1379         function calls.
1380         (elf_xtensa_get_plt_section, elf_xtensa_get_gotplt_section): Replace
1381         dynobj argument with link info.  Get sections for first plt chunk from
1382         the hash table.
1383         (bfd_elf32_bfd_link_hash_table_create): Define.
1384
1385 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
1386
1387         * elf-bfd.h (struct elf_obj_tdata): Change symbuf type to void *.
1388         * elf.c (struct elf_symbuf_symbol, struct elf_symbuf_head): New types.
1389         (struct elf_symbol): Change first member into union.
1390         (elf_sort_elf_symbol): Compare pointers to internal syms rather than
1391         internal syms.  Only compare st_shndx fields.
1392         (elf_create_symbuf): New function.
1393         (bfd_elf_match_symbols_in_sections): Use it.  If symbufs are available
1394         for bfds, use a binary search, otherwise don't qsort symbols
1395         unnecessarily only to select which symbols are for the particular
1396         shndx.
1397
1398 2007-02-01  Nick Clifton  <nickc@redhat.com>
1399
1400         PR ld/3852
1401         * elf.c (_bfd_elf_link_hash_table_init): Initialize all the fields
1402         in the elf_link_hash_table structure.
1403
1404 2007-02-01  Alan Modra  <amodra@bigpond.net.au>
1405
1406         * elf-bfd.h (struct elf_backend_data): Add elf_backend_write_core_note.
1407         * elfxx-target.h (elf_backend_write_core_note): Define and use.
1408         * elf.c (elfcore_write_prpsinfo): Call the above.  Add support for
1409         32-bit core note on 64-bit target.
1410         (elfcore_write_prstatus): Likewise.
1411         (elfcore_write_lwpstatus): Make note_name const.
1412         (elfcore_write_prfpreg): Likewise.
1413         (elfcore_write_pstatus): Add support for 32-bit core note on 64-bit
1414         target.
1415         * elf32-ppc.c (ppc_elf_write_core_note): New function.
1416         (elf_backend_write_core_note): Define.
1417         * elf64-ppc.c (ppc64_elf_write_core_note): New function.
1418         (elf_backend_write_core_note): Define.
1419
1420 2007-01-31  H.J. Lu  <hongjiu.lu@intel.com>
1421
1422         * elf32-cris.c (INCLUDED_TARGET_FILE): Removed.
1423         (elf32_bed): Defined for elf32-us-cris.
1424
1425         * elf64-sh64.c (elf64_bed): Defined for Linux.
1426         (INCLUDED_TARGET_FILE): Removed.
1427
1428         * elfxx-target.h (elfNN_bed): Always define. Don't check
1429         INCLUDED_TARGET_FILE.
1430
1431 2007-01-31  DJ Delorie  <dj@redhat.com>
1432
1433         * elf-m10300.c (mn10300_elf_relocate_section): Clarify the warning
1434         message for dangerous relocs, special case the common user error.
1435
1436 2007-01-30  H.J. Lu  <hongjiu.lu@intel.com>
1437
1438         * elf.c (copy_elf_program_header): Start from the first section
1439         in a segment and stop when all sections in a segment are
1440         accounted for.
1441
1442 2007-01-29  Julian Brown  <julian@codesourcery.com>
1443
1444         * bfd-in2.h: Regenerate.
1445         * bfd-in.h (bfd_arm_vfp11_fix): New enum. Specify how VFP11
1446         instruction scanning should be done.
1447         (bfd_elf32_arm_init_maps, bfd_elf32_arm_vfp11_erratum_scan)
1448         (bfd_elf32_arm_vfp11_fix_veneer_locations): Add prototypes.
1449         (bfd_elf32_arm_set_target_relocs): Add vfp11 fix type argument to
1450         prototype.
1451         * elf-bfd.h (elf_backend_write_section): Add struct bfd_link_info
1452         argument.
1453         * elf32-arm.c (VFP11_ERRATUM_VENEER_SECTION_NAME)
1454         (VFP11_ERRATUM_VENEER_ENTRY_NAME): Define macros.
1455         (elf32_vfp11_erratum_type): New enum.
1456         (elf32_vfp11_erratum_list): New struct. List of veneers or jumps to
1457         veneers.
1458         (_arm_elf_section_data): Add mapsize, erratumcount, erratumlist.
1459         (elf32_arm_link_hash_table): Add vfp11_erratum_glue_size,
1460         vfp11_fix and num_vfp11_fixes fields.
1461         (elf32_arm_link_hash_table_create): Initialise vfp11_fix,
1462         vfp11_erratum_glue_size, num_vfp11_fixes fields.
1463         (VFP11_ERRATUM_VENEER_SIZE): Define. Size of an (ARM) veneer.
1464         (bfd_elf32_arm_allocate_interworking_sections): Initialise erratum
1465         glue section.
1466         (elf32_arm_section_map_add): Add an code/data mapping symbol entry
1467         to a section's map.
1468         (record_vfp11_erratum_veneer): Create a single veneer, and its
1469         associated symbols.
1470         (bfd_elf32_arm_add_glue_sections_to_bfd): Add vfp11 erratum glue.
1471         (bfd_elf32_arm_init_maps): Initialise mapping symbol table for input
1472         BFDs.
1473         (bfd_elf32_arm_set_vfp11_fix): Set the type of erratum workaround
1474         required.
1475         (bfd_arm_vfp11_pipe): Define VFP11 instruction pipes.
1476         (bfd_arm_vfp11_regno): Recode a register number from a VFP11 insn.
1477         (bfd_arm_vfp11_write_mask): Update write mask according to coded
1478         register number.
1479         (bfd_arm_vfp11_antidependency): New function.
1480         (bfd_arm_vfp11_insn_decode): Decode a VFP11 insn.
1481         (elf32_arm_compare_mapping): Declare.
1482         (bfd_elf32_arm_vfp11_erratum_scan): Scan the sections of an input
1483         BFD for potential erratum-triggering insns. Record results.
1484         (bfd_elf32_arm_vfp11_fix_veneer_locations): Find out where veneers
1485         and branches to veneers have been placed in virtual memory after
1486         layout.
1487         (bfd_elf32_arm_set_target_relocs): Set vfp11_fix field in global
1488         hash table.
1489         (elf32_arm_output_symbol_hook): Remove.
1490         (elf32_arm_write_section): Output veneers, and branches to veneers.
1491         Use maps from input sections, not output sections, for code
1492         byte-swapping.
1493         * elf32-ppc.c (ppc_elf_write_section): Add dummy link_info argument.
1494         * elf32-score.c (_bfd_score_elf_write_section): Likewise.
1495         * elfxx-mips.c (_bfd_mips_elf_write_section): Likewise.
1496         * elfxx-mips.h (_bfd_mips_elf_write_section): Likewise.
1497
1498 2007-01-27  H.J. Lu  <hongjiu.lu@intel.com>
1499
1500         * elf64-hppa.c (elf64_bed): Defined for HPUX and Linux.
1501         (INCLUDED_TARGET_FILE): Removed.
1502
1503 2007-01-27  Mike Frysinger  <vapier@gentoo.org>
1504
1505         * elf32-hppa.c (elf32_bed): Define for hpux, linux and netbsd.
1506         (INCLUDED_TARGET_FILE): Remove.
1507
1508 2007-01-25  DJ Delorie  <dj@redhat.com>
1509
1510         * elf32-m32c.c (m32c_elf_howto_table): Don't complain about
1511         R_M32C_16 or R_M32C_24 relocs.
1512
1513 2007-01-25  Nick Clifton  <nickc@redhat.com>
1514
1515         PR binutils/3874
1516         * elf32-avr.c (avr_link_hash_table): Check to make sure that the
1517         hash table was created by elf32_avr_link_hash_table_create before
1518         using it.
1519         (elf32_avr_link_hash_newfunc): New function.  Just pass the call
1520         through to _bfd_elf_link_hash_newfunc.
1521         (elf32_avr_link_hash_table_create): Use
1522         elf32_avr_link_hash_newfunc instead of
1523         _bfd_elf_link_hash_newfunc.
1524         (elf32_avr_relocate_section): Check for the hash table pointer
1525         being NULL.
1526         (elf32_avr_relax_section, avr_build_one_stub,
1527         elf32_avr_setup_params, get_local_syms, elf32_avr_size_stubs,
1528         elf32_avr_build_stubs): Likewise.
1529
1530 2007-01-16  H.J. Lu  <hongjiu.lu@intel.com>
1531
1532         PR ld/3831
1533         * elf-bfd.h (bfd_elf_link_mark_dynamic_symbol): Add an
1534         argument, Elf_Internal_Sym *.
1535
1536         * elflink.c (bfd_elf_link_mark_dynamic_symbol): Mark a data
1537         symbol dynamic if info->dynamic_data is TRUE.
1538         (bfd_elf_record_link_assignment): Updated call to
1539         bfd_elf_record_link_assignment.
1540         (_bfd_elf_merge_symbol): Likewise.  Always call
1541         bfd_elf_link_mark_dynamic_symbol.
1542
1543 2007-01-12  H.J. Lu  <hongjiu.lu@intel.com>
1544
1545         * Makefile.am (BFD_LIBS): Removed.
1546         * Makefile.in: Regenerated.
1547
1548 2007-01-11  H.J. Lu  <hongjiu.lu@intel.com>
1549
1550         PR binutils/3631
1551         * Makefile.am (OFILES): Add @bfd64_libs@.
1552         (libbfd_la_SOURCES): Remove $(BFD64_LIBS_CFILES).
1553         * Makefile.in: Regenerated.
1554
1555         * configure.in (bfd_libs): Replaced by ...
1556         (bfd64_libs): This.
1557         * configure: Regenerated.
1558
1559 2007-01-11  Nathan Sidwell  <nathan@codesourcery.com>
1560
1561         * elf.c (assign_file_positions_for_load_sections): We can
1562         require fewer phdrs than expected.
1563
1564 2007-01-08  Kazu Hirata  <kazu@codesourcery.com>
1565
1566         * archures.c (bfd_mach_cpu32_fido): Rename to bfd_mach_fido.
1567         * bfd-in2.h: Regenerate.
1568         * cpu-m68k.c (arch_info_struct): Use bfd_mach_fido instead of
1569         bfd_mach_cpu32_fido.
1570         (m68k_arch_features): Use fido_a instead of cpu32.
1571         (bfd_m68k_compatible): Reject the combination of Fido and
1572         ColdFire.  Accept the combination of CPU32 and Fido with a
1573         warning.
1574         * elf32-m68k.c (elf32_m68k_object_p,
1575         elf32_m68k_merge_private_bfd_data,
1576         elf32_m68k_print_private_bfd_data): Treat Fido as an
1577         architecture by itself.
1578
1579 2007-01-08  Kai Tietz   <kai.tietz@onevision.com>
1580
1581         * config.bfd: Renamed target x86_64-*-mingw64 to x86_64-*-mingw*.
1582
1583 2007-01-05  Jakub Jelinek  <jakub@redhat.com>
1584
1585         * texhex.c (first_phase): Don't fall through into the default
1586         case.
1587         (pass_over): Replace abort () calls with return FALSE.  Fix
1588         buffer overflow.
1589
1590 2007-01-04  Jie Zhang  <jie.zhang@analog.com>
1591
1592         * elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Don't set
1593         SEC_EXCLUDE on zero size .eh_frame.
1594
1595 For older changes see ChangeLog-2006
1596 \f
1597 Local Variables:
1598 mode: change-log
1599 left-margin: 8
1600 fill-column: 74
1601 version-control: never
1602 End: