752433e380c59fb0bef9f72d27abd62ec15917cc
[binutils-gdb.git] / bfd / ChangeLog
1 2001-08-20 Alan Modra <amodra@bigpond.net.au>
2
3 * archive.c (offsetof): Remove define.
4 * elf.c: Likewise.
5 * oasys.c: Likewise
6 * sysdep.h (offsetof): Define.
7
8 2001-08-17 Alan Modra <amodra@bigpond.net.au>
9
10 * bfd.c (bfd_get_gp_size): Return an unsigned int.
11 (bfd_set_gp_size): Make param unsigned.
12 * bfd-in2.h: Regenerate.
13 * elf32-ppc.c (ppc_elf_add_symbol_hook): Use elf_gp_size rather
14 than calling bfd_get_gp_size.
15 * elf64-alpha.c (elf64_alpha_add_symbol_hook): Likewise.
16 * elfxx-ia64.c (elfNN_ia64_add_symbol_hook): Likewise.
17
18 2001-08-17 Alan Modra <amodra@bigpond.net.au>
19
20 * linker.c (default_fill_link_order): Handle four byte fill value.
21
22 2001-08-17 Alan Modra <amodra@bigpond.net.au>
23
24 * elf64-sparc.c (sparc64_elf_output_arch_syms): Add missing
25 prototype.
26 * nlm32-alpha.c (nlm_alpha_write_external): Fix warning.
27
28 * elf64-mips.c (UNUSED_RELOC): Define.
29 (mips_elf64_howto_table_rel): Use it.
30 (mips_elf64_howto_table_rela): Here too.
31 (mips_elf64_write_relocs): Fix signed/unsigned warning.
32
33 * coffcode.h (coff_write_object_contents): Add ATTRIBUTE_UNUSED to
34 silence warning.
35 * coffgen.c (coff_print_symbol): Fix warnings.
36 (coff_find_nearest_line): Likewise.
37 * cofflink.c (_bfd_coff_link_input_bfd): Likewise.
38 * coff-alpha.c (alpha_convert_external_reloc): Likewise.
39 * format.c (bfd_check_format_matches): Likewise.
40 (bfd_set_format): Likewise.
41 * coff-ia64.c: Add missing prototypes.
42 * elf64-alpha.c (struct alpha_elf_link_hash_entry): Make addend
43 signed to silence warnings.
44 (elf64_alpha_relocate_section): Likewise.
45 (elf64_alpha_find_reloc_at_ofs): Fix warnings.
46 (elf64_alpha_add_symbol_hook): Likewise.
47 (elf64_alpha_final_link): Likewise.
48 (elf64_alpha_relax_section): Remove redundant assign to info.gotent.
49 (elf64_alpha_merge_gots): Add ATTRIBUTE_UNUSED to unused args.
50 (elf64_alpha_size_got_sections): Likewise.
51 * elfxx-ia64.c: Add missing prototypes.
52 (elfNN_ia64_relocate_section): Fix warning.
53 (elfNN_ia64_unwind_entry_compare): Make params const.
54
55 2001-08-17 Alan Modra <amodra@bigpond.net.au>
56
57 * config.bfd (targ64_selvecs): New.
58 <powerpc-*-aix* entry>: Use it here instead of ineffectual #ifdef.
59
60 * bfd-in.h (BFD_VERSION): Remove wrong comment.
61 (BFD_DEFAULT_TARGET_SIZE): New.
62 (BFD_ARCH_SIZE): Comment.
63 * configure.in (target_size): New. Set instead of target64 in
64 selvecs case statement. Set target64 from it.
65 (bfd_default_target_size): New. Set from taget_size. AC_SUBST.
66 * bfd-in2.h: Regenerate.
67 * configure: Regenerate.
68
69 2001-08-17 Alan Modra <amodra@bigpond.net.au>
70
71 * bfd.c (enum bfd_error): Add bfd_error_wrong_object_format.
72 (bfd_errmsgs): Add corresponding message.
73 * archive.c (bfd_generic_archive_p): Don't release bfd_ardata when
74 finding an archive that contains different format object files.
75 Return bfd_error_wrong_object_format for this case.
76 * format.c: Formatting fixes. s/CONST/const/.
77 (bfd_check_format_matches): Accept archives that give
78 bfd_error_wrong_object_format if no full match is found. Tidy
79 code handling matching_vector. Don't return a pointer to freed
80 memory in `matching'. Handle ambiguous matches as for partial
81 archive matches.
82 * bfd-in2.h: Regenerate.
83
84 2001-08-15 Alan Modra <amodra@bigpond.net.au>
85
86 * libieee.h (common_header_type): Add last_byte field.
87
88 * ieee.c: Add missing prototypes. Some format fixes.
89 (struct output_buffer_struct): Move for availability to prototypes.
90 (ieee_part_after): New function.
91 (ieee_slurp_debug): Use it here.
92 (ieee_seek): Pass in ieee_data_struct rather than bfd. Use
93 ieee_part_after to set last_byte to one past end of current part.
94 Update callers.
95 (ieee_pos): Pass in ieee_data_struct rather than bfd.
96 Update callers.
97 (parse_expression): Don't go beyond the end of the current part.
98 (ieee_slurp_external_symbols): Correct type passed to read_2bytes.
99 (ieee_get_symtab_upper_bound, ieee_get_symtab,
100 ieee_get_symbol_info, ieee_print_symbol, ieee_new_section_hook,
101 ieee_get_reloc_upper_bound, ieee_canonicalize_reloc, block,
102 ieee_set_section_contents, ieee_write_object_contents,
103 ieee_make_empty_symbol): Make static.
104 (ieee_archive_p): Correct comments regarding bfd_read.
105 (ieee_object_p): Similarly.
106 (ieee_mkobject): Move it. Clear output_ptr_start, output_ptr,
107 output_ptr_end, input_ptr_start, input_ptr, input_ptr_end,
108 input_bfd, output_bfd, output_buffer.
109 (do_as_repeat): Write out ieee_set_current_pc_enum value as for
110 do_with_relocs, ie. as a symbol for relocatable files.
111 (ieee_vec): Add comments showing functions referenced by macros.
112
113 2001-08-14 Nick Clifton <nickc@cambridge.redhat.com>
114
115 * aout-tic30.c: Add missing prototypes. Fix formatting.
116 * aout-ns32k.c: Add missing prototypes. Fix formatting.
117 * peXXigen.c: Add missining prototypes. Fix formatting.
118 * aout-adobe.c: Add missining prototypes. Fix formatting.
119
120 2001-08-13 Nick Clifton <nickc@cambridge.redhat.com>
121
122 * elf32-v850.c: Add missing function prototypes.
123 Fix some formatting.
124
125 * cpu-v850.c: Add missing function prototype.
126 Fix some formatting.
127
128 2001-08-11 Nick Clifton <nickc@cambridge.redhat.com>
129
130 * elf-bfd.h (struct elf_backend_data): Add new fields
131 'elf_backend_sprintf_vma' and 'elf_backend_fprintf_vma'.
132 (bfd_elf_sprintf_vma): Rename function prototype to
133 '_bfd_elf_sprintf_vma'.
134 (bfd_elf_fprintf_vma): Rename function prototype to
135 '_bfd_elf_fprintf_vma'.
136 * bfd.c (bfd_sprintf_vma): Do not invoke bfd_elf_sprintf_vma
137 directly, instead indirect via the elf_backend_data structure.
138 (bfd_fprintf_vma): Do not invoke bfd_elf_fprintf_vma directly,
139 instead indirect via the elf_backend_data structure.
140 * elf.c (bfd_elf_sprintf_vma): Rename to _bfd_elf_sprintf_vma.
141 (bfd_elf_fprintf_vma): Rename to _bfd_elf_fprintf_vma.
142 * elfxx-target.h (elf_backend_sprintf_vma): Initialise if not
143 already defined.
144 (elf_backend_fprintf_vma): Initialise if not already defined.
145 (struct elf_backend_data): Initialise the
146 elf_backend_sprintf_vma and elf_backend_fprintf_vma fields.
147
148 2001-08-10 Andreas Jaeger <aj@suse.de>
149
150 * elf64-sparc.c: Add missing prototypes.
151 * elf32-cris.c: Likewise.
152 * elf32-i370.c: Likewise.
153 * elf64-hppa.c: Likewise.
154 * elf64-s390.c: Likewise.
155
156 2001-08-10 Andreas Jaeger <aj@suse.de>
157
158 * elf64-x86-64.c (elf64_x86_64_elf_object_p): Make static.
159 Add prototypes where needed.
160
161 2001-08-10 H.J. Lu <hjl@gnu.org>
162
163 * bfd.c (bfd_sprintf_vma): Fix a typo in the last change.
164 (bfd_fprintf_vma): Likewise.
165
166 2001-08-10 H.J. Lu <hjl@gnu.org>
167
168 * bfd.c (bfd_sprintf_vma): Don't return void.
169 (bfd_fprintf_vma): Likewise.
170
171 2001-08-10 Andreas Jaeger <aj@suse.de>
172
173 * configure.in: Add -Wstrict-prototypes and -Wmissing-prototypes
174 to build warnings.
175 * configure: Regenerate.
176
177 2001-08-10 Alan Modra <amodra@bigpond.net.au>
178
179 * elf.c (bfd_elf_sprintf_vma): Add ATTRIBUTE_UNUSED to quiet
180 warning if not BFD64. Add braces so emacs auto format works.
181 (bfd_elf_fprintf_vma): Likewise.
182
183 * libxcoff.h (struct xcoff_backend_data_rec): Constify src param
184 of _xcoff_swap_ld*.
185 * coff-rs6000.c (xcoff_swap_ldhdr_in): Modify type of external
186 param to agree with libxcoff.h.
187 (xcoff_swap_ldhdr_out): Likewise.
188 (xcoff_swap_ldsym_in): Likewise.
189 (xcoff_swap_ldsym_out): Likewise.
190 (xcoff_swap_ldrel_in): Likewise.
191 (xcoff_swap_ldrel_out): Likewise.
192 (xcoff_create_csect_from_smclas): Likewise.
193 * coff64-rs6000.c: Add missing prototypes.
194 (xcoff64_swap_ldhdr_in): Modify type of external param to agree
195 with libxcoff.h.
196 (xcoff64_swap_ldhdr_out): Likewise.
197 (xcoff64_swap_ldsym_in): Likewise.
198 (xcoff64_swap_ldsym_out): Likewise.
199 (xcoff64_swap_ldrel_in): Likewise.
200 (xcoff64_swap_ldrel_out): Likewise.
201 (xcoff64_ppc_relocate_section): Make static.
202 (xcoff64_slurp_armap): Likewise.
203 (xcoff64_archive_p): Likewise.
204 (xcoff64_openr_next_archived_file): Likewise.
205 (xcoff64_sizeof_headers): Likewise.
206 (xcoff64_is_lineno_count_overflow): Likewise.
207 (xcoff64_is_reloc_count_overflow): Likewise.
208 (xcoff64_loader_symbol_offset): Likewise.
209 (xcoff64_loader_reloc_offset): Likewise.
210 * elf64-gen.c: Add missing prototypes.
211
212 2001-08-09 H.J. Lu <hjl@gnu.org>
213
214 * elf.c (bfd_elf_sprintf_vma): Check ELFCLASS64 only in BFD64.
215 (bfd_elf_fprintf_vma): Likewise.
216
217 2001-08-09 H.J. Lu <hjl@gnu.org>
218
219 * bfd-in.h (bfd_elf_sprintf_vma, bfd_elf_fprintf_vma): Moved
220 to ...
221 * elf-bfd.h: Here.
222 * bfd-in2.h: Regenerated.
223
224 2001-08-09 H.J. Lu <hjl@gnu.org>
225
226 * bfd-in.h (bfd_sprintf_vma): New prototype.
227 (bfd_fprintf_vma): Likewise.
228 (bfd_elf_sprintf_vma): Likewise.
229 (bfd_elf_fprintf_vma): Likewise.
230 (bfd_printf_vma): New. Defined with bfd_fprintf_vma.
231 * bfd-in2.h: Regenerated.
232
233 * bfd.c (bfd_sprintf_vma): New. Defined.
234 (bfd_fprintf_vma): Likewise.
235
236 * elf.c (bfd_elf_sprintf_vma): New. Defined.
237 (bfd_elf_fprintf_vma): Likewise.
238
239 2001-08-09 Alan Modra <amodra@bigpond.net.au>
240
241 * coff-rs6000.c: Add missing prototypes.
242 (xcoff_ppc_relocate_section, xcoff_is_lineno_count_overflow,
243 xcoff_is_reloc_count_overflow, xcoff_loader_symbol_offset,
244 xcoff_loader_reloc_offset): Make static.
245 * dwarf1.c: Add missing prototypes.
246 * dwarf2.c: Add missing prototypes.
247 (struct abbrev_info): Move definition.
248 (struct attr_abbrev, ABBREV_HASH_SIZE, ATTR_ALLOC_CHUNK): Likewise.
249 * elf.c: Add missing prototypes.
250 * elf32-gen.c: Likewise.
251 * elf32-i386.c: Likewise.
252 * elf32-ppc.c: Likewise.
253 (ppc_elf_sort_rela): Use PTR instead of "void *".
254 * elflink.h: Add missing prototypes. Formatting fixes.
255 * merge.c: Add missing prototypes.
256 (last4_eq): Use PTR instead of "void *".
257 (last_eq): Likewise.
258 * syms.c: Add missing prototypes.
259
260 2001-08-09 Nick Clifton <nickc@cambridge.redhat.com>
261
262 * bfd.c: Fix formatting.
263 * bfd-in2.h: Regenerate.
264
265 2001-08-09 Nick Clifton <nickc@cambridge.redhat.com>
266
267 * elf32-arc.c (R_ARC_B22_PCREL): Change 'partial_inplace' to
268 true (this target uses REL relocations) and 'pcrel_offset' to
269 false (the PC is implied, not stored in the offset).
270
271 2001-08-08 Alan Modra <amodra@bigpond.net.au>
272
273 1999-10-19 Linus Nordberg <linus@swox.se>
274 * elf-bfd.h (struct elf_backend_data): Add want_got_sym.
275 * elfxx-target.h (elf_backend_want_got_sym): Define.
276 (elfNN_bed): Add elf_backend_want_got_sym.
277 * elflink.c (_bfd_elf_create_got_section): Define
278 _GLOBAL_OFFSET_TABLE_ only if bed->want_got_sym.
279
280 2001-08-08 Alexandre Oliva <aoliva@redhat.com>
281
282 * dwarf2.c (struct dwarf2_debug): Add sec, sec_info_ptr and syms.
283 (find_rela_addend): New function.
284 (parse_comp_unit): Call it to find the abbrev offset addend.
285 (_bfd_dwarf2_find_nearest_line): Initialize and maintain the new
286 members of dwarf2_debug as debugging information is read.
287
288 2001-08-07 Nick Clifton <nickc@cambridge.redhat.com>
289
290 * coff-sh.c (sh_coff_reloc_type_lookup): Provide for sh-coff
291 targets as well as sh-pe.
292
293 2001-08-03 Ben Harris <bjh21@netbsd.org>
294
295 * elf32-arm.h (elf32_arm_final_link_relocate): Include offset of
296 reloc from start of section when computing value for R_ARM_REL32
297 reloc.
298
299 2001-08-03 Alan Modra <amodra@bigpond.net.au>
300
301 From H.J. Lu <hjl@gnu.org>
302 * elf32-i386.c (allocate_plt_and_got_and_discard_relocs): Don't
303 keep relocs for undefined syms if there are no dynamic sections in
304 executable.
305 * elf32-hppa.c (allocate_plt_and_got_and_discard_relocs): Likewise.
306
307 2001-08-02 Paul Sokolovsky <paul.sokolovsky@technologist.com>
308
309 * cofflink.c (coff_link_check_ar_symbols): also search for
310 __imp__symbol as well as _symbol.
311 * linker.c (_bfd_generic_link_add_archive_symbols): also
312 search for __imp__symbol as well as _symbol.
313
314 2001-08-01 Adam Nemet <anemet@lnxw.com>
315
316 * elf.c (elf_sort_sections): Return zero only as the last step.
317
318 2001-08-01 Nick Clifton <nickc@cambridge.redhat.com>
319
320 * config.bfd (arm-vxworks): Change name of define from VXWORKS to
321 ARM_COFF_BUGFIX.
322 (arm-epoc-pe): Define ARM_COFF_BUGFIX.
323 coff-arm.c (coff_arm_relocate_section): Replace VXWORKS with
324 ARM_COFF_BUGFIX.
325
326 2001-07-30 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
327
328 * libecoff.h (_bfd_ecoff_styp_to_sec_flags): Changed return type
329 to match corresponding bfd_coff_backend data member.
330
331 2001-07-24 Alan Modra <amodra@bigpond.net.au>
332
333 * Makefile.am: Update dependencies with "make dep-am".
334 * Makefile.in: Regenerate
335
336 2001-07-15 H.J. Lu <hjl@gnu.org>
337
338 * Makefile.am (po/SRC-POTFILES.in): Use tmp.src instead of tmp.
339 (po/BLD-POTFILES.in): Use tmp.bld instead of tmp.
340 * Makefile.in: Regenerate.
341
342 2001-07-11 H.J. Lu <hjl@gnu.org>
343
344 * elf64-alpha.c (elf64_alpha_check_relocs): Set the ALLOC|LOAD
345 flags when creating the reloc section if the ALLOC flag in the
346 source section is set.
347
348 2001-07-11 Steve Ellcey <sje@cup.hp.com>
349
350 * reloc.c (bfd_reloc_code_type): Add IA64 relocs
351 BFD_RELOC_IA64_LTOFF_FPTR32MSB and BFD_RELOC_IA64_LTOFF_FPTR32LSB
352 * bfd-in2.h: Regenerate.
353 * libbfd.h: Regenerate.
354 * elfxx-ia64.c (ia64_howto_table): Define how to handle
355 new relocations.
356 (elfNN_ia64_reloc_type_lookup): Handle new relocations.
357 (elfNN_ia64_check_relocs): Likewise.
358 (elfNN_ia64_install_value): Likewise.
359 (elfNN_ia64_relocate_section): Likewise.
360
361 2001-07-11 Jakub Jelinek <jakub@redhat.com>
362
363 * elf32-sparc.c (_bfd_sparc_elf_howto_table): Remove support for
364 R_SPARC_UA64.
365 (elf32_sparc_check_relocs): Likewise.
366 Only create .rela section for alloced sections in shared libraries.
367 (elf32_sparc_relocate_section): Likewise.
368 Remove redundant check.
369 Optimize unaligned reloc usage.
370 * elf64-sparc.c (sparc64_elf_relocate_section): Remove redundant
371 check.
372
373 2001-07-11 H.J. Lu <hjl@gnu.org>
374
375 * elf64-alpha.c (elf64_alpha_check_relocs): Only use the same
376 ALLOC|LOAD flags as the source section for debugging sections
377 when creating the reloc section.
378
379 2001-07-05 Jim Wilson <wilson@redhat.com>
380
381 * linker.c (_bfd_generic_link_add_one_symbol, case BIG): Use
382 the section of the bigger symbol.
383
384 * syms.c (bfd_is_local_label): Return false if BSF_SECTION_SYM.
385
386 2001-07-05 Nick Clifton <nickc@cambridge.redhat.com>
387
388 * peicode.h (coff_swap_scnhdr_in): For sections containing
389 uninitialised data, only set their size to s_paddr if this does
390 not reset their size to zero. MS's latest compilers will set
391 s_paddr to zero.
392
393 2001-07-04 H.J. Lu <hjl@gnu.org>
394
395 * bfd/elf32-mips.c (_bfd_mips_elf_final_write_processing):
396 Handle bfd_mach_mips4400, bfd_mach_mips4600 and
397 bfd_mach_mips5000.
398
399 2001-07-03 Mark Elbrecht <snowball3@softhome.net>
400
401 * bfd.c (bfd_get_sign_extend_vma): Support DJGPP COFF targets.
402
403 * cofflink.c (_bfd_coff_link_input_bfd): Skip section symbols from
404 sections being discarded.
405
406 2001-06-30 Alan Modra <amodra@bigpond.net.au>
407
408 * elfcore.h (elf_core_file_p): Call bfd_section_from_phdr directly
409 instead of _bfd_elfcore_section_from_phdr.
410 * elf-bfd.h (_bfd_elfcore_section_from_phdr): Remove.
411 * elf.c (_bfd_elfcore_section_from_phdr): Remove.
412 (_bfd_elfcore_make_pseudosection): Expedite tail-call.
413 (elfcore_grok_prstatus): Likewise.
414 (elfcore_grok_lwpstatus): Likewise.
415 (bfd_get_elf_phdr_upper_bound): Likewise.
416 (elfcore_make_note_pseudosection): Formatting.
417 (_bfd_elfcore_strndup): Formatting.
418 * elf32-mips.c (mips_elf_sym_is_global): Formatting.
419 (_bfd_elf32_mips_grok_prstatus): Expedite tail-call.
420
421 2001-06-29 Daniel Jacobowitz <drow@mvista.com>
422
423 * elf-bfd.h: Add prototypes for _bfd_elfcore_make_pseudosection
424 and _bfd_elfcore_strndup.
425 (struct elf_backend_data): Add elf_backend_grok_prstatus
426 and elf_backend_grok_psinfo.
427 * elf.c (_bfd_elfcore_make_pseudosection): New function.
428 (elfcore_grok_prstatus): Use it.
429 (elfcore_make_note_pseudosection): Likewise.
430 (elfcore_strndup): Rename to...
431 (_bfd_elfcore_strndup): Here, and make global.
432 (elfcore_grok_psinfo): Use _bfd_elfcore_strndup.
433 (elfcore_grok_note): Call elf_backend_grok_prstatus
434 and elf_backend_grok_psinfo if available.
435 * elf32-mips.c (_bfd_elf32_mips_grok_prstatus): New function.
436 (_bfd_elf32_mips_grok_psinfo): New function.
437 (elf_backend_grok_prstatus): Define.
438 (elf_backend_grok_psinfo): Define.
439 * elfxx-target.h (elf_backend_grok_prstatus): Default to NULL.
440 (elf_backend_grok_psinfo): Likewise.
441 (elfNN_bed): Include elf_backend_grok_prstatus and
442 elf_backend_grok_psinfo.
443
444 2001-06-29 H.J. Lu <hjl@gnu.org>
445
446 * elf32-hppa.c (elf32_hppa_finish_dynamic_sections): Check if
447 hplink->sgot is NULL before filling GOT. Check if hplink->splt
448 is NULL before filling PLT.
449
450 2001-06-29 Alan Modra <amodra@bigpond.net.au>
451
452 * elflink.h (elf_link_output_extsym): Revert 1999-04-10.
453
454 2001-06-27 Alan Modra <amodra@bigpond.net.au>
455
456 * elf32-hppa.c (elf32_hppa_check_relocs): Don't make syms dynamic
457 here..
458 (elf32_hppa_adjust_dynamic_symbol): ..nor here..
459 (allocate_plt_and_got_and_discard_relocs): .. instead do so here
460 after gc has run.
461
462 * elf32-hppa.c (RELATIVE_DYNAMIC_RELOCS): Delete.
463 (IS_ABSOLUTE_RELOC): Define.
464 (elf32_hppa_link_hash_entry): Always include reloc_entries field.
465 (hppa_link_hash_newfunc): Always init it.
466 (elf32_hppa_check_relocs): Mark symbols as ELF_LINK_NON_GOT_REF to
467 create COPY relocs only when the reloc is in a read-only section.
468 Instead, allocate space for a dynamic reloc to reference the
469 library symbol directly. Keep track of space we allocate using
470 relocs_entries.
471 (hppa_discard_copies): Delete, and move code to..
472 (allocate_plt_and_got): ..here. Rename to
473 allocate_plt_and_got_and_discard_relocs. Remove unneeded dynamic
474 relocs for non-shared link.
475 (elf32_hppa_size_dynamic_sections): Update calls to above.
476 (elf32_hppa_relocate_section): Write out the dynamic relocs used
477 in lieu of COPY relocs.
478
479 * elf32-i386.c (elf_i386_check_relocs): Don't make syms dynamic
480 here..
481 (elf_i386_adjust_dynamic_symbol): ..nor here..
482 (allocate_plt_and_got_and_discard_relocs): .. instead do so here
483 after gc has run.
484 (elf_i386_size_dynamic_sections): Fix a comment.
485 (elf_i386_relocate_section <R_386_32, R_386_PC32>): Rearrange code
486 involved in writing reloc out.
487
488 2001-06-25 Alan Modra <amodra@bigpond.net.au>
489
490 * elf32-i386.c (elf_i386_check_relocs <R_386_32, R_386_PC32>):
491 Ensure syms are dynamic if we might be emitting a reloc.
492 (allocate_plt_and_got_and_discard_relocs): Don't discard relocs
493 for undefweak or undefined syms..
494 (elf_i386_relocate_section <R_386_32, R_386_PC32>): .. and emit.
495
496 * elf32-i386.c (allocate_plt_and_got_and_discard_relocs): Discard
497 relocs without ELF_LINK_HASH_DEF_DYNAMIC set.
498 (elf_i386_relocate_section <R_386_32, R_386_PC32>): Remove
499 redundant bfd_link_hash_defined, bfd_link_hash_defweak test.
500
501 2001-06-24 H.J. Lu <hjl@gnu.org>
502
503 * cpu-i960.c (scan_960_mach): Don't modify const char *. Use
504 strncasecmp/strcasecmp instead of strncmp/strcmp.
505
506 2001-06-23 H.J. Lu <hjl@gnu.org>
507
508 * elf32-i386.c (elf_i386_relocate_section <R_386_32, R_386_PC32>):
509 Check ELF_LINK_HASH_DEF_DYNAMIC to see if a symbol is not defined
510 in the regular object file and treat the weak definition as
511 the normal one.
512
513 2001-06-23 Alan Modra <amodra@bigpond.net.au>
514
515 * elf32-i386.c (elf_i386_relocate_section <R_386_GOT32>): Tighten
516 unresolved_reloc test to exclude cases where we use "relocation"
517 before setting it to point into the .got. Reinstate fudge for
518 unresolved relocs in debugging sections.
519
520 * elf32-i386.c (elf_i386_relocate_section): Replace ugly
521 complicated tests for unresolvable relocs with a simple direct
522 scheme using "unresolved_reloc" var.
523
524 * elf32-i386.c (struct elf_i386_pcrel_relocs_copied): Rename to
525 elf_i386_dyn_relocs. Update comment.
526 (struct elf_i386_link_hash_entry): Rename pcrel_relocs_copied to
527 dyn_relocs.
528 (elf_i386_adjust_dynamic_symbol): Remove a BFD_ASSERT, change
529 others to aborts.
530 (allocate_plt_and_got_and_discard_relocs): Replace BFD_ASSERT with
531 abort.
532 (elf_i386_size_dynamic_sections): Likewise.
533 (elf_i386_finish_dynamic_symbol): Likewise.
534 (elf_i386_finish_dynamic_sections): Likewise.
535 (elf_i386_relocate_section): Likewise. Tidy R_386_GOT32 and error
536 handling code.
537
538 Avoid creating COPY relocs if possible.
539 * elf32-i386.c (elf_i386_check_relocs): Tweak condition under
540 which .got created. Mark symbols used by R_386_32 and R_386_PC32
541 relocs as ELF_LINK_NON_GOT_REF to create COPY relocs only when the
542 reloc is in a read-only section. Instead, allocate space for a
543 dynamic reloc to reference the library symbol directly. Keep
544 track of space we allocate using pcrel_relocs_copied.
545 (discard_copies): Delete, and move code to ..
546 (allocate_plt_and_got): ..here. Rename to
547 allocate_plt_and_got_and_discard_relocs. Remove unneeded dynamic
548 relocs for non-shared link.
549 (elf_i386_size_dynamic_sections): Update calls to above functions.
550 (elf_i386_relocate_section): Write out the dynamic relocs. Add
551 more ugly logic to avoid "unresolvable relocation" error. Use
552 htab shortcut in place of elf_hash_table macro.
553 (elf_i386_finish_dynamic_sections): Allow that dynamic .got may
554 not always be created now.
555
556 2001-06-20 Bo Thorsen <bo@suse.co.uk>
557
558 * elf64-x86-64.c (elf64_x86_64_relocate_section): Fix linking of
559 shared libraries.
560
561 2001-06-18 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
562
563 * configure.host (mips64-*-linux): Reformat.
564
565 2001-06-21 Alan Modra <amodra@bigpond.net.au>
566
567 * elf32-hppa.c (elf32_hppa_size_dynamic_sections): Always
568 allocate local .got space. Use shortcuts from hash table for .got
569 and .plt rather than comparing section names.
570 (elf32_hppa_check_relocs): Use local_plt_refcounts var rather than
571 adjusting index into local_got_refcounts to document what we are
572 really doing.
573 (elf32_hppa_relocate_section): Similarly for local_plt_offsets.
574 Tidy .got and .plt error checking.
575
576 2001-06-20 Catherine Moore <clm@redhat.com>
577
578 * elf-bfd.h (struct elf_backend_data):
579 elf_backend_emit_relocs: New field: Function for emitting
580 relocs.
581 elf_backend_count_relocs: New field: Function for determining
582 the number of relocs to be emitted.
583 * elfxx-target.h: Provide default (NULL) values for
584 elf_backend_emit_relocs and elf_backend_count_relocs.
585 * elflink.h (elf_link_size_reloc_section): Make the hash table
586 big enough to hold the relocs counted by either reloc_count or
587 o->reloc_count.
588 (elf_bfd_final_link) emit_relocs: New boolean, set if relocs
589 should be emitted, either because of a command line option
590 stored in the info structure or because the target provides a
591 special reloc emitting function.
592 If the target provides a reloc counting function use it,
593 unless performing a relocatable link or emitting all relocs.
594 Also set the SEC_RELOC flag on any output section which will
595 contain relocs.
596 (elf_link_input_bfd): emit_relocs: New boolean, set if relocs
597 should be emitted, either because of a command line option
598 stored in the info structure or because the target provides a
599 special reloc emitting function.
600 If the target provides a reloc emitting function, use it,
601 unless performing a relocatable link or emitting all relocs.
602
603 2001-06-20 H.J. Lu <hjl@gnu.org>
604
605 * elf32-i386.c (elf_i386_size_dynamic_sections): Always
606 allocate local .got space.
607
608 2001-06-19 Andreas Jaeger <aj@suse.de>
609
610 * elf64-x86-64.c (elf64_x86_64_relocate_section): Fix creation of
611 dynamic symbols.
612
613 2001-06-18 Hans-Peter Nilsson <hp@axis.com>
614
615 * elflink.h (struct elf_assign_sym_version_info): Remove member
616 export_dynamic. All users changed to use info member.
617 NAME(bfd_elf,size_dynamic_sections)): Remove parameter
618 export_dynamic, instead use member in parameter info.
619 * bfd-in.h (bfd_elf32_size_dynamic_sections,
620 bfd_elf64_size_dynamic_sections): Update prototype.
621 * bfd-in2.h: Regenerate.
622
623 2001-06-18 H.J. Lu <hjl@gnu.org>
624
625 * elflink.h (elf_info_failed): Add a new field, verdefs.
626 (NAME(bfd_elf,size_dynamic_sections): Pass verdefs to
627 elf_export_symbol.
628 (elf_export_symbol): Check eif->verdefs to decide if a symbol
629 should be exported.
630
631 2001-06-17 H.J. Lu <hjl@gnu.org>
632
633 * elf32-mips.c (mips_elf_link_hash_entry): Add a new field,
634 readonly_reloc, to record if a relocation in the .rel.dyn
635 section is against a read-only section.
636 (mips_elf_link_hash_newfunc): Initialize the readonly_reloc
637 field to false.
638 (_bfd_mips_elf_check_relocs): Record if there is a relocation
639 in the .rel.dyn section against a read-only section by setting
640 DF_TEXTREL or readonly_reloc.
641 (_bfd_mips_elf_copy_indirect_symbol): Copy readonly_reloc if
642 it is true.
643 (_bfd_mips_elf_adjust_dynamic_symbol): Record DF_TEXTREL if
644 there is a relocation in the .rel.dyn section against a
645 read-only section.
646 (_bfd_mips_elf_size_dynamic_sections): Set DT_TEXTREL if
647 DF_TEXTREL is set.
648
649 2001-06-12 Nick Clifton <nickc@cambridge.redhat.com>
650
651 * coffcode.h (styp_flags_to_sec_flags): Change to a boolean
652 function. Move flagword result into parameter list. Remove
653 comment about setting bfd_error_handler to intercept failure
654 results.
655 * coffgen.c (make_a_section_from_file): Examine result of
656 calling bfd_coff_styp_to_sec_flags and pass a failure back to
657 caller.
658 * ecoff.h (styp_flags_to_sec_flags): Change to a boolean
659 function. Move flagword result into parameter list.
660 * libcoff.h: Regenerate.
661 * libecoff.h: Regenerate.
662
663 2001-06-13 Nick Clifton <nickc@cambridge.redhat.com>
664
665 * aoutx.h (adjust_z_magic): Only pad the tesxt section if the data
666 section is going to follow it.
667
668 2001-06-12 Catherine Moore <clm@redhat.com>
669
670 * elflink.h (elf_gc_propagate_vtable_entries): Replace FILE_ALIGN
671 with the file_align entry from elf_backend_data.
672 (elf_gc_smash_unused_vtentry_relocs): Likewise.
673 (elf_gc_record_vtentry): Likewise.
674
675 2001-06-10 Alan Modra <amodra@bigpond.net.au>
676
677 * elflink.h: Whitespace changes.
678 (elf_link_read_relocs_from_section): Use "unsigned int" iterator
679 rather than "unsigned char".
680 (elf_link_output_relocs): Likewise.
681 (elf_link_input_bfd): Likewise.
682 (elf_reloc_link_order): LIkewise.
683 * elf.c: s/CONST/const/. Whitespace changes.
684 * elf32-mips.c: Formatting fix.
685
686 * Makefile.am (SOURCE_HFILES): Include xcoff-target.h, remove xcoff.h.
687 * Makefile.in: Regenerate.
688 * po/Make-in: Remove trailing tab.
689
690 2001-06-09 Philip Blundell <philb@gnu.org>
691
692 * elf32-arm.h (elf32_arm_plt0_entry): Correct error in last
693 change.
694 (elf32_arm_plt_entry): Likewise.
695
696 2001-06-08 H.J. Lu <hjl@gnu.org>
697
698 * elf.c (swap_out_syms): Keep names for global section symbols.
699
700 2001-06-07 H.J. Lu <hjl@gnu.org>
701
702 * config.bfd: Put back ecoff for Linux/mips. Firmwares on some
703 MIPS-based machines need it.
704
705 2001-06-07 H.J. Lu <hjl@gnu.org>
706
707 * elf32-mips.c (_bfd_mips_elf_object_p): Set the bad symtab
708 for SGI only.
709
710 * config.bfd: Remove ecoff from Linux/mips.
711
712 2001-06-07 Andreas Jaeger <aj@suse.de>
713
714 * elf64-x86-64.c (elf64_x86_64_finish_dynamic_symbol): Add an
715 assertion.
716 (elf64_x86_64_check_relocs): Fix VTENTRY relocation; set an
717 alignment of 8 for .rela sections; handle further relocations.
718
719 2001-06-06 Christian Groessler <cpg@aladdin.de>
720
721 * coff-z8k.c: Fix formatting.
722 Fix howtos: howto->size was always 1.
723
724 2001-06-05 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
725
726 * configure.host (mips64*-*-linux*): Define.
727
728 2001-06-05 Alan Modra <amodra@bigpond.net.au>
729
730 * elf32-i386.c (elf_i386_discard_copies): Rename to
731 discard_copies, and use elf_link_hash_entry arg rather than
732 elf_i386_link_hash_entry.
733 (elf_i386_link_hash_traverse): Delete.
734 (elf_i386_size_dynamic_sections): Adjust call to discard_copies.
735 Tidy sizing of dynamic sections.
736 (elf_i386_check_relocs <R_386_32, R_386_PC32>): Reference count
737 possible .plt entries.
738 (elf_i386_gc_sweep_hook): Likewise.
739 (elf_i386_adjust_dynamic_symbol): Discard .plt entries for
740 everything with plt.refcount <= 0.
741
742 * elf32-i386.c (elf_i386_check_relocs): Don't allocate .got and
743 .relgot space here.
744 (elf_i386_gc_sweep_hook): ..and no need to deallocate here..
745 (elf_i386_adjust_dynamic_symbol): ..and don't allocate .plt and
746 .rel.plt here..
747 (allocate_plt_and_got): ..instead do it all here. New function.
748 (elf_i386_size_dynamic_sections): Allocate local .got space and
749 call allocate_plt_and_got. No need to zap .relgot if not dynamic.
750 (bfd_elf32_bfd_final_link): Delete. (ie. use regular final link
751 rather than gc variety).
752 (WILL_CALL_FINISH_DYNAMIC_SYMBOL): Define.
753 (elf_i386_relocate_section): Use it here and correct handling of
754 R_386_GOT32. Provide section and offset for "unresolvable
755 relocation" error message.
756 (elf_i386_finish_dynamic_symbol): Correct handling of R_386_GOT32.
757
758 * elf32-i386.c (struct elf_i386_link_hash_table): Add sgot,
759 sgotplt, srelgot, splt, srelplt, sdynbss, srelbss fields.
760 (elf_i386_link_hash_table_create): Init them.
761 (create_got_section): New function.
762 (elf_i386_create_dynamic_sections): New function.
763 (elf_backend_create_dynamic_sections): Set to above.
764 (elf_i386_check_relocs): Use shortcuts from hash table rather than
765 calling bfd_get_section_by_name.
766 (elf_i386_gc_sweep_hook): Likewise.
767 (elf_i386_adjust_dynamic_symbol): Likewise.
768 (elf_i386_size_dynamic_sections): Likewise.
769 (elf_i386_relocate_section): Likewise.
770 (elf_i386_finish_dynamic_sections): Likewise.
771
772 * elf32-hppa.c (allocate_plt_and_got): Skip indirect and warning syms.
773
774 2001-06-02 H.J. Lu <hjl@gnu.org>
775
776 * elf32-hppa.c (elf32_hppa_object_p): Check ELFOSABI_LINUX
777 and ELFOSABI_HPUX.
778 * elf64-hppa.c (elf64_hppa_object_p): Likewise.
779
780 2001-06-02 H.J. Lu <hjl@gnu.org>
781
782 * aout-cris.c (MACHTYPE_OK): New. Defined.
783
784 2001-06-02 Hans-Peter Nilsson <hp@axis.com>
785
786 * section.c (_bfd_strip_section_from_output): Handle NULL
787 output_section.
788
789 2001-06-02 H.J. Lu <hjl@gnu.org>
790
791 * config.bfd (powerpc-*-aix*, powerpc-*-beos*, rs6000-*-*): Add
792 rs6000coff64_vec only if BFD64 is defined.
793 (powerpc64-*-aix*): Enable only if BFD64 is defined.
794
795 2001-06-02 H.J. Lu <hjl@gnu.org>
796
797 * coff-ia64.c (ia64coff_object_p): Rewrite with
798 external_PEI_DOS_hdr and external_PEI_IMAGE_hdr.
799
800 2001-06-01 Andreas Jaeger <aj@suse.de>
801
802 * elf64-x86-64.c (elf64_x86_64_relocate_section): Add PC8
803 relocation, small reformatting.
804
805 2001-05-29 Andreas Jaeger <aj@suse.de>
806
807 * elf64-x86-64.c (elf64_x86_64_check_relocs): Handle R_X86_64_64.
808 (elf64_x86_64_relocate_section): Likewise.
809
810 2001-05-30 Alan Modra <amodra@one.net.au>
811
812 * elf32-hppa.c (elf32_hppa_check_relocs): Don't NEED_PLT for
813 millicode. Don't allocate .got and .rela.got space here..
814 (elf32_hppa_gc_sweep_hook): ..and no need to deallocate here..
815 (elf32_hppa_adjust_dynamic_symbol): ..and don't allocate .plt and
816 .rela.plt here..
817 (hppa_handle_PIC_calls): ..nor here..
818 (allocate_plt_and_got): ..instead do it all here. New function.
819 (elf32_hppa_size_dynamic_sections): Allocate local .got space and
820 call allocate_plt_and_got. No need to zap .got if not dynamic.
821 (elf32_hppa_final_link): Call regular bfd_final_link instead of
822 gc_common_final_link.
823 (WILL_CALL_FINISH_DYNAMIC_SYMBOL): Define.
824 (elf32_hppa_relocate_section): Use it here.
825 (elf32_hppa_finish_dynamic_symbol): Remove superfluous test of
826 dynamic_sections_created.
827 (hppa_type_of_stub): Don't LONG_BRANCH_VIA_PLT if millicode sym.
828
829 2001-05-28 Andreas Jaeger <aj@suse.de>
830
831 * elf64-x86-64.c (elf64_86_64_size_info): Remove, we can use the
832 generic version since we want a hashsize of 4.
833 (elf_backend_size_info): Likewise.
834
835 2001-05-28 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
836
837 * elflink.h (elf_link_size_reloc_section): Use bfd_zmalloc instead of
838 a zeroing loop.
839 (elf_link_output_relocs): Handle MIPS ELF64 relocations correctly.
840 (elf_link_input_bfd): Likewise.
841 (elf_reloc_link_order): Likewise.
842 (elf_finish_pointer_linker_section): Typo. Handle MIPS ELF64
843 relocations correctly.
844
845 2001-05-28 Nicolas Pitre <nico@cam.org>
846
847 * elf32-arm.h: fix PLT generation for big endian ARM
848
849 2001-05-28 Alan Modra <amodra@one.net.au>
850
851 * elf32-hppa.c (elf32_hppa_relocate_section): Set up .plt entries
852 for symbols forced local that need plabels.
853 (elf32_hppa_adjust_dynamic_symbol): Don't allocate space in
854 .plt.rela for local syms if non-shared.
855 (hppa_build_one_stub): Mask lsb of plt.offset.
856 (elf32_hppa_finish_dynamic_symbol): Abort if lsb of plt.offset set.
857 (clobber_millicode_symbols): Correct comment.
858 (elf32_hppa_relocate_section): Likewise.
859 (elf32_hppa_finish_dynamic_symbol): Likewise.
860
861 2001-05-28 Jeff Sturm <jsturm@one-point.com>
862
863 * reloc.c: Add BFD_RELOC_SPARC_UA16 and BFD_RELOC_SPARC_UA64.
864 * bfd-in2.h: Regenerate.
865 * libbfd.h: Regenerate.
866 * elf32-sparc.c: Enable BFD_RELOC_SPARC_UA16, BFD_RELOC_SPARC_UA32
867 and BFD_RELOC_SPARC_UA64 mapping
868 * elf64-sparc.c: Likewise.
869
870 2001-05-25 H.J. Lu <hjl@gnu.org>
871
872 * Makefile.am (BFD32_BACKENDS): Remove coff-pmac.lo.
873 (BFD32_BACKENDS_CFILES): Remove coff-pmac.c.
874 (coff-rs6000.lo): Remove the old dependency.
875 * Makefile.in: Rebuild.
876
877 * configure.in (pmac_xcoff_vec): Replace coff-pmac.lo with
878 coff-rs6000.lo.
879
880 2001-05-25 H.J. Lu <hjl@gnu.org>
881
882 * coff-rs6000.c (rs6000coff_vec): Use rs6000coff_core_p,
883 rs6000coff_core_file_matches_executable_p,
884 rs6000coff_core_file_failing_command and
885 rs6000coff_core_file_failing_signal only if AIX_CORE is
886 defined.
887 (pmac_xcoff_vec): Likewise.
888 * coff64-rs6000.c (rs6000coff64_vec): Likewise.
889
890 2001-05-25 Timothy Wall <twall@redhat.com>
891
892 * elfxx-ia64.c (allocate_dynrel_entries): Don't allocate an entry
893 for __GLOB_DATA_PTR on AIX5. Clean up some relocation bugs.
894
895 2001-05-25 H.J. Lu <hjl@gnu.org>
896
897 * bfd-in2.h: Regenerated.
898 * libcoff.h: Likewise.
899
900 2001-05-25 Alan Modra <amodra@one.net.au>
901
902 * elf32-hppa.c (elf32_hppa_relocate_section): Don't allow
903 undefined millicode syms in shared libs.
904 (hppa_build_one_stub): Turn BFD_ASSERTs into aborts.
905 (elf32_hppa_check_relocs): Likewise.
906 (elf32_hppa_adjust_dynamic_symbol): Likewise.
907 (elf32_hppa_size_dynamic_sections): Likewise.
908 (elf32_hppa_relocate_section): Likewise.
909 (elf32_hppa_finish_dynamic_symbol): Likewise.
910 (elf32_hppa_finish_dynamic_sections): Likewise.
911
912 2001-05-24 Tom Rix <trix@redhat.com>
913
914 * Makefile.am coff-pmac bfd now defined in coff-rs6000.c
915 xcoff-target.h not used to define rs6000 or ppc bfd.
916 * Makefile.in same
917
918 * bfd-in.h : (struct lineno_cache_entry) promote element "offset"
919 to 64 bit.
920
921 * coff-rs6000.c : Many changes for 64 bit support. Move common
922 32/64 code to xcofflink.c. Explictly define the rs6000coff_vec
923 and pmac_xcoff_vec
924
925 * coff64-rs6000.c : Many changes for 64 bit support. 64 bit
926 linker now supported. Explictly define the rs6000coff64_vec.
927
928 * coffcode.h : (coff_set_arch_mach_hook) xcoff 64 bit support
929 (coff_print_aux) same
930 (coff_write_object_contents) same
931 (coff_slurp_line_table) same
932
933 * coffgen.c : (coff_fix_symbol_name) formatting
934 (coff_mangle_symbols) xcoff 64 bit support
935 (coff_write_symbol) same
936 (coff_write_alien_symbol) same
937 (coff_write_native_symbol) same
938 (coff_write_symbols) same
939 (coff_get_symbol_info) same
940 (bfd_coff_get_syment) same
941 (coff_print_symbol) same
942
943 * config.bfd : add powerpc64-*-aix* target
944
945 * libcoff-in.h : formatting
946
947 * libcoff.h : move xcoff extern declarations to libxcoff.h
948
949 * libxcoff.h : New file
950
951 * xcofflink.c : Many changes for xcoff64 support. Move common
952 structures to include/coff/xcoff.h. Move specific structure to
953 backends coff-rs6000.c and coff64-rs6000.c. Use new backend
954 functions, defined in libxcoff.h, to isolate 32/64 dependencies.
955
956 (bfd_xcoff_size_dynamic_sections) : special __rtinit symbol for
957 aix4.2+ -binitfini.
958
959 (xcoff_build_ldsyms) : handle special __rtinit symbol.
960
961 2001-05-23 Alexandre Oliva <aoliva@redhat.com>
962
963 * elf64-sparc.c (sparc64_elf_slurp_reloc_table): Fix typo
964 s/ENTIRES/ENTRIES/.
965
966 2001-05-23 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
967
968 * reloc.c (bfd_reloc_code_real): Add MIPS ELF64 relocations.
969 * libbfd.h: Regenerate.
970 * bfd-in2.h: Regenerate.
971
972 * aoutx.h (aout_@var{size}_machine_type): Add MIPS r12k support.
973 * archures.c (bfd_mach_mips12000): Define.
974 * cpu-mips.c (arch_info_struct): Add MIPS r12k support.
975 * elf32-mips.c (_bfd_mips_elf_final_write_processing): Add MIPS r12k
976 support.
977 (_bfd_mips_elf_size_dynamic_sections): Use official bfd typedef.
978 * bfd-in2.h: Regenerate.
979 * elfxx-target.h: Do not redefine bfd_elfNN_bfd_make_debug_symbol.
980
981 2001-05-23 kaz Kojima <kkojima@rr.iij4u.or.jp>
982
983 * elf32-sh.c (elf_sh_plt0_entry_be, elf_sh_plt0_entry,
984 elf_sh_plt_entry_be, elf_sh_plt_entry, elf_sh_pic_plt_entry_be,
985 elf_sh_pic_plt_entry): New PLT code, that does not use r2, since
986 that is used by GCC.
987
988 2001-05-23 Nick Clifton <nickc@cambridge.redhat.com>
989
990 * elf-bfd.h (NUM_SHDR_ENTRIES): New macro: compute the number
991 of entries in a structured section.
992 * elf.c: Use new macro.
993 * elf32-i386.c: Use new macro.
994 * elf32-mips.c: Use new macro.
995 * elf64-alpha.c: Use new macro.
996 * elf64-sparc.c: Use new macro.
997 * elfcode.h: Use new macro.
998 * elflink.h: Use new macro.
999
1000 2001-05-23 Nick Clifton <nickc@cambridge.redhat.com>
1001
1002 * bfdint.texi: Replace -oformat with --oformat.
1003
1004 2001-05-21 Andreas Jaeger <aj@suse.de>
1005
1006 * dwarf2.c (decode_line_info): Fix error message.
1007 (read_abbrevs): Fix test for offset as suggested by Alan Modra and
1008 adjust error message.
1009
1010 2001-05-18 H.J. Lu <hjl@gnu.org>
1011
1012 * elflink.h (elf_link_add_object_symbols): Revert the last
1013 change.
1014
1015 2001-05-17 Alan Modra <amodra@one.net.au>
1016
1017 * elf32-hppa.c (clobber_millicode_symbols): Temporarily set
1018 ELF_LINK_FORCED_LOCAL to suit 2001-04-30 change.
1019 (hppa_build_one_stub): Add an assert to check plt.offset.
1020
1021 2001-05-17 H.J. Lu <hjl@gnu.org>
1022
1023 * elflink.h (NAME(bfd_elf,size_dynamic_sections)): Set the
1024 version definition to basename of the output filename.
1025
1026 2001-05-17 H.J. Lu <hjl@gnu.org>
1027
1028 * elflink.h (elf_link_add_object_symbols): Set DT_NEEDED to
1029 basename of the bfd filename.
1030
1031 2001-05-16 Alan Modra <amodra@one.net.au>
1032
1033 * section.c (asection): Add linker_has_input field.
1034 (STD_SECTION): Adjust initialization to suit.
1035 * ecoff.c (bfd_debug_section): Likewise.
1036 * bfd-in2.h: Regenerate.
1037
1038 2001-05-15 Alexandre Oliva <aoliva@redhat.com>
1039
1040 * elf-m10300.c (mn10300_elf_relax_section): Don't relax
1041 negative 32-bit operands to 16 operands when the operand is
1042 going to be zero-extended by the modified opcode.
1043
1044 2001-05-12 Peter Targett <peter.targett@arccores.com>
1045
1046 * cpu-arc.c (arch_info_struct): Add entry 'base' representing old
1047 name for 'arc5' core versions.
1048 (bfd_arc_arch): Make bfd_mach_arc_6 default.
1049
1050 * elf32-arc.c (arc_elf_object_p): Make E_ARC_MACH_ARC6 default
1051 architecture.
1052 (arc_elf_final_write_processing): Make bfd_mach_arc_6 default.
1053
1054 2001-05-11 Jakub Jelinek <jakub@redhat.com>
1055
1056 * elfxx-ia64.c (is_unwind_section_name): Consider linkonce unwind
1057 sections as well.
1058 (elfNN_ia64_final_write_processing): Map .gnu.linkonce.ia64unw.FOO
1059 to .gnu.linkonce.t.FOO text section.
1060
1061 2001-05-11 Jakub Jelinek <jakub@redhat.com>
1062
1063 * merge.c (struct sec_merge_hash_entry): Add u.entsize and u.suffix
1064 fields, change sec into secinfo.
1065 (struct sec_merge_info): Add chain, remove last fields.
1066 (struct sec_merge_sec_info): Add next, sec, psecinfo fields.
1067 (sec_merge_hash_lookup): If lookup could not use a string only
1068 because it has bad alignment, mark the old string for deletion.
1069 (sec_merge_add): Add secinfo argument. Don't compute entry's
1070 position, instead record the section.
1071 (sec_merge_emit): Update for the sec into secinfo change in
1072 struct sec_merge_hash_entry.
1073 (_bfd_merge_section): Only record the section for merging, defer
1074 putting strings into the hash table.
1075 (cmplengthentry, last4_eq, last_eq, record_section, merge_strings,
1076 _bfd_merge_sections): New functions.
1077 (_bfd_merged_section_offset): Update for the sec_merge_hash_entry
1078 changes.
1079 * libbfd-in.h (_bfd_merge_sections): Add prototype.
1080 (_bfd_nolink_bfd_merge_sections): Define.
1081 * libbfd.h: Likewise.
1082 (bfd_generic_merge_sections): Add prototype.
1083 * targets.c (BFD_JUMP_TABLE_LINK): Add _bfd_merge_sections.
1084 (struct bfd_target): Likewise.
1085 * bfd.c (bfd_merge_sections): Define.
1086 * bfd-in2.h: Rebuilt.
1087 * elf.c (_bfd_elf_merge_sections): New function.
1088 * elf-bfd.h (_bfd_elf_merge_sections): Add prototype.
1089 * elfxx-target.h (bfd_elfNN_bfd_merge_sections): Define.
1090 * reloc.c (bfd_generic_merge_sections): New function.
1091 * vms.c (vms_bfd_merge_sections): New function.
1092 * aout-adobe.c (aout_32_bfd_merge_sections): Define.
1093 * aout-target.h (MY_bfd_merge_sections): Define.
1094 * aout-tic30.c (MY_bfd_merge_sections): Define.
1095 * binary.c (binary_bfd_merge_sections): Define.
1096 * bout.c (b_out_bfd_merge_sections): Define.
1097 * coff-alpha.c (_bfd_ecoff_bfd_merge_sections): Define.
1098 * coffcode.c (coff_bfd_merge_sections): Define.
1099 * coff-mips.c (_bfd_ecoff_bfd_merge_sections): Define.
1100 * i386msdos.c (msdos_bfd_merge_sections): Define.
1101 * i386os9k.c (os9k_bfd_merge_sections): Define.
1102 * ieee.c (ieee_bfd_merge_sections): Define.
1103 * ihex.c (ihex_bfd_merge_sections): Define.
1104 * nlm-target.h (nlm_bfd_merge_sections): Define.
1105 * oasys.c (oasys_bfd_merge_sections): Define.
1106 * ppcboot.c (ppcboot_bfd_merge_sections): Define.
1107 * som.c (som_bfd_merge_sections): Define.
1108 * srec.c (srec_bfd_merge_sections): Define.
1109 * tekhex.c (tekhex_bfd_merge_sections): Define.
1110 * versados.c (versados_bfd_merge_sections): Define.
1111 * xcoff-target.h (_bfd_xcoff_bfd_merge_sections): Define.
1112
1113 2001-05-11 Nick Clifton <nickc@cambridge.redhat.com>
1114
1115 * dwarf1.c (_bfd_dwarf1_find_nearest_line): Change type of 'addr'
1116 to be unsigned long, in order to match its use.
1117
1118 2001-05-10 H.J. Lu <hjl@gnu.org>
1119
1120 * linker.c (_bfd_generic_link_add_one_symbol): Check loop on
1121 indirect symbols.
1122
1123 2001-05-09 H.J. Lu <hjl@gnu.org>
1124
1125 * elflink.h (elf_link_add_object_symbols): Fix a typo. Allocate
1126 versymhdr->sh_size bytes for extversym instead of hdr->sh_size.
1127 Remove the unused veriable `dynver'.
1128
1129 2001-05-08 Ian Lance Taylor <ian@zembu.com>
1130
1131 * coff-i386.c (coff_i386_reloc): Don't dump core if output_bfd is
1132 NULL or is not COFF.
1133 (coff_i386_rtype_to_howto): Don't dump core if output section
1134 owner is not COFF.
1135
1136 2001-05-07 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
1137
1138 * ecoff.c (bfd_debug_section): Fix initialization.
1139 * elf.c (_bfd_elf_slurp_version_tables): Change maxidx to unsigned, it
1140 is always a positive integer. Cast away sign mismatch.
1141 * elf32-mips.c: Fix misleading comment and typo.
1142 (_bfd_mips_elf_section_from_bfd_section): Remove unused attribute, use
1143 correct data type.
1144 * elflink.c: Fix typo.
1145 (_bfd_elf_create_dynamic_sections): Remove superfluous initialization.
1146 * ecoffswap.h (ecoff_swap_fdr_in): Cast away sign mismatch.
1147
1148 2001-05-04 Richard Henderson <rth@redhat.com>
1149
1150 * elf64-alpha.c (SREL16, SREL32, SREL64): Set pcrel_offset true.
1151
1152 2001-05-04 Nick Clifton <nickc@cambridge.redhat.com>
1153
1154 * elf32-arm.h (elf32_arm_final_link_relocate): Set
1155 EF_ARM_HASENTRY if the start address is set.
1156
1157 2001-05-03 Nick Clifton <nickc@cambridge.redhat.com>
1158
1159 * targets.c (_bfd_target_vector_entries): Compute value based on
1160 the size of the _bfd_target_vector and not bfd_target_vector.
1161
1162 2001-05-03 H.J. Lu <hjl@gnu.org>
1163
1164 * elfcode.h: Include "libiberty.h".
1165
1166 * elflink.h (elf_link_add_object_symbols): Set
1167 elf_dt_name (abfd) to basename of the bfd filename.
1168 (NAME(bfd_elf,size_dynamic_sections)): Set vn_file to basename
1169 of the bfd filename.
1170
1171 2001-05-03 Andreas Jaeger <aj@suse.de>
1172
1173 * elf64-gen.c (elf_generic_info_to_howto): Add unused attribute.
1174 (elf_generic_info_to_howto_rel): Likewise.
1175 * coff-alpha.c (reloc_nil): Likewise.
1176 (alpha_ecoff_bad_format_hook): Likewise.
1177 (alpha_adjust_reloc_out): Likewise.
1178 (alpha_bfd_reloc_type_lookup): Likewise.
1179 (alpha_convert_external_reloc): Likewise.
1180 * elf64-alpha.c (elf64_alpha_reloc_nil): Likewise.
1181 (elf64_alpha_reloc_bad): Likewise.
1182 (elf64_alpha_reloc_gpdisp): Likewise.
1183 (elf64_alpha_bfd_reloc_type_lookup): Likewise.
1184 (elf64_alpha_info_to_howto): Likewise.
1185 (elf64_alpha_add_symbol_hook): Likewise.
1186 (elf64_alpha_create_got_section): Likewise.
1187 (elf64_alpha_is_local_label_name): Likewise.
1188 (elf64_alpha_merge_ind_symbols): Likewise.
1189 * elf64-mips.c (mips_elf64_reloc_type_lookup): Likewise.
1190 (mips_elf64_get_reloc_upper_bound): Likewise.
1191 * nlm32-alpha.c (nlm_alpha_mangle_relocs): Likewise.
1192 (nlm_alpha_get_public_offset): Likewise.
1193
1194 2001-05-02 Johan Rydberg <jrydberg@opencores.org>
1195
1196 * elf32-openrisc.c (openrisc_elf_howto_table): Do not complain
1197 about overflow in R_OPENRISC_LO_16_IN_INSN and
1198 R_OPENRISC_HI_16_IN_INSN.Index: bfd/elf32-openrisc.c
1199
1200 2001-04-30 H.J. Lu <hjl@gnu.org>
1201
1202 * elf.c (_bfd_elf_link_hash_hide_symbol): Set dynindx to -1
1203 only for ELF_LINK_FORCED_LOCAL.
1204 * elf32-hppa.c (elf32_hppa_hide_symbol): Likewise.
1205 * elf32-mips.c (_bfd_mips_elf_hide_symbol): Likewise.
1206 * elfxx-ia64.c (elfNN_ia64_hash_hide_symbol): Likewise.
1207
1208 * elflink.h (elf_fix_symbol_flags): Set ELF_LINK_FORCED_LOCAL
1209 if the symbol has hidden or internal visibility.
1210
1211 2001-04-30 Alan Modra <amodra@one.net.au>
1212
1213 * elf32-hppa.c (final_link_relocate): Branch to .+8 for
1214 calls to undefined weak symbols.
1215
1216 2001-04-30 Andreas Jaeger <aj@suse.de>, Andreas Schwab <schwab@suse.de>
1217
1218 * elf64-x86-64.c (elf64_x86_64_relocate_section): Correct test for
1219 R_X86_64_GOTPCREL, don't use assignments instead of comparisons.
1220
1221 2001-04-27 Andreas Jaeger <aj@suse.de>
1222
1223 * elf64-x86-64.c (elf64_x86_64_finish_dynamic_sections): Only swap
1224 out handled entries.
1225 (elf64_x86_64_finish_dynamic_symbol): Set up GOT entries.
1226 (elf64_x86_64_relocate_section): Fix GOTPCREL calculation.
1227 (elf64_x86_64_relocate_section): Merge entries for GOTPCREL and
1228 GOT32.
1229
1230 2001-04-27 Sean McNeil <sean@mcneil.com>
1231
1232 * config.bfd: Add arm-vxworks target.
1233 * coff-arm (coff_arm_relocate_section): Add in symbol value to
1234 addend (fro VXworks targets).
1235
1236 2001-04-26 H.J. Lu <hjl@gnu.org>
1237
1238 * elf32-i386.c (elf_i386_check_relocs): Verify if r_symndx is
1239 valid.
1240
1241 2001-04-25 Frank Ch. Eigler <fche@redhat.com>
1242
1243 * bfd-in.h (bfd_cache_close): Declare newly exported function.
1244 * bfd-in2.h: Regenerated.
1245
1246 2001-04-24 Jakub Jelinek <jakub@redhat.com>
1247
1248 * merge.c (struct sec_merge_hash_entry): Add alignment field.
1249 (struct sec_merge_hash): Remove alignment_power.
1250 (sec_merge_hash_newfunc): Clear alignment.
1251 (sec_merge_hash_lookup): Pass alignment as argument.
1252 Use hashp->root.next, not hashp->next to walk the hash chain.
1253 If a string already in the hashtable does not have required
1254 alignment, create a new hashtable entry.
1255 (sec_merge_init): Remove alignment_power argument.
1256 (sec_merge_add): Add alignment argument.
1257 (sec_merge_emit): Alignment is now a per-entity thing, not per
1258 section.
1259 (_bfd_merge_section): Sanity check even non-SEC_STRINGS sections
1260 for proper alignment.
1261 Pass alignment information to sec_merge_add.
1262
1263 2001-04-24 Christian Groessler <cpg@aladdin.de>
1264
1265 * coff-z8k.c (extra_case): added handler for R_DISP7, R_CALLR
1266 and R_REL16 reloc types; accept odd values for R_REL16 type
1267
1268 2001-04-24 Johan Rydberg <jrydberg@opencores.org>
1269
1270 * cpu-openrisc.c: New file.
1271 * elf32-openrisc.c: Likewise.
1272
1273 * Makefile.am (ALL_MACHINES): Add cpu-openrisc.lo.
1274 (ALL_MACHINES_CFILES): Add cpu-openrisc.c.
1275 (BFD32_BACKENDS): Add elf32-openrisc.lo.
1276 (BFD32_BACKENDS_CFILES): Add elf32-openrisc.c.
1277 (cpu-openrisc.lo, elf32-openrisc.lo): New rules.
1278 * Makefile.in: Regenerated.
1279 * config.bfd: (openrisc-*-elf): New target.
1280 * configure.in (bfd_elf32_openrisc_vec): New vector.
1281 * configure: Regenerated.
1282 * libbfd.h: Regenerated.
1283 * bfd-in2.h: Regenerated.
1284 * reloc.c: Add OpenRISC relocations.
1285 * targets.c (bfd_elf32_openrisc_vec): Declare.
1286 (bfd_target_vect): Add bfd_elf32_openrisc_vec.
1287 * archures.c (enum bfd_architecture): Add bfd_arch_openrisc.
1288 (bfd_openrisc_arch): Declare.
1289 (bfd_archures_list): Add bfd_openrisc_arch.
1290 * elf.c (prep_headers): Add bfd_arch_openrisc.
1291
1292 2001-04-23 Bo Thorsen <bo@suse.de>
1293
1294 * elf64-x86-64.c: Add c++ vtable hack.
1295 Small whitespace and comment changes.
1296
1297 2001-04-19 Andreas Jaeger <aj@suse.de>
1298
1299 * elf64-x86-64.c (elf64_x86_64_plt0_entry): Fix instructions.
1300 (elf64_x86_64_plt_entry): Likewise.
1301 (elf64_x86_64_finish_dynamic_sections): Fix PLT0 generation.
1302 (elf64_x86_64_finish_dynamic_symbol): Fix PLT generation.
1303
1304 2001-04-17 Hans-Peter Nilsson <hp@axis.com>
1305
1306 * elf32-cris.c: Tweak comments related to dynamic linking.
1307 (cris_elf_relocate_section): When not creating shared object, fill
1308 in the .got table for any symbol not in the dynamic symbol table.
1309 (elf_cris_finish_dynamic_symbol): When not creating shared object,
1310 only emit a .got.rela reloc if the symbol is in the dynamic symbol
1311 table.
1312 (cris_elf_check_relocs): Use variable r_type in all places rather
1313 than the original expression. Add default case in switch for
1314 reloc types.
1315 (elf_cris_size_dynamic_sections): Iterate over
1316 elf_cris_discard_excess_program_dynamics when not creating shared
1317 library.
1318 (elf_cris_discard_excess_dso_dynamics): Renamed from
1319 elf_cris_discard_copies. Correct typo, s/Rel/Rela/.
1320 (elf_cris_discard_excess_program_dynamics): New.
1321
1322 2001-04-14 Mark Elbrecht <snowball3@bigfoot.com>
1323
1324 * coffcode.h (coff_write_object_contents): Use
1325 bfd_coff_swap_filehdr_out instead of coff_swap_filehdr_out.
1326
1327 2001-04-14 H.J. Lu <hjl@gnu.org>
1328
1329 * bfd-in2.h: Regenerate.
1330
1331 2001-04-14 Jakub Jelinek <jakub@redhat.com>
1332
1333 * section.c (STD_SECTION): Add entsize.
1334
1335 2001-04-13 H.J. Lu <hjl@gnu.org>
1336
1337 * section.c (SEC_MERGE): Define new flag for merging.
1338 (SEC_STRINGS): Likewise.
1339 (entsize): New field.
1340
1341 2001-04-13 Roger Sayle <roger@metaphorics.com>
1342
1343 * coff-i386.c (TARGET_SYM): SEC_READONLY is an applicable section
1344 flag on pe-i386 targets.
1345
1346 2001-04-13 Jakub Jelinek <jakub@redhat.com>
1347
1348 * libbfd-in.h (_bfd_merge_section): New.
1349 (_bfd_write_merged_section): New.
1350 (_bfd_merged_section_offset): New.
1351 * libbfd.h: Rebuilt.
1352 * linker.c (_bfd_generic_link_output_symbols): Handle
1353 discard_sec_merge.
1354 * aoutx.h (aout_link_write_symbols): Likewise.
1355 * pdp11.c (aout_link_write_symbols): Likewise.
1356 * elflink.h (elf_link_add_object_symbols): Call _bfd_merge_section.
1357 (elf_bfd_final_link): Adjust global symbols pointing into SEC_MERGE
1358 sections.
1359 (elf_link_sec_merge_syms): New.
1360 (elf_link_input_bfd): Call _bfd_merged_section_offset
1361 and _bfd_write_merged_section.
1362 Handle discard_sec_merge.
1363 * elf-bfd.h (struct elf_link_hash_table): Add merge_info
1364 field.
1365 (struct bfd_elf_section_data): Likewise.
1366 * elf.c (_bfd_elf_make_section_from_shdr): Set SEC_MERGE and
1367 SEC_STRINGS section flags and entsize from their ELF counterparts.
1368 (_bfd_elf_link_hash_table_init): Initialize merge_info.
1369 (elf_fake_sections): Set SHF_MERGE, SHF_STRINGS and sh_entsize
1370 from their BFD counterparts.
1371 * merge.c: New file.
1372 * Makefile.am: Add strtab.lo.
1373 * Makefile.in: Rebuilt.
1374
1375 2001-04-09 Hans-Peter Nilsson <hp@axis.com>
1376
1377 * elflink.h (elf_fix_symbol_flags): For non-default visibilities,
1378 only hide symbols marked STV_INTERNAL or STV_HIDDEN.
1379
1380 2001-04-05 Steven J. Hill <sjhill@cotw.com>
1381
1382 * config.bfd (mips*el*-*-linux-gnu*): Use traditional little
1383 endian MIPS ELF target.
1384 * config.bfd (mips*-*-linux-gnu*): Use traditional big endian
1385 MIPS ELF target.
1386
1387 * configure.in (bfd_elf64_tradbigmips_vec): New. Traditional
1388 64bit big endian MIPS ELF target.
1389 (bfd_elf64_tradlittlemips_vec): New. Traditional 64bit little
1390 endian MIPS ELF target.
1391 * configure: Regenerated.
1392
1393 * elf32-mips.c (IRIX_COMPAT): Handle traditional 64bit and
1394 little endian targets.
1395 (mips_elf_sym_is_global): Handle traditional targets.
1396
1397 * elf64-mips.c (bfd_elf64_tradbigmips_vec): New. Traditional
1398 64bit big endian MIPS ELF target.
1399 (bfd_elf64_tradlittlemips_vec): New. Traditional 64bit little
1400 endian MIPS ELF target.
1401
1402 * targets.c: (_bfd_target_vector): Add bfd_elf64_tradbigmips_vec
1403 and bfd_elf64_tradlittlemips_vec.
1404
1405 2001-04-05 David Mosberger <davidm@hpl.hp.com>
1406
1407 * elf32-i386.c (elf_i386_fake_sections): Treat ".reloc" as an
1408 ordinary "progbits" section.
1409
1410 2001-04-04 Alan Modra <alan@linuxcare.com.au>
1411
1412 * elflink.h (elf_fix_symbol_flags): Call elf_backend_hide_symbol
1413 when -Bsymbolic causes a symbol to no longer need a .plt entry.
1414
1415 2001-04-03 David Mosberger <davidm@hpl.hp.com>
1416
1417 * efi-app-ia32.c (ALIGN_SECTIONS_IN_FILE): Deleted.
1418
1419 2001-03-30 H.J. Lu <hjl@gnu.org>
1420
1421 * efi-app-ia32.c (PEI_TARGET_SUBSYSTEM): Rename from ...
1422 (PEI_DEFAULT_TARGET_SUBSYSTEM): This.
1423
1424 2001-03-26 H.J. Lu <hjl@gnu.org>
1425
1426 * elf32-gen.c (elf32_generic_link_add_symbols): New. Check
1427 if there are any relocations for generic ELF.
1428 (bfd_elf32_bfd_link_add_symbols): Defined to
1429 elf32_generic_link_add_symbols.
1430 * elf64-gen.c (elf64_generic_link_add_symbols): New. Check
1431 if there are any relocations for generic ELF.
1432 (bfd_elf64_bfd_link_add_symbols): Defined to
1433 elf64_generic_link_add_symbols.
1434
1435 2001-03-23 Nick Clifton <nickc@redhat.com>
1436
1437 * Makefile.am (BUILD_CFILES): New variable: List of C source
1438 files created in build directory.
1439 (BUILD_HFILES): New variable: List of header files created in
1440 build directory.
1441 (POTFILES): Delete.
1442 (po/POTFILES.in): Replace rule with empty entry.
1443 (po/SRC-POTFILES.in): New rule: Create a list of source files
1444 in the source directory.
1445 (po/BLD-POTFILES.in): New rule: Create a list of source files
1446 in the build directory.
1447 (MOSTLYCLEAN): Do not delete source files created in build
1448 directory.
1449 * Makefile.in: Regenerate.
1450 * configure.in: Insert SRC-POTFILES.in and BLD-POTFILES.in
1451 into po/Makefile.
1452 * configure: Regenerate.
1453
1454 * po/Make-in: Replace occurrences of POTFILES with SRC-POTFILES
1455 and BLD_POTFILES.
1456 Add .. to the search path when building bfd.pot.
1457 Delete POTFILES when performing distclean.
1458 Add comment describing why distclean is broken in maintainer mode.
1459 * po/POTFILES.in: Delete.
1460 * po/SRC-POTFILES.in: New file.
1461 * po/BLD-POTFILES.in: New file.
1462 * po/bfd.pot: Regenerate.
1463
1464 2001-03-22 Hans-Peter Nilsson <hp@axis.com>
1465
1466 * elf32-cris.c: Shlib and PIC support. PCREL tweaks.
1467 (elf_cris_discard_copies, elf_cris_adjust_gotplt_to_got,
1468 elf_cris_try_fold_plt_to_got, elf_cris_link_hash_newfunc,
1469 elf_cris_link_hash_table_create, elf_cris_adjust_dynamic_symbol,
1470 elf_cris_size_dynamic_sections, elf_cris_finish_dynamic_symbol,
1471 elf_cris_finish_dynamic_sections,elf_cris_hide_symbol): New
1472 functions.
1473 (cris_elf_howto_table) <R_CRIS_8_PCREL, R_CRIS_16_PCREL,
1474 R_CRIS_32_PCREL>: Correct comments. Set pcrel_offset to false.
1475 <R_CRIS_COPY, R_CRIS_GLOB_DAT, R_CRIS_JUMP_SLOT, R_CRIS_RELATIVE,
1476 R_CRIS_16_GOT, R_CRIS_32_GOT, R_CRIS_16_GOTPLT, R_CRIS_32_GOTPLT,
1477 R_CRIS_32_GOTREL, R_CRIS_32_PLT_GOTREL, R_CRIS_32_PLT_PCREL>:
1478 New HOWTO members for new relocs.
1479 (cris_reloc_map): Map new relocs.
1480 (ELF_DYNAMIC_INTERPRETER): Define.
1481 (PLT_ENTRY_SIZE): Define.
1482 (elf_cris_plt0_entry, elf_cris_plt_entry, elf_cris_pic_plt0_entry,
1483 elf_cris_pic_plt_entry): New, PLT templates.
1484 (struct elf_cris_pcrel_relocs_copied, struct
1485 elf_cris_link_hash_entry, struct elf_cris_link_hash_table): New.
1486 (elf_cris_link_hash_traverse, elf_cris_hash_table): Define.
1487 (cris_final_link_relocate): Check that 16-bit GOT relocs have
1488 positive values. Adjust PCREL relocs to be relative to location
1489 after relocation.
1490 (cris_elf_relocate_section): Handle relocations to dynamic
1491 objects. Handle new relocations. Call error handler when seeing
1492 non-PIC relocation for read-only sections while generating shared
1493 object.
1494 (cris_elf_check_relocs): Set reference counts for GOT and PLT
1495 entries.
1496 (bfd_elf32_bfd_link_hash_table_create,
1497 elf_backend_adjust_dynamic_symbol,
1498 elf_backend_size_dynamic_sections,
1499 elf_backend_finish_dynamic_symbol,
1500 elf_backend_finish_dynamic_sections,
1501 elf_backend_create_dynamic_sections, bfd_elf32_bfd_final_link,
1502 elf_backend_hide_symbol, elf_backend_want_got_plt,
1503 elf_backend_plt_readonly, elf_backend_want_plt_sym,
1504 elf_backend_got_header_size, elf_backend_plt_header_size):
1505 Define.
1506
1507 * reloc.c: (BFD_RELOC_CRIS_COPY, BFD_RELOC_CRIS_GLOB_DAT,
1508 BFD_RELOC_CRIS_JUMP_SLOT, BFD_RELOC_CRIS_RELATIVE,
1509 BFD_RELOC_CRIS_32_GOT, BFD_RELOC_CRIS_16_GOT,
1510 BFD_RELOC_CRIS_32_GOTPLT, BFD_RELOC_CRIS_16_GOTPLT,
1511 BFD_RELOC_CRIS_32_GOTREL, BFD_RELOC_CRIS_32_PLT_GOTREL,
1512 BFD_RELOC_CRIS_32_PLT_PCREL): New relocs.
1513 * bfd-in2.h, libbfd.h: Regenerate.
1514
1515 2001-03-21 Diego Novillo <dnovillo@redhat.com>
1516
1517 (_bfd_mips_elf_relocate_section): Give a better error message when
1518 a relocation is not recognized.
1519
1520 2001-03-21 Alan Modra <alan@linuxcare.com.au>
1521
1522 * elf32-hppa.c (elf32_hppa_set_gp): Check sec->output_section
1523 non-NULL before attempting to dereference.
1524
1525 2001-03-20 H.J. Lu <hjl@gnu.org>
1526
1527 * configure.in: Remove the redundent AC_ARG_PROGRAM.
1528 * configure: Rebuild.
1529
1530 2001-03-20 Andreas Schwab <schwab@suse.de>
1531
1532 * elf32-m68k.c (elf_m68k_relocate_section): Don't need the
1533 relocation value when resolving a reference from a debugging
1534 section.
1535
1536 2001-03-16 Scott Thomason <SThomaso@hii.com>
1537
1538 * coff64-rs6000.c (xcoff64_swap_sym_out): Fix syntax errors.
1539 (xcoff64_swap_sym_out): Fix syntax errors.
1540
1541 2001-03-16 Richard Sandiford <rsandifo@redhat.com>
1542
1543 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Fix warning.
1544
1545 2001-03-15 Alan Modra <alan@linuxcare.com.au>
1546
1547 * elf32-hppa.c (elf32_hppa_link_hash_entry): Add maybe_pic_call.
1548 (hppa_link_hash_newfunc): Init it.
1549 (hppa_type_of_stub): Only use non-PIC to PIC call stub if caller
1550 section appears to be non-PIC.
1551 (final_link_relocate): Likewise.
1552 (elf32_hppa_adjust_dynamic_symbol): Set maybe_pic_call for any
1553 possible candidate function, and set pic_call for those that will
1554 only have a .plt entry for the PIC call stub.
1555 (hppa_handle_PIC_calls): Set maybe_pic_call.
1556
1557 2001-03-12 DJ Delorie <dj@redhat.com>
1558
1559 * elf32-sh.c (sh_elf_relocate_section): Only relocation
1560 R_SH_DIR8WP* relocs if they're against external symbols, else
1561 they're just for relaxing. Validate the reloc values.
1562
1563 2001-03-12 Stefan Geuken <mail@stefan-geuken.de>
1564
1565 * binary.c (bfd_external_binary_architecture): Declare.
1566 (binary_object_p): If bfd_external_binary_architecture is defined,
1567 set the architecture to this string.
1568
1569 2001-03-11 Philip Blundell <philb@gnu.org>
1570
1571 * elf32-arm.h (elf32_arm_finish_dynamic_symbol): Don't make PLT
1572 entries that could serve as a definition for a weak symbol.
1573
1574 2001-03-08 Nick Clifton <nickc@redhat.com>
1575
1576 * Most files: Update copyright notices using Perl script created
1577 by Kevin Buettner <kevinb@redhat.com>.
1578
1579 2001-03-07 Nick Clifton <nickc@redhat.com>
1580
1581 * elf32-arm.h (elf32_arm_final_link_relocate): Conditionalise
1582 prior patch on ! defined OLD_ARM_ABI.
1583
1584 2001-03-07 Andreas Jaeger <aj@suse.de>
1585
1586 * elf64-x86-64.c (elf64_x86_64_relocate_section): Fix handling of
1587 some relocation values.
1588
1589 2001-03-06 Nick Clifton <nickc@redhat.com>
1590
1591 * elf32-arm.h (elf32_arm_final_link_relocate): Clear bit zero
1592 of offset in BLX(1) instruction.
1593 * coff-arm.c (coff_arm_relocate_section): Clear bit zero of
1594 offset in BLX(1) instruction.
1595 Fix formatting.
1596
1597 2001-03-06 Nick Clifton <nickc@redhat.com>
1598
1599 * coff-arm.c (coff_arm_reloc_type_lookup): Add
1600 BFD_RELOC_THUMB_PCREL_BLX.
1601
1602 2001-03-06 Igor Shevlyakov <igor@windriver.com>
1603
1604 * archures.c (bfd_default_scan): Add Coldfire CPUs.
1605 * bfd-in2.h: Regenerate.
1606 * cpu-m68k.c: Add Coldfire CPUs for arch table.
1607 * ieee.c (ieee_write_processor): Set proper id for
1608 Coldfire CPUs.
1609
1610 2001-03-01 D.J. Barrow <djbarrow@de.ibm.com,barrow_dj@yahoo.com>
1611
1612 * configure.in: Add s390 target.
1613 * configure: Regenerate.
1614
1615 2001-02-28 Andreas Jaeger <aj@suse.de>
1616
1617 * elf64-x86-64.c (elf64_x86_64_relocate_section): Add relocation
1618 to addend.
1619
1620 2001-02-28 Philip Blundell <pb@futuretv.com>
1621
1622 * elf32-arm.h: Update mentions of renamed EF_xx constants.
1623 (elf32_arm_print_private_bfd_data): Handle ARM EABI version 2.
1624
1625 2001-02-27 H.J. Lu <hjl@gnu.org>
1626
1627 * aoutx.h (NAME(aout,bfd_free_cached_info)): Return true if
1628 abfd->tdata.aout_data == NULL.
1629
1630 2001-02-27 Alan Modra <alan@linuxcare.com.au>
1631
1632 * elf32-hppa.c: Correct field selector in stub comments.
1633 (clobber_millicode_symbols): Formatting fix.
1634
1635 * configure.in: Bump version to 2.11.90.
1636 * configure: Regenerate.
1637 * Makefile.am (CFILES): Rename to SOURCE_CFILES.
1638 (CFILES): $SOURCE_CFILES + generated C files.
1639 (POTFILES): Include $HFILES not $SOURCE_HFILES.
1640 Run "make dep-am"
1641 * Makefile.in: Regenerate.
1642 * doc/Makefile.in: This too.
1643
1644 2001-02-26 Timothy Wall <twall@cygnus.com>
1645
1646 * elfxx-ia64.c (elfNN_ia64_aix_add_symbol_hook): Remove obsolete
1647 comments.
1648
1649 2001-02-26 Nick Clifton <nickc@redhat.com>
1650
1651 * coffcode.h (styp_to_sec_flags) [COFF_WITH_PE version]: Tidy
1652 up, replacing multiple if statements with a switch.
1653 (handle_COMDAT): New function.
1654
1655 2001-02-26 H.J. Lu <hjl@gnu.org>
1656
1657 * coffcode.h (styp_to_sec_flags) [COFF_WITH_PE version]: Issue
1658 a warning for section flags we do not handle instead of
1659 aborting.
1660
1661 2001-02-26 Andreas Jaeger <aj@suse.de>
1662
1663 * elf64-x86-64.c (x86_64_elf_howto_table): Fix order of entries.
1664
1665 2001-02-22 Timothy Wall <twall@cygnus.com>
1666
1667 * config.bfd (targ_cpu): Add vectors for ia64-*-aix* (aka Monterey).
1668 * configure.in: Add objects for elf64_ia64_aix vectors.
1669 * configure: Regenerated.
1670 * configure.host: Recognize ia64-*-aix*.
1671 * elfxx-ia64.c: Add hooks for ELF64 on AIX5. Define new vectors
1672 for AIX. AIX5 requires most relocations to be dynamic (*all*
1673 binaries are somewhat similar to shared libraries).
1674 * targets.c: Add elf64_ia64_aix vectors.
1675
1676 2001-02-21 David Mosberger <davidm@hpl.hp.com>
1677
1678 * cpu-ia64-opc.c (elf64_ia64_operands}: Fix typo: error string for
1679 C8 said "1" instead of "8". Clarify error string for IMM22:
1680 "signed integer" instead of just "integer".
1681
1682 2001-02-20 Andreas Jaeger <aj@suse.de>
1683
1684 * elf64-x86-64.c (elf64_x86_64_finish_dynamic_symbol): Don't make
1685 PLT entries that could serve as a definition for a weak symbol.
1686
1687 2001-02-19 Jakub Jelinek <jakub@redhat.com>
1688
1689 * elf32-sparc.c (elf32_sparc_finish_dynamic_symbol): Don't make PLT
1690 entries that could serve as a definition for a weak symbol.
1691 * elf64-sparc.c (sparc64_elf_finish_dynamic_symbol): Likewise.
1692
1693 2001-02-18 David O'Brien <obrien@FreeBSD>
1694
1695 * configure.in: Recognize FreeBSD/arm, FreeBSD/PowerPC, and treat
1696 FreeBSD/i386-CURRENT differently until I can figure out the needed
1697 corefile changes.
1698 * configure: Regenerate.
1699 * config.bfd: Recognize FreeBSD/x86-64, FreeBSD/ia64, FreeBSD/arm,
1700 FreeBSD/PowerPC, and FreeBSD/sparc64.
1701
1702 2001-02-18 lars brinkhoff <lars@nocrew.org>
1703
1704 * Makefile.am: Add PDP-11 a.out target.
1705 * config.bfd: Likewise.
1706 * configure.in: Likewise.
1707 * targets.c: Likewise.
1708 * archures.c: Likewise.
1709 * bfd-in2.h: Likewise. Add PDP-11 relocations.
1710 * libbfd.h: Add PDP-11 relocations.
1711 * reloc.c: Likewise.
1712 * cpu-pdp11.c: New file.
1713 * pdp11.c: New file.
1714
1715 * libaout.h (GET_WORD) [ARCH_SIZE==16]: Define.
1716 (GET_SWORD) [ARCH_SIZE==16]: Likewise.
1717 (GET_SWORD) [ARCH_SIZE==16]: Likewise.
1718 (PUT_WORD) [ARCH_SIZE==16]: Likewise.
1719 (GET_MAGIC): New macro.
1720 (PUT_MAGIC): Likewise.
1721 * aout-target.h (MY(object_p)): Use GET_MAGIC to read magic word.
1722
1723 2001-02-18 Jim Kingdon <jkingdon@engr.sgi.com>
1724
1725 * irix-core.c (irix_core_core_file_p): Set the architecture (GDB
1726 multiarch needs it).
1727
1728 2001-02-18 H.J. Lu <hjl@gnu.org>
1729
1730 * elflink.h (elf_link_input_bfd): Ignore invalid section symbol
1731 index.
1732
1733 2001-02-18 Kazu Hirata <kazu@hxi.com>
1734
1735 * vms-misc.c: Fix formatting.
1736
1737 2001-02-16 Kazu Hirata <kazu@hxi.com>
1738
1739 * vms.c: Fix formatting.
1740
1741 2001-02-14 H.J. Lu <hjl@gnu.org>
1742
1743 * elf.c (elf_find_function): New function.
1744 (_bfd_elf_find_nearest_line): Call elf_find_function () to find
1745 the file name and function name.
1746
1747 2001-02-14 Nick Clifton <nickc@redhat.com>
1748
1749 * ecoff.c (bfd_debug_section): Update to initialise new fields in
1750 asection structure.
1751
1752 * Makefile.am (BFD32_BACKENDS_CFILES): Remove peigen.c
1753 (BFD64_BACKENDS): Add pepigen.c
1754 Add rules to create peigen.c and pepigen.c from peXXigen.c.
1755
1756 * Makefile.in: Regenerate.
1757 * configure: Regenerate.
1758 * po/POTFILES.in: Regenerate.
1759 * po/bfd.pot: Regenerate.
1760
1761 2001-02-14 H.J. Lu <hjl@gnu.org>
1762
1763 * libcoff-in.h (pe_tdata): Add members target_subsystem and
1764 force_minimum_alignment.
1765
1766 2001-02-14 Bo Thorsen <bo@suse.de>
1767
1768 * elf64-x86-64.c: Small formatting fixes and rearrangements of code.
1769 (elf64_86_64_size_info): Struct added to fix a problem
1770 with the hashtable string entries.
1771 (elf64_x86_64_adjust_dynamic_symbol): Add generation of .got.plt.
1772 (elf64_x86_64_size_dynamic_sections): A FIXME removed.
1773 (elf64_x86_64_size_dynamic_sections): Fix a dynamic entry and
1774 remove the FIXME for this.
1775 (elf64_x86_64_adjust_dynamic_symbol): Fix check for unneeded .plt
1776 section. Also removed the FIXME for it.
1777 (x86_64_elf_howto_table): Use bfd_elf_generic_reloc.
1778 (ELF_DYNAMIC_INTERPRETER): Fix the name of the dynamic linker.
1779 (elf64_x86_64_finish_dynamic_sections): Enable .got.plt writing.
1780
1781 2001-02-13 Richard Henderson <rth@redhat.com>
1782
1783 * elfxx-ia64.c (elfNN_ia64_final_link): Set __gp if required
1784 and not user provided.
1785
1786 2001-02-13 Kazu Hirata <kazu@hxi.com>
1787
1788 * vms.c (vms_print_symbol): Remove unreachable code.
1789
1790 * rs6000-core.c: Fix formatting.
1791
1792 2001-02-13 David Mosberger <davidm@hpl.hp.com>
1793
1794 * peicode.h (coff_swap_filehdr_out) [COFF_IMAGE_WITH_PE]: Define
1795 as _bfd_XXi_only_swap_filehdr_out.
1796 (pe_mkobject) [PEI_FORCE_MINIMUM_ALIGNMENT]: Set
1797 pe->force_minimum_alignment to TRUE.
1798 (pe_mkobject) [PEI_TARGET_SUBSYSTEM]: Set pe->target_subsystem to
1799 PEI_TARGET_SUBSYSTEM.
1800 (pe_print_private_bfd_data): Call
1801 _bfd_XX_print_private_bfd_data_common() instead of
1802 _bfd_pe_print_private_bfd_data_common().
1803 (pe_bfd_copy_private_bfd_data): Call
1804 _bfd_XX_bfd_copy_private_bfd_data_common() instead of
1805 _bfd_pe_bfd_copy_private_bfd_data_common().
1806 (coff_bfd_copy_private_section_data): Define as
1807 _bfd_XX_bfd_copy_private_section_data instead of
1808 _bfd_pe_bfd_copy_private_section_data.
1809 (coff_get_symbol_info): Define as _bfd_XX_get_symbol_info instead
1810 of a _bfd_pe_get_symbol_info.
1811
1812 * peigen.c: Delete.
1813
1814 * peXXigen.c: Renamed from peigen.c.
1815 (COFF_WITH_XX): Define this macro (will get expanded into
1816 COFF_WITH_pep or COFF_WITH_pe, depending on whether this is being
1817 compiled as peigen.c or pepigen.c.
1818 [COFF_WITH_pep]: Include "coff/ia64.h" instead of "coff/i386.h" to
1819 define the canonical PEP structures and definitions.
1820 (_bfd_XXi_swap_aouthdr_out): If pe->force_minimum_alignment is in
1821 effect, enforce minimum file and section alignments. If
1822 extra->Subsystem is IMAGE_SUBSYSTEM_UNKNOWN, set it to
1823 pe->target_subsystem (this defaults to IMAGE_SUBSYSTEM_UNKNOWN,
1824 so, by default, this is a no-op).
1825
1826 * libpei.h: Rename COFF_WITH_PEP to COFF_WITH_pep.
1827 (_bfd_XX_bfd_copy_private_bfd_data_common): Add macros to map
1828 _bfd_XXfoo to _bfd_pepfoo if COFF_WIT_PEP is defined and to
1829 _bfd_pefoo if it's not defined. Use these macros to define
1830 coff swap macros.
1831
1832 * libcoff.h (pe_tdata): Add members target_subsystem and
1833 force_minimum_alignment.
1834
1835 * efi-app-ia64.c (COFF_WITH_pep): Rename COFF_WITH_PEP to
1836 COFF_WITH_pep.
1837 (PEI_TARGET_SUBSYSTEM): Rename from PEI_DEFAULT_TARGET_SUBSYSTEM.
1838
1839 * configure.in (bfd_efi_app_ia64_vec): Use pepigen.lo instead of
1840 peigen.lo.
1841
1842 * coff-ia64.c: Rename COFF_WITH_PEP to COFF_WITH_pep.
1843 (AOUTSZ): Rename PEP64AOUTSZ and PEP64AOUTHDR to PEPAOUTSZ and
1844 PEPAOUTHDR.
1845
1846 * Makefile.in (BFD64_BACKENDS): Mention pepigen.lo.
1847 (BFD64_BACKENDS_CFILES): Mention pepigen.c
1848 (peigen.c): Add rule to generate from peXXigen.c.
1849 (pepigen.c): Ditto.
1850 (pepigen.lo): List dependencies for pepigen.lo.
1851
1852 2001-02-13 Alan Modra <alan@linuxcare.com.au>
1853
1854 * elf32-hppa.c (elf32_hppa_set_gp): Handle weak $global$. If
1855 $global$ referenced but not defined, set its value here.
1856
1857 2001-02-09 Bo Thorsen <bo@suse.de>
1858
1859 * elf64-x86-64.c (elf64_x86_64_check_relocs): Set .rela.got section
1860 alignment to 3.
1861 (elf64_x86_64_check_relocs): Write R_X86_64_GOTPCREL GOT entry
1862 and relocation.
1863 (elf64_x86_64_relocate_section): Fix formatting.
1864 (elf64_x86_64_relocate_section): Fix addend for relocation of
1865 R_X86_64_(8|16|32|PC8|PC16|PC32).
1866
1867 2001-02-12 Jan Hubicka <jh@suse.cz>
1868
1869 * elf64-x86-64.c (x86_64_elf_howto): Fix name of R_X86_64_GOTPCREL.
1870
1871 2001-02-11 H.J. Lu <hjl@gnu.org>
1872
1873 * elflink.h (elf_bfd_final_link): Use file_align for SYMTAB
1874 alignment.
1875
1876 2001-02-11 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
1877
1878 * elf32-mips.c (mips_elf_create_dynamic_relocation): Undo patch
1879 from 2000-10-13. Do not add the symbol's value for R_MIPS_REL32
1880 relocations against dynsym symbols.
1881
1882 * elf32-mips.c (elf_mips_howto_table): Fix the comment on
1883 the R_MIPS_26 relocation.
1884 (mips_elf_calculate_relocation): Use (p + 4) instead of p for
1885 the R_MIPS_26 relocation.
1886 (mips_elf_perform_relocation): Fix the comment on the R_MIPS16_26
1887 relocation.
1888 * elf64-mips.c (mips_elf64_howto_table_rel): Fix the comment on
1889 the R_MIPS_26 relocation.
1890 (mips_elf64_howto_table_rela): Likewise.
1891
1892 * elf32-mips.c (struct mips_elf_link_hash_entry): Added no_fn_stub
1893 member to mark symbols that have non-CALL relocations against
1894 them.
1895 (mips_elf_link_hash_newfunc): Initialize no_fn_stub.
1896 (mips_elf_calculate_relocation): Handle R_MIPS_CALL16 like
1897 R_MIPS_GOT16.
1898 (_bfd_mips_elf_check_relocs): Set no_fn_stub for a symbol if a
1899 non-CALL relocation against it is encountered.
1900 (_bfd_mips_elf_copy_indirect_symbol): Merge no_fn_stub as well.
1901 (_bfd_mips_elf_adjust_dynamic_symbol): Only create a stub if
1902 no_fn_stub is not set.
1903
1904 * elf32-mips.c (mips_elf_output_extsym): Get the output section
1905 information from the real symbol for indirect ones.
1906 Check no_fn_stub to find out if a symbol has a function stub
1907 indeed.
1908
1909 2001-02-11 Michael Sokolov <msokolov@ivan.Harhan.ORG>
1910
1911 * Makefile.am (stamp-lib): ranlib the libbfd.a in the build directory.
1912 * Makefile.in: Regenerate.
1913
1914 2001-02-09 David Mosberger <davidm@hpl.hp.com>
1915
1916 * elfxx-ia64.c (is_unwind_section_name): New function. Returns
1917 true if section name is an unwind table section name.
1918 (elfNN_ia64_additional_program_headers): Count each unwind section
1919 separately.
1920 (elfNN_ia64_modify_segment_map): Install one unwind program header
1921 for each unwind separate section. Note: normally the linker
1922 script merges the unwind sections that go into a single segment,
1923 so this still generates at most one unwind program header per
1924 segment.
1925
1926 * elfxx-ia64.c (elfNN_ia64_section_from_shdr): Accept any section
1927 name for SHT_IA_64_UNWIND, not just .IA_64.unwind.
1928 (elfNN_ia64_fake_sections): Mark sections with names that start
1929 with .IA_64.unwind but not with .IA_64.unwind_info as an IA-64
1930 unwind section.
1931
1932 * elfxx-ia64.c (elfNN_ia64_final_write_processing): New function.
1933 Use it to make sh_info in unwind section point to the text section
1934 it applies to.
1935
1936 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
1937
1938 * Makefile.am: Add linux target for S/390.
1939 * archures.c: Likewise.
1940 * bfd-in2.h: Likewise.
1941 * config.bfd: Likewise.
1942 * configure.in: Likewise.
1943 * elf.c: Likewise.
1944 * libbfd.h: Likewise.
1945 * targets.c: Likewise.
1946 * cpu-s390.c: New file.
1947 * elf32-s390.c: New file.
1948 * elf64-s390.c: New file.
1949
1950 2001-02-09 Nick Clifton <nickc@redhat.com>
1951
1952 * peigen.c (_bfd_pe_get_symbol_info): Suppress addition of
1953 ImageBase. This has already been done by coff_swap_hdr_in.
1954
1955 2001-02-09 Jakub Jelinek <jakub@redhat.com>
1956
1957 * elf64-sparc.c (sparc64_elf_copy_private_bfd_data): New function.
1958
1959 2001-02-09 Jakub Jelinek <jakub@redhat.com>
1960
1961 * elf64-sparc.c (sparc64_elf_check_relocs): Don't trust reloc_count.
1962 (sparc64_elf_relocate_section): Likewise.
1963
1964 2001-02-09 Mark Kettenis <kettenis@gnu.org>
1965
1966 * elf32-sparc.c (_bfd_sparc_elf_howto_table): Treat R_SPARC_UA32
1967 similar to R_SPARC_32.
1968 * elf64-sparc.c (sparc64_elf_howto_table): Likewise.
1969
1970 2001-02-08 H.J. Lu <hjl@gnu.org>
1971
1972 * elf32-i386.c (elf_i386_check_relocs): Reserve R_386_PC32
1973 relocation entries for weak definitions when building DSO with
1974 -Bsymbolic.
1975
1976 2001-02-08 Richard Henderson <rth@redhat.com>
1977
1978 * elf64-alpha.c (alpha_elf_dynamic_symbol_p): Respect weakness
1979 before visibility. Locally defined protected symbols are not
1980 dynamic.
1981
1982 2001-02-08 Geoffrey Keating <geoffk@redhat.com>
1983
1984 * config.bfd: Enable coff64 for rs6000-*. Patch from
1985 <hzoli@austin.ibm.com>.
1986
1987 2001-02-07 Mark Elbrecht <snowball3@bigfoot.com>
1988
1989 * coffgen.c (coff_find_nearest_line): If stabs info is successfully
1990 found, do not attempt to find dwarf2 info before returning.
1991
1992 2001-02-07 Jakub Jelinek <jakub@redhat.com>
1993
1994 * elflink.h (is_global_symbol_definition): Rename to
1995 is_global_data_symbol_definition and have it reject function
1996 symbols.
1997 (elf_link_is_defined_archive_symbol): Use renamed function.
1998
1999 2001-02-07 Todd Vierling <tv@wasabisystems.com>
2000
2001 * libbfd-in.h (bfd_target_vector): Change extern array to pointer.
2002 * libbfd.h (bfd_target_vector): Likewise.
2003 * targets.c (bfd_target_vector): Rename to _bfd_target_vector and
2004 make static; create pointer reference named bfd_target_vector.
2005 (_bfd_target_vector_entries): Calculate this based on the array
2006 typed _bfd_target_vector.
2007
2008 2001-02-06 H.J. Lu <hjl@gnu.org>
2009
2010 * elfxx-ia64.c (elfNN_ia64_dynamic_symbol_p): Only hidden and
2011 internal symbols are not dynamic.
2012 * elf64-alpha.c (alpha_elf_dynamic_symbol_p): Likewise.
2013
2014 2001-02-06 Nick Clifton <nickc@redhat.com>
2015
2016 * Makefile.am (BFD64_BACKENDS_CFILES): Remove elf64-ia64.c, so
2017 that it will not be pulled into the list of files that make up
2018 po/POTFILES.in.
2019 * Makefile.in: Regenerate.
2020 * po/bfd.pot: Regenerate.
2021
2022 2001-02-06 H.J. Lu <hjl@gnu.org>
2023
2024 * peicode.h (coff_swap_filehdr_in): Remove the e_magic
2025 checking.
2026 (pe_bfd_object_p): Rewrite with external_PEI_DOS_hdr and
2027 external_PEI_IMAGE_hdr.
2028
2029 2001-02-06 Kazu Hirata <kazu@hxi.com>
2030
2031 * elf-m10200.c: Fix formatting.
2032
2033 2001-02-04 Nick Clifton <nickc@redhat.com>
2034
2035 * elf32-v850.c (v850_elf_reloc): Do not convert reloc addend to PC
2036 rel, it will be handled later on.
2037
2038 2001-02-02 Fred Fish <fnf@ninemoons.com>
2039
2040 * Makefile.in: Fix typo.
2041
2042 2001-02-01 Kazu Hirata <kazu@hxi.com>
2043
2044 * elf-m10300.c: Fix formatting.
2045
2046 2001-01-30 Alan Modra <alan@linuxcare.com.au>
2047
2048 * elf64-hppa.c (elf64_hppa_elf_get_symbol_type): New function.
2049 (elf_backend_get_symbol_type): Define.
2050 (elf64_hppa_object_p): Set architecture and machine from elf
2051 header flags.
2052
2053 2001-01-30 Curtis L. Janssen <cljanss@ca.sandia.gov>
2054
2055 * elf64-alpha.c (elf64_alpha_find_nearest_line): Query dwarf2
2056 before mdebug.
2057
2058 2001-01-26 Richard Henderson <rth@redhat.com>
2059
2060 * elfxx-ia64.c (elfNN_ia64_dynamic_symbol_p): Return false
2061 for non-default visibility.
2062 * elf64-alpha.c (alpha_elf_dynamic_symbol_p): Likewise, but
2063 delete ugly macro and replace with pretty function.
2064
2065 2001-01-25 Mark Elbrecht <snowball3@bigfoot.com>
2066
2067 * coff-go32.c: Update copyright.
2068 * coff-stgo32.c: Likewise.
2069 * coff-go32.c (COFF_LONG_FILENAMES): Define.
2070 * coff-stgo32.c (COFF_LONG_FILENAMES): Likewise.
2071 * coff-go32.c (COFF_SECTION_ALIGNMENT_ENTRIES): Remove .bss entry.
2072 * coff-stgo32.c (COFF_SECTION_ALIGNMENT_ENTRIES): Likewise.
2073
2074 2001-01-25 Kazu Hirata <kazu@hxi.com>
2075
2076 * bfd-in2.h: Rebuild.
2077 * libbfd.h: Likewise.
2078
2079 2001-01-23 H.J. Lu <hjl@gnu.org>
2080
2081 * bfd-in2.h: Rebuild.
2082
2083 2001-01-23 H.J. Lu <hjl@gnu.org>
2084
2085 * vms-misc.c (_bfd_vms_next_record): Return -1 if PRIV(vms_buf)
2086 is NULL or PRIV(vms_rec) is outside of the buffer.
2087
2088 2001-01-23 Kazu Hirata <kazu@hxi.com>
2089
2090 * coff64-rs6000.c: Fix formatting.
2091 * coff-arm.c: Likewise.
2092 * coffgen.c: Likewise.
2093 * cofflink.c: Likewise.
2094 * coff-mcore.c: Likewise.
2095 * coff-mips.c: Likewise.
2096 * coff-pmac.c: Likewise.
2097 * coff-ppc.c: Likewise.
2098 * coff-rs6000.c: Likewise.
2099 * elf32.c: Likewise.
2100 * elf32-fr30.c: Likewise.
2101 * elf32-i370.c: Likewise.
2102 * elf32-i860.c: Likewise.
2103 * elf32-m32r.c: Likewise.
2104 * elf32-m68k.c: Likewise.
2105 * elf32-mcore.c: Likewise.
2106 * elf32-ppc.c: Likewise.
2107 * elf32-sh.c: Likewise.
2108 * elf32-v850.c: Likewise.
2109 * elf64-alpha.c: Likewise.
2110 * elf64-sparc.c: Likewise.
2111 * elflink.c: Likewise.
2112 * elflink.h: Likewise.
2113 * elf-m10200.c: Likewise.
2114 * elf-m10300.c: Likewise.
2115 * elfxx-ia64.c: Likewise.
2116
2117 * aoutx.h: Fix formatting.
2118 * bfd.c: Likewise.
2119 * bfd-in2.h: Likewise.
2120 * bfd-in.h: Likewise.
2121 * cpu-i386.c: Likewise.
2122 * cpu-m68hc11.c: Likewise.
2123 * dwarf2.c: Likewise.
2124 * elf64-x86-64.c: Likewise.
2125 * format.c: Likewise.
2126 * freebsd.h: Likewise.
2127 * hash.c: Likewise.
2128 * hp300hpux.c: Likewise.
2129 * hppabsd-core.c: Likewise.
2130 * hpux-core.c: Likewise.
2131
2132 2001-01-22 Bo Thorsen <bo@suse.de>
2133
2134 * elf64-x86-64.c: Added PIC support for X86-64.
2135 (elf64_x86_64_link_hash_newfunc): Function added.
2136 (elf64_x86_64_link_hash_table_create): Likewise.
2137 (elf64_x86_64_check_relocs): Likewise.
2138 (elf64_x86_64_gc_mark_hook): Likewise.
2139 (elf64_x86_64_gc_sweep_hook): Likewise.
2140 (elf64_x86_64_adjust_dynamic_symbol): Likewise.
2141 (elf64_x86_64_size_dynamic_sections): Likewise.
2142 (elf64_x86_64_discard_copies): Likewise.
2143 (elf64_x86_64_finish_dynamic_symbol): Likewise.
2144 (elf64_x86_64_finish_dynamic_sections): Likewise.
2145 (elf64_x86_64_relocate_section): Add relocation of PIC sections.
2146
2147 2001-01-21 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
2148
2149 * Makefile.am (install-data-local): Make use of $(DESTDIR).
2150 * Makefile.in: Regenerate.
2151
2152 2001-01-21 Kazu Hirata <kazu@hxi.com>
2153
2154 * coff-a29k.c: Fix formatting.
2155
2156 2001-01-19 H.J. Lu <hjl@gnu.org>
2157
2158 * elf32-i386.c (elf_i386_check_relocs): Report files with bad
2159 relocation section names.
2160 (elf_i386_relocate_section): Report files with bad relocation
2161 section names and return false.
2162
2163 2001-01-17 Bo Thorsen <bo@suse.de>
2164
2165 * targets.c: Alphabetize list of xvecs.
2166
2167 2001-01-14 Alan Modra <alan@linuxcare.com.au>
2168
2169 * config.bfd: Add linux target variant for elfxx-hppa.
2170 * configure.in: Recognize bfd_elf32_hppa_linux_vec and
2171 bfd_elf64_hppa_linux_vec.
2172 * configure: Regenerate.
2173 * elf64-hppa.c: Include elf64-target.h again to support linux
2174 target variant.
2175 (elf64_hppa_post_process_headers): Set ELFOSABI_LINUX for linux.
2176 * elf32-hppa.c: Include elf32-target.h again to support linux
2177 target variant.
2178 (elf32_hppa_post_process_headers): New function.
2179 (elf_backend_post_process_headers): Define.
2180 * targets.c (bfd_target_vector): Add bfd_elf64_hppa_linux_vec and
2181 bfd_elf32_hppa_linux_vec.
2182
2183 * elf32-hppa.c (elf32_hppa_link_hash_table): Add text_segment_base,
2184 and data_segment_base fields.
2185 (elf32_hppa_link_hash_table_create ): Init them.
2186 (elf32_hppa_check_relocs): Update comments.
2187 (hppa_record_segment_addr): New function.
2188 (elf32_hppa_relocate_section): Call it.
2189 (final_link_relocate): Handle R_PARISC_SEGREL32.
2190 (elf32_hppa_final_link): New function.
2191 (bfd_elf32_bfd_final_link): Define to call it.
2192 (hppa_unwind_entry_compare): New function.
2193 * cache.c (bfd_open_file): Create files in write+read mode.
2194
2195 * elf-hppa.h (elf_hppa_howto_table): Set bitsize value for
2196 SEGREL32 and numerous other relocs. Change duplicate
2197 R_PARISC_NONE relocs to R_PARISC_UNIMPLEMENTED.
2198
2199 * opncls.c (bfd_fdopenr): Add parens like the comment says around
2200 O_ACCMODE.
2201
2202 * elf32-hppa.c (elf32_hppa_size_dynamic_sections): Don't create
2203 .plt entries for DT_INIT and DT_FINI.
2204 (elf32_hppa_finish_dynamic_sections): Remove special handling of
2205 DT_INIT and DT_FINI.
2206
2207 * elf64-hppa.c (elf64_hppa_finish_dynamic_symbol): Use 16-bit
2208 offsets for stub .plt access if wide mode. Check offset in range.
2209
2210 2001-01-13 Nick Clifton <nickc@redhat.com>
2211
2212 * elf32-fr30.c (fr30_elf_howto_table): Remove spurious blank
2213 line.
2214
2215 * coffcode.h (coff_canonicalize_reloc): Remove spurious blank
2216 line.
2217
2218 2001-01-12 Alan Modra <alan@linuxcare.com.au>
2219
2220 * configure.in ([bfd_elf64_x86_64_vec]): Set target64.
2221 * configure: Regenerate.
2222
2223 2001-01-11 Peter Targett <peter.targett@arccores.com>
2224
2225 * bfd-in2.h (bfd_architecture): Add bfd_mach_arc_5,
2226 bfd_mach_arc_6, bfd_mach_arc_7, bfd_mach_arc_8 for ARC variants.
2227 * cpu-arc.c (arch_info_struct): Add entries for variants.
2228 (bfd_arc_arch) Set default to bfd_mach_arc_5.
2229 (arc_get_mach) Don't assume machine names prefixed arc- before
2230 testing.
2231 * elf32-arc.c (arc_elf_object_p): Set machine number based on new
2232 selections.
2233 (arc_elf_final_write_processing) Likewise.
2234 (ELF_MACHINE_CODE) Use EM_ARC.
2235
2236 2001-01-10 Nick Clifton <nickc@redhat.com>
2237
2238 * coff-arm.c (LOCAL_LABEL_PREFIX): Change definition to "".
2239
2240 2001-01-07 Philip Blundell <philb@gnu.org>
2241
2242 * README: Replace `bug-gnu-utils@gnu.org' with
2243 `bug-binutils@gnu.org'.
2244
2245 2001-01-04 Kazu Hirata <kazu@hxi.com>
2246
2247 * som.c: Fix formatting.
2248
2249 2001-01-03 Kazu Hirata <kazu@hxi.com>
2250
2251 * ecoffswap.h: Fix formatting.
2252 * elf-bfd.h: Likewise.
2253 * elfarm-nabi.c: Likewise.
2254 * elfarm-oabi.c: Likewise.
2255 * elfcode.h: Likewise.
2256 * elfcore.h: Likewise.
2257 * elflink.c: Likewise.
2258 * elflink.h: Likewise.
2259 * elfxx-ia64.c: Likewise.
2260 * elfxx-target.h: Likewise.
2261 * libbfd.c: Likewise
2262 * linker.c: Likewise.
2263 * lynx-core.c: Likewise.
2264
2265 2001-01-02 Kazu Hirata <kazu@hxi.com>
2266
2267 * pc532-mach.c: Fix formatting.
2268 * pe-arm.c: Likewise.
2269 * pe-i386.c: Likewise.
2270 * pe-mips.c: Likewise.
2271 * pe-ppc.c: Likewise.
2272 * pe-sh.c: Likewise.
2273 * pei-mips.c: Likewise.
2274 * pei-sh.c: Likewise.
2275 * peicode.h: Likewise.
2276 * ppcboot.c: Likewise.
2277 * ptrace-core.c: Likewise.
2278
2279 2001-01-01 Kazu Hirata <kazu@hxi.com>
2280
2281 * reloc.c: Fix formatting.
2282 * riscix.c: Likewise.
2283 * rs6000-core.c: Likewise.
2284 * xcoff-target.h: Likewise.
2285
2286 2000-12-29 Hans-Peter Nilsson <hp@bitrange.com>
2287
2288 * elfcode.h (elf_object_p): Also restore the bfd mach field on
2289 error, by calling bfd_default_set_arch_mach with incoming
2290 values.
2291
2292 2000-12-26 Kazu Hirata <kazu@hxi.com>
2293
2294 * vaxnetbsd.c: Fix formatting.
2295 * versados.c: Likewise.
2296 * vms-gsd.c: Likewise.
2297 * vms-hdr.c: Likewise.
2298 * vms-misc.c: Likewise.
2299
2300 2000-12-25 Alexandre Oliva <aoliva@redhat.com>
2301
2302 * archive.c (coff_write_armap): Don't write more than symbol_count
2303 `archive_member_file_ptr's.
2304
2305 2000-12-25 Kazu Hirata <kazu@hxi.com>
2306
2307 * vms-tir.c: Fix formatting.
2308
2309 2000-12-23 Kazu Hirata <kazu@hxi.com>
2310
2311 * vms.c: Fix formatting.
2312 * vms.h: Likewise.
2313
2314 2000-12-21 Santeri Paavolainen <santtu@ssh.com>
2315
2316 * vms-hdr.c: Include alloca.h if HAVE_ALLOCA_H is defined.
2317
2318 * peicode.h (pe_ILF_object_p): Add const to import of TARGET_LITTLE_SYM.
2319
2320 * elf32-m32r.c (m32r_elf_generic_reloc): Add cast to avoid (void *)
2321 arithmetic.
2322
2323 * elf32-fr30.c: Add casts to avoid (void *) arithmetic.
2324
2325 * coffcode.h (styp_to_sec_flags): Add empty statement after label.
2326
2327 2000-12-21 Richard Sandiford <rsandifo@redhat.com>
2328
2329 * libbfd.c (bfd_get_bits): Added
2330 (bfd_put_bits): Likewise
2331 * bfd-in.h: Declared the above.
2332 * bfd-in2.h: Regenerated.
2333
2334 2000-12-20 Kazu Hirata <kazu@hxi.com>
2335
2336 * targets.c: Fix formatting.
2337 * tekhex.c: Likewise.
2338 * trad-core.c: Likewise.
2339
2340 2000-12-19 Kazu Hirata <kazu@hxi.com>
2341
2342 * sco5-core.c: Fix formatting.
2343 * section.c: Likewise.
2344 * sparclinux.c: Likewise.
2345 * sparclynx.c: Likewise.
2346 * sparcnetbsd.c: Likewise.
2347 * srec.c: Likewise.
2348 * stabs.c: Likewise.
2349 * stab-syms.c: Likewise.
2350 * sunos.c: Likewise.
2351 * syms.c: Likewise.
2352 * sysdep.h: Likewise.
2353
2354 2000-12-18 Nick Clifton <nickc@redhat.com>
2355
2356 * coff-arm.c (EXTRA_S_FLAGS): Only define if not already
2357 defined.
2358 * epoc-pe-arm.c (EXTRA_S_FLAGS): Define.
2359 * epoc-pei-arm.c (EXTRA_S_FLAGS): Define.
2360
2361 2000-12-18 Nick Clifton <nickc@redhat.com>
2362
2363 * vms-misc.c (_bfd_vms_get_record): Add default case to
2364 file_format switch.
2365
2366 2000-12-15 Miloslav Trmac <mitr@volny.cz>
2367
2368 * elfcore.h (elf_core_file_p): Move to the start of the program
2369 headers before attempting to read them.
2370
2371 2000-12-14 Kazu Hirata <kazu@hxi.com>
2372
2373 * peigen.c: Fix formatting.
2374 * som.c: Likewise.
2375 * som.h: Likewise.
2376
2377 2000-12-13 Kazu Hirata <kazu@hxi.com>
2378
2379 * peigen.c: Fix formatting.
2380
2381 2000-12-12 Jim Wilson <wilson@redhat.com>
2382
2383 * elfxx-ia64.c (get_dyn_sym_info): Cast %p argument to void *.
2384
2385 2000-12-08 Mark Salter <msalter@redhat.com>
2386
2387 * binary.c (binary_set_section_contents): Ignore sections
2388 with zero size.
2389
2390 2000-12-12 Kazu Hirata <kazu@hxi.com>
2391
2392 * m68klinux.c: Fix formatting.
2393 * m68knetbsd.c: Likewise.
2394 * mipsbsd.c: Likewise.
2395 * netbsd-core.c: Likewise.
2396 * netbsd.h: Likewise.
2397 * newsos3.c: Likewise.
2398 * nlm32-alpha.c: Likewise.
2399 * nlm32-i386.c: Likewise.
2400 * nlm32-ppc.c: Likewise.
2401 * nlm32-sparc.c: Likewise.
2402 * nlmcode.h: Likewise.
2403 * nlmswap.h: Likewise.
2404 * nlm-target.h: Likewise.
2405 * ns32knetbsd.c: Likewise.
2406
2407 2000-12-10 Fred Fish <fnf@be.com>
2408
2409 * elflink.h (elf_link_output_extsym): Don't complain about undefined
2410 symbols in shared objects if allow_shlib_undefined is true.
2411
2412 2000-12-12 Nick Clifton <nickc@redhat.com>
2413
2414 * cpu-sh.c: Fix formattng.
2415 * elf.c: Fix formattng.
2416 * elf32-mips.c: Fix formattng.
2417 * elf32-sh.c: Fix formattng.
2418 * elf64-alpha.c: Fix formattng.
2419
2420 2000-12-09 Nick Clifton <nickc@redhat.com>
2421
2422 * elf32-mips.c (_bfd_mips_elf_find_nearest_line): Pass
2423 dwarf2_find_line_info as last parameter to invocation of
2424 _bfd_dwarf2_find_nearest_line.
2425 * elf32-arm.h (elf32_arm_find_nearest_line): Pass
2426 dwarf2_find_line_info as last parameter to invocation of
2427 _bfd_dwarf2_find_nearest_line.
2428
2429 2000-12-08 Mark Elbrecht <snowball3@bigfoot.com>
2430
2431 * Makefile.am (BFD32_BACKENDS): Move dwarf2.lo from here...
2432 (BFD_LIBS): ...to here.
2433 (BFD32_BACKENDS_CFILES): Move dwarf2.c from here...
2434 (BFD_LIBS_CFILES): ...to here.
2435 * Makefile.in: Regenerate.
2436 * configure.in: Remove dwarf.lo from the elf shell variable.
2437 * configure: Regenerate.
2438 * libcoff-in.h (coff_tdata): Add pointer dwarf2_find_line_info.
2439 * libcoff.h: Regenerate.
2440 * coffgen.c (coff_find_nearest_line): Call
2441 _bfd_dwarf2_find_nearest_line.
2442 * dwarf2.c (_bfd_dwarf2_find_nearest_line): Add parameter. Update
2443 accordingly.
2444 (read_abbrevs): Likewise
2445 (decode_line_info): Likewise.
2446 (parse_comp_unit): Likewise.
2447 (comp_unit_find_nearest_line): Likewise.
2448 * libbfd-in.h (_bfd_dwarf2_find_nearest_line): Update prototype.
2449 * libbfd.h: Regenerate.
2450 * elf.c (_bfd_elf_find_nearest_line): Update call.
2451 * elf-bfd.h (elf_obj_tdata): Change dwarf2_find_line_info to type PTR.
2452 * dwarf2.c (concat_filename): Use IS_ABSOLUTE_PATH.
2453 * coffcode.h (STYP_XCOFF_DEBUG, STYP_DEBUG_INFO): New macros.
2454 (sec_to_styp_flags): Use them. Handle DWARF2 sections.
2455 (styp_to_sec_flags): Handle DWARF2 sections.
2456 * elf32-arm.h (elf32_arm_find_nearest_line): Add parameter to call
2457 to _bfd_find_nearest_line.
2458 * elf32-mips.c (_bfd_mips_elf_find_nearest_line): Add parameter to
2459 call to _bfd_find_nearest_line.
2460
2461 2000-12-08 Kazu Hirata <kazu@hxi.com>
2462
2463 * coffgen.c: Fix formatting.
2464 * elf-m10300.c: Likewise.
2465 * elf32-i386.c: Likewise.
2466 * elf32-i960.c: Likewise.
2467 * elf32-m68k.c: Likewise.
2468 * elf32-mcore.c: Likewise.
2469 * elf32-ppc.c: Likewise.
2470 * elf32-sh.c: Likewise.
2471 * elf32-sparc.c: Likewise.
2472 * elf32-v850.c: Likewise.
2473 * elf64-alpha.c: Likewise.
2474 * elf64-hppa.c: Likewise.
2475 * elf64-mips.c: Likewise.
2476 * elf64-sparc.c: Likewise.
2477
2478 2000-12-07 Kazu Hirata <kazu@hxi.com>
2479
2480 * elf32-ppc.c: Fix formatting.
2481 * elf64-x86-64.c: Likewise.
2482
2483 2000-12-06 Ulf Carlsson <ulfc@engr.sgi.com>
2484
2485 From Ralf Baechle <ralf@gnu.org>
2486
2487 * elf32-mips.c (elf32_mips_merge_private_bfd_data): Always permit
2488 BFDs containing no sections or empty .text, .data or .bss sections
2489 to be merged, regardless of their flags.
2490
2491 2000-12-06 Kazu Hirata <kazu@hxi.com>
2492
2493 * elf32-m32r.c: Fix formatting.
2494 * elf32-m68hc11.c: Likewise.
2495 * elf32-m68hc12.c: Likewise.
2496 * elf32-m68k.c: Likewise.
2497 * elf32-mcore.c: Likewise.
2498 * elf32-pj.c: Likewise.
2499 * elf32-ppc.c: Likewise.
2500
2501 2000-12-05 Kazu Hirata <kazu@hxi.com>
2502
2503 * elf32-fr30.c: Fix formatting.
2504 * elf32-hppa.c: Likewise.
2505 * elf32-i370.c: Likewise.
2506 * elf32-i386.c: Likewise.
2507 * elf32-i860.c: Likewise.
2508 * elf32-i960.c: Likewise.
2509
2510 2000-12-03 Kazu Hirata <kazu@hxi.com>
2511
2512 * elf32-arm.h: Fix formatting.
2513 * elf32-avr.c: Likewise.
2514 * elf32-cris.c: Likewise.
2515 * elf32-d10v.c: Likewise.
2516 * elf32-d30v.c: Likewise.
2517 * elf-hppa.h: Likewise.
2518 * elf-m10200.c: Likewise.
2519 * elf-m10300.c: Likewise.
2520
2521 2000-12-01 Chris Demetriou <cgd@sibyte.com>
2522
2523 * aoutx.h (NAME(aout,machine_type)): Add bfd_mach_mips32 and
2524 bfd_mach_mips32_4k. Update FIXME comment.
2525 * archures.c (bfd_mach_mips32): New constant.
2526 (bfd_mach_mips4K, bfd_mach_mips32_4k) Rename the former to
2527 the latter, renumber it.
2528 * bfd-in2.h (bfd_mach_mips32): New constant.
2529 (bfd_mach_mips4K, bfd_mach_mips32_4k) Rename the former to
2530 the latter, renumber it.
2531 * cpu-mips.c (I_mips32): New constant.
2532 (I_mips4K, I_mips32_4k): Rename the former to the latter.
2533 (arch_info_struct): Add bfd_mach_mips32 entry, replace
2534 bfd_mach_mips4K entry with bfd_mach_mips32_4k entry.
2535 * elf32-mips.c (elf_mips_isa): Add E_MIPS_ARCH_32 case.
2536 (elf_mips_mach): Likewise. Also, replace E_MIPS_MACH_MIPS32
2537 with E_MIPS_MACH_MIPS32_4K.
2538 (_bfd_mips_elf_final_write_processing): Replace
2539 bfd_mach_mips4K with bfd_mach_mips32_4k case, add
2540 bfd_mach_mips32 case.
2541 (_bfd_mips_elf_merge_private_bfd_data): Generalize ISA mixing
2542 comparison with support for MIPS32.
2543 (_bfd_mips_elf_print_private_bfd_data): Print ISA name for
2544 MIPS32.
2545
2546 * aoutx.h (NAME(aout,machine_type)): Add cases for
2547 bfd_mach_mips5 and bfd_mach_mips64.
2548 * archures.c (bfd_mach_mips5, bfd_mach_mips64): New constants.
2549 * bfd-in2.h (bfd_mach_mips5, bfd_mach_mips64): Likewise.
2550 * cpu_mips.c (I_mips5, I_mips64): New definitions.
2551 (arch_info_struct): Add entries for bfd_mach_mips5 and
2552 bfd_mach_mips64.
2553 * elf32-mips.c (elf_mips_isa, elf_mips_mach,
2554 _bfd_mips_elf_print_private_bfd_data): Add cases for
2555 E_MIPS_ARCH_5 and E_MIPS_ARCH_64.
2556 (_bfd_mips_elf_final_write_processing): Add cases for
2557 bfd_mach_mips5 and bfd_mach_mips64.
2558
2559 * aoutx.h (NAME(aout,machine_type)): Add a
2560 bfd_mach_mips_sb1 case.
2561 * archures.c (bfd_mach_mips_sb1): New constant.
2562 * bfd-in2.h (bfd_mach_mips_sb1): New constant.
2563 * cpu-mips.c (I_sb1): New constant.
2564 (arch_info_struct): Add entry for bfd_mach_mips_sb1.
2565 * elf32-mips.c (elf_mips_mach): Add case for
2566 E_MIPS_MACH_SB1.
2567 (_bfd_mips_elf_final_write_processing): Add case for
2568 bfd_mach_mips_sb1.
2569
2570 2000-12-01 Joel Sherrill <joel@OARcorp.com>
2571
2572 * config.bfd (arm-*-rtems*, a29k-*rtems*): New targets.
2573 (sparc*-*-rtemself*, sparc*-*-rtemsaout*): New targets.
2574 (sparc*-*-rtems*): Switched from a.out to ELF.
2575
2576 2000-11-30 Jan Hubicka <jh@suse.cz>
2577
2578 * Makefile.am (BFD64_BACKENDS): Add elf64-x86-64.lo
2579 BFD64_BACKENDS_CFILES): Add elf64-x86-64.c
2580 (elf64-x86-64.lo): Add dependencies.
2581 * archures.c (DESCRIPTION): Add bfd_mach_x86_64,
2582 bfd_mach_x86_64_intel_syntax.
2583 * elf.c (prep_headers): Use EM_x86_64 for 64bit output.
2584 * config.bfd (x86_64): Add.
2585 * configure.in: Add support for bfd_elf64_x86_64_vec.
2586 * cpu-i386.c (bfd_x86_64_arch_intel_syntax, bfd_x86_64_arch): Add.
2587 (bfd_i386_arch, i8086_ar): Link in.
2588 * elf64-x86-64.c: New file.
2589 * reloc.c (ENUMDOC): Add BFD_RELOC_X86_64*.
2590 * targets.c (bfd_elf64_x86_64_vec): Add.
2591 (bfd_target_vect): Add bfd_elf64_x86_64_vec.
2592
2593 2000-11-30 Kazu Hirata <kazu@hxi.com>
2594
2595 * xcofflink.c: Fix formatting.
2596
2597 2000-11-28 Kazu Hirata <kazu@hxi.com>
2598
2599 * aoutx.h: Fix formatting.
2600 * bfd-in.h: Likewise.
2601 * bfd-in2.h: Likewise.
2602 * cache.c: Likewise.
2603 * cisco-core.c: Likewise.
2604 * coff64-rs6000.c: Likewise.
2605 * coffcode.h: Likewise.
2606 * coffswap.h: Likewise.
2607 * corefile.c: Likewise.
2608 * elf32-mips.c: Likewise.
2609
2610 2000-11-27 Kazu Hirata <kazu@hxi.com>
2611
2612 * aout-adobe.c: Fix formatting.
2613 * coff64-rs6000.c: Likewise.
2614 * coffgen.c: Likewise.
2615 * cofflink.c: Likewise.
2616
2617 2000-11-27 Philip Blundell <pb@futuretv.com>
2618
2619 * libcoff-in.h (coff_tdata): Add `strings_written' flag.
2620 (obj_coff_strings_written): New accessor macro for above.
2621 * libcoff.h: Regenerate.
2622 * cofflink.c (_bfd_coff_final_link): Say that we wrote the
2623 strings.
2624 * coffcode.h (coff_write_object_contents): No need to write out
2625 the string table if it's already been done.
2626
2627 2000-11-22 Philip Blundell <pb@futuretv.com>
2628
2629 * cofflink.c (_bfd_coff_generic_relocate_section): Don't object to
2630 weak undefined symbols.
2631
2632 2000-11-24 Nick Clifton <nickc@redhat.com>
2633
2634 * archures.c (bfd_mach_arm_5TE): Define.
2635 (bfd_mach_arm+XScale): Define.
2636 * bfd-in2.h: Regenerate.
2637
2638 * coff-arm.c (coff_arm_reloc_type_lookup): Accept
2639 BFD_RELOC_ARM_PCREL_BLX.
2640
2641 * coffcode.h (coff_set_flags): Set flags for 5t, 5te and
2642 XScale machine numbers.
2643
2644 * config.bfd (xscale-elf): Add target.
2645 (xscale-coff): Add target.
2646
2647 * cpu-arm.c: Add xscale machine name.
2648 Add v5t, v5te and XScale machine numbers.
2649
2650 2000-11-23 Kazu Hirata <kazu@hxi.com>
2651
2652 * aix386-core.c: Fix formatting.
2653
2654 2000-11-22 Jim Wilson <wilson@redhat.com>
2655
2656 * coff-ia64.c (howto_table): Use EMPTY_HOWTO.
2657 (in_reloc_p): Add ATTRIBUTE_UNUSED to unused parameters.
2658 * cpu-ia64-opc.c (ins_rsvd, ext_rsvd, ins_const, ext_const): Likewise.
2659 (ins_imms_scaled): Initialize sign_bit at function entry.
2660 (elf64_ia64_operands): Add missing initializers.
2661 * elfxx-ia64.c (elfNN_ia64_reloc, elfNN_ia64_reloc_type_lookup,
2662 elfNN_ia64_info_to_howto, elfNN_ia64_fake_sections,
2663 elfNN_ia64_add_symbol_hook, elfNN_ia64_is_local_label_name,
2664 elfNN_ia64_local_hash_table_init, get_fptr, get_pltoff,
2665 elfNN_ia64_adjust_dynamic_symbol): Add ATTRIBUTE_UNUSED for unused
2666 parameters.
2667 (elfNN_ia64_info_to_howto): Initialize free_relocs, free_contents,
2668 and free_extsyms at function entry.
2669 (elfNN_add_symbol_hook): Add unsigned cast to bfd_get_gp_size result.
2670 (elfNN_ia64_create_dynamic_sections): Delete unused local h.
2671 (get_got): Delete unused local srel.
2672 (elfNN_ia64_check_relocs): Initialize dynrel_type when declared.
2673 (elfNN_ia64_relocate_section): Delete unused local dynindx.
2674
2675 2000-11-21 Kazu Hirata <kazu@hxi.com>
2676
2677 * coff-a29k.c: Fix formatting.
2678 * coff-h8500.c: Likewise.
2679 * coff-i960.c: Likewise.
2680 * coff-ppc.c: Likewise.
2681 * coff-rs6000.c: Likewise.
2682 * coff-stgo32.c: Likewise.
2683 * coff-tic54x.c: Likewise.
2684 * coff-w65.c: Likewise.
2685 * cpu-h8500.c: Likewise.
2686 * cpu-hppa.c: Likewise.
2687 * cpu-ns32k.c: Likewise.
2688 * ecoff.c: Likewise.
2689 * ecofflink.c: Likewise.
2690
2691 2000-11-21 Nick Clifton <nickc@redhat.com>
2692
2693 * elf32-sh.c (sh_elf_reloc_loop): Fix compile time warning, and
2694 remove possibility of infinite loop.
2695
2696 2000-11-20 Kazu Hirata <kazu@hxi.com>
2697
2698 * aix386-core.c: Fix formatting.
2699 * aout-adobe.c: Likewise.
2700 * aout-arm.c: Likewise.
2701 * aout-encap.c: Likewise.
2702 * aout-ns32k.c: Likewise.
2703 * aout-target.h: Likewise.
2704 * aout-tic30.c: Likewise.
2705 * aoutf1.h: Likewise.
2706 * aoutx.h: Likewise.
2707 * archive.c: Likewise.
2708 * bfd-in.h: Likewise.
2709 * bfd-in2.h: Likewise.
2710 * bfd.c: Likewise.
2711 * bout.c: Likewise.
2712
2713 2000-11-17 H.J. Lu <hjl@gnu.org>
2714
2715 * elfxx-ia64.c (elfNN_ia64_size_dynamic_sections): Don't create
2716 pltoff entries for DT_INIT and DT_FINI.
2717 (elfNN_ia64_final_link): Don't set DT_INIT/FINI entries.
2718 (elfNN_ia64_finish_dynamic_sections): Don't fill in DT_INIT/FINI
2719 entries.
2720
2721 2000-11-16 Richard Henderson <rth@redhat.com>
2722
2723 * elfxx-ia64.c (elfNN_ia64_check_relocs): Handle IPLT relocs.
2724 (allocate_dynrel_entries): Likewise.
2725 (elfNN_ia64_relocate_section): Likewise. Set REL addends correctly.
2726 (set_pltoff_entry): Likewise.
2727 (ia64_howto_table): Remove R_IA64_SEGBASE, and R_IA64_EPLT[ML]SB
2728 (elfNN_ia64_reloc_type_lookup): Likewise.
2729 (elfNN_ia64_install_value): Likewise.
2730 (elfNN_ia64_relocate_section): Likewise.
2731 * reloc.c (BFD_RELOC_IA64_SEGBASE): Remove.
2732 (BFD_RELOC_IA64_EPLTMSB, BFD_RELOC_IA64_EPLTLSB): Remove.
2733
2734 2000-11-16 Kazu Hirata <kazu@hxi.com>
2735
2736 * cpu-a29k.c: Fix formatting.
2737 * cpu-alpha.c: Likewise.
2738 * cpu-arm.c: Likewise.
2739 * cpu-avr.c: Likewise.
2740 * cpu-d10v.c: Likewise.
2741 * cpu-h8500.c: Likewise.
2742 * cpu-hppa.c: Likewise.
2743 * cpu-i370.c: Likewise.
2744 * cpu-i386.c: Likewise.
2745 * cpu-i960.c: Likewise.
2746 * cpu-ia64-opc.c: Likewise.
2747 * cpu-ia64.c: Likewise.
2748 * cpu-m32r.c: Likewise.
2749 * cpu-m68hc11.c: Likewise.
2750 * cpu-m68hc12.c: Likewise.
2751 * cpu-m68k.c: Likewise.
2752 * cpu-m88k.c: Likewise.
2753 * cpu-mips.c: Likewise.
2754 * cpu-ns32k.c: Likewise.
2755 * cpu-pj.c: Likewise.
2756 * cpu-powerpc.c: Likewise.
2757 * cpu-sh.c: Likewise.
2758 * cpu-sparc.c: Likewise.
2759 * cpu-tic54x.c: Likewise.
2760 * cpu-v850.c: Likewise.
2761 * cpu-vax.c: Likewise.
2762 * cpu-w65.c: Likewise.
2763 * cpu-we32k.c: Likewise.
2764 * cpu-z8k.c: Likewise.
2765 * dwarf1.c: Likewise.
2766 * dwarf2.c: Likewise.
2767
2768 2000-11-15 Kazu Hirata <kazu@hxi.com>
2769
2770 * coff-arm.c: Fix formatting.
2771 * coff-ppc.c: Likewise.
2772 * coff-rs6000.c: Likewise.
2773 * coff-sh.c: Likewise.
2774 * coff-sparc.c: Likewise.
2775 * coff-tic30.c: Likewise.
2776 * coff-tic54x.c: Likewise.
2777 * coff-tic80.c: Likewise.
2778 * coff-w65.c: Likewise.
2779 * coff-we32k.c: Likewise.
2780 * coff-z8k.c: Likewise.
2781
2782 2000-11-15 Richard Henderson <rth@redhat.com>
2783
2784 * elf64-alpha.c (elf64_alpha_check_relocs): Create the reloc
2785 section with the same ALLOC|LOAD flags as the source section.
2786
2787 2000-11-14 Jakub Jelinek <jakub@redhat.com>
2788
2789 * elf64-alpha.c (elf64_alpha_relax_opt_call): Only check bits used
2790 by STO_ALPHA constants.
2791
2792 2000-11-14 Kazu Hirata <kazu@hxi.com>
2793
2794 * coff-pmac.c: Fix formatting.
2795 * coff-ppc.c: Likewise.
2796
2797 2000-11-13 H.J. Lu <hjl@gnu.org>
2798
2799 * elflink.h (elf_link_add_object_symbols): Also add indirect
2800 symbols for common symbols with the default version.
2801
2802 2000-11-09 Philip Blundell <pb@futuretv.com>
2803
2804 * section.c (STD_SECTION): Set gc_mark flag.
2805
2806 2000-11-11 Kazu Hirata <kazu@hxi.com>
2807
2808 * coff-i960.c: Likewise.
2809 * coff-m68k.c: Likewise.
2810 * coff-m88k.c: Likewise.
2811 * coff-mcore.c: Likewise.
2812 * coff-mips.c: Likewise.
2813
2814 2000-11-11 Bernd Schmidt <bernds@cygnus.co.uk>
2815
2816 * elf32-sh.c (sh_elf_relocate_section): Ignore R_SH_NONE relocs.
2817
2818 2000-11-10 Kazu Hirata <kazu@hxi.com>
2819
2820 * coff-h8300.c: Fix formatting.
2821 * coff-h8500.c: Likewise.
2822 * coff-i386.c: Likewise.
2823 * coff-i860.c: Likewise.
2824 * coff-i960.c: Likewise.
2825 * coff-ia64.c: Likewise.
2826
2827 2000-11-09 Kazu Hirata <kazu@hxi.com>
2828
2829 * archive.c: Fix formatting.
2830 * archures.c: Likewise.
2831
2832 2000-11-07 Richard Henderson <rth@redhat.com>
2833
2834 * elfxx-ia64.c (elf64_ia64_final_link): New local unwind_output_sec.
2835 Set it before bfd_elf64_bfd_final_link call. Use it after the call.
2836 * section.c (bfd_set_section_contents): Call memcpy if
2837 section->contents set and location not equal to contents plus offset.
2838
2839 2000-11-08 Kazu Hirata <kazu@hxi.com>
2840
2841 * bfd-in.h: Fix formatting.
2842 * bfd-in2.h: Likewise.
2843 * bfd.c: Likewise.
2844 * binary.c: Likewise.
2845 * bout.c: Likewise.
2846 * coff-a29k.c: Likewise.
2847 * coff-alpha.c: Likewise.
2848 * coff-apollo.c: Likewise.
2849 * coff-aux.c: Likewise.
2850
2851 2000-11-07 Kazu Hirata <kazu@hxi.com>
2852
2853 * aix386-core.c: Fix formatting.
2854 * aoutf1.h: Likewise.
2855 * aoutx.h: Likewise.
2856 * archures.c: Likewise.
2857 * armnetbsd.c: Likewise.
2858
2859 2000-11-07 Alan Modra <alan@linuxcare.com.au>
2860
2861 * coff-h8300.c (special): Adjust reloc address.
2862
2863 2000-11-06 Steve Ellcey <sje@cup.hp.com>
2864
2865 * archures.c (bfd_mach_ia64_elf64, bfd_mach_ia64_elf32): Add defines
2866 to differentiate elf32 and elf64 on ia64.
2867 * bfd-in2.h: Regenerate.
2868 * config.bfd: Add target for "ia64*-*-hpux*".
2869 * configure.in: Add bfd_elf32_ia64_big_vec to selvecs switch.
2870 * configure: Regenerate.
2871 * cpu-ia64.c (bfd_ia64_elf32_arch): Add elf32 arch info structure.
2872 * targets.c: Add bfd_target bfd_elf32_ia64_big_vec.
2873
2874 * Makefile.am: Make elf32-ia64.c and elf64-ia64.c derived objects
2875 from elfxx-ia64.c. Add depenency rules for making elf32-ia64.lo.
2876 * Makefile.in: Regnerate.
2877 * elf64-ia64.c: Deleted.
2878 * elfxx-ia64.c: New file, paramaterized version of elf64-ia64.c.
2879
2880 2000-11-06 Kazu Hirata <kazu@hxi.com>
2881
2882 * aout-adobe.c: Fix formatting.
2883 * aout-arm.c: Likewise.
2884 * aout-cris.c: Likewise.
2885 * aout-encap.c: Likewise.
2886 * aout-ns32k.c: Likewise.
2887 * aout-target.h: Likewise.
2888 * aout-tic30.c: Likewise.
2889
2890 2000-11-05 Philip Blundell <philb@gnu.org>
2891
2892 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Always permit
2893 BFDs containing no sections to be merged, regardless of their flags.
2894
2895 2000-11-04 Philip Blundell <philb@gnu.org>
2896
2897 * elf32-arm.h (elf32_arm_relocate_section): Suppress error message
2898 if a relocation for an undefined symbol also results in an
2899 overflow.
2900
2901 2000-11-06 Christopher Faylor <cgf@cygnus.com>
2902
2903 * config.bfd: Add support for Sun Chorus.
2904
2905 2000-11-05 David O'Brien <obrien@FreeBSD.org>
2906
2907 * configure.in: Recognize alpha-*-freebsd*.
2908 * configure: Regenerate.
2909
2910 2000-11-02 Luciano Gemme <ishitawa@yahoo.com>
2911
2912 * srec.c (CHUNK): Rename to DEFAULT_CHUNK.
2913 (Chunk): New global variable set by a parameter in objcopy.c.
2914 (S3Forced): New global variable set by a parameter in
2915 objcopy.c.
2916 (srec_set_section_contents): If S3Forced is true, always generate
2917 S3 records.
2918 (srec_write_section): Use 'Chunk' to limit maximum length of S
2919 records.
2920
2921 2000-11-02 Per Lundberg <plundis@chaosdev.org>
2922
2923 * config.bfd: Add support for i[3456]86-chaosdev-storm-chaos.
2924 * Makefile.in: Regenerate.
2925 * bfd-in2.h: Regenerate.
2926 * po/bfd.pot: Regenerate.
2927
2928 2000-10-31 Philip Blundell <philb@gnu.org>
2929
2930 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Only handle
2931 EF_SOFT_FLOAT if it is defined.
2932
2933 2000-10-27 Philip Blundell <philb@gnu.org>
2934
2935 * elf32-arm.h (elf32_arm_copy_private_bfd_data): Don't refuse
2936 attempts to mix PIC code with non-PIC, just mark the output as
2937 being position dependent.
2938 (elf32_arm_merge_private_bfd_data): Likewise. Print an error
2939 message for EF_SOFT_FLOAT mismatches. Display diagnostics for
2940 all mismatches, not just the first one.
2941
2942 2000-10-25 Chris Demetriou <cgd@sibyte.com>
2943
2944 * ieee.c (ieee_archive_p): Plug one of many possible
2945 memory leaks in error handling.
2946
2947 2000-10-20 Jakub Jelinek <jakub@redhat.com>
2948
2949 * elf32-sparc.c (elf32_sparc_merge_private_bfd_data,
2950 elf32_sparc_object_p, elf32_sparc_final_write_processing):
2951 Support v8plusb.
2952 * elf64-sparc.c (sparc64_elf_merge_private_bfd_data,
2953 sparc64_elf_object_p): Support v9b.
2954 * archures.c: Declare v8plusb and v9b machines.
2955 * bfd-in2.h: Ditto.
2956 * cpu-sparc.c: Ditto.
2957
2958 2000-10-16 Geoffrey Keating <geoffk@shoggoth.cygnus.com>
2959
2960 * elf64-sparc.c (sparc64_elf_relocate_section): Clear the location
2961 of a GOT reloc.
2962
2963 * elf32-ppc.c (SYMBOL_REFERENCES_LOCAL): New macro.
2964 (SYMBOL_CALLS_LOCAL): New macro.
2965 (ppc_elf_adjust_dynamic_symbol): Use SYMBOL_CALLS_LOCAL.
2966 (ppc_elf_check_relocs): Use SYMBOL_REFERENCES_LOCAL.
2967 (ppc_elf_finish_dynamic_symbol): Use SYMBOL_REFERENCES_LOCAL.
2968 (ppc_elf_relocate_section): Use flag variable to determine
2969 whether the relocation refers to a local symbol.
2970 Test whether a PLTREL24 reloc will produce a reloc by looking
2971 to see whether a PLT entry was made.
2972
2973 2000-10-14 Geoffrey Keating <geoffk@shoggoth.cygnus.com>
2974
2975 * elf32-ppc.c (ppc_elf_finish_dynamic_symbol): Don't make PLT
2976 entries that could serve as a definition for a weak symbol.
2977
2978 2000-10-13 Ulf Carlsson <ulfc@engr.sgi.com>
2979
2980 From Ralf Baechle <ralf@gnu.org>
2981
2982 * elf32-mips.c (mips_elf_create_dynamic_relocation): New argument
2983 local_p. Add symbol value only for non-R_MIPS_REL32 relocations
2984 against local symbols.
2985 (_bfd_mips_elf_finish_dynamic_sections): Undo patch from 2000-10-01.
2986
2987 2000-10-12 Alan Modra <alan@linuxcare.com.au>
2988
2989 * section.c (struct sec): Add kept_section.
2990 (struct bfd_comdat_info): Remove sec, we can use above.
2991 (STD_SECTION): Add initializer.
2992 (bfd_make_section_anyway): Init here too.
2993
2994 * bfd-in2.h: Regenerate.
2995
2996 * elflink.h (elf_link_add_object_symbols): Remove unnecessary
2997 zeroing of `flags'.
2998 (elf_link_input_bfd): Set all asection->symbol->value's here, and
2999 fudge values for discarded link-once section symbols.
3000
3001 * elf64-hppa.c: Include alloca-conf.h
3002
3003 2000-10-11 Alan Modra <alan@linuxcare.com.au>
3004
3005 * elf.c (swap_out_syms): Revert 2000-10-07 changes.
3006
3007 * ieee.c (ieee_make_empty_symbol): Oops, bfd_zalloc needs another arg.
3008
3009 2000-10-10 Alan Modra <alan@linuxcare.com.au>
3010
3011 * ieee.c (ieee_make_empty_symbol): Use bfd_zalloc, not bfd_zmalloc.
3012
3013 2000-10-10 Tom Rix <trix@redhat.com>
3014
3015 * section.c (bfd_make_section_anyway): Release newsect ptr when
3016 newsect->symbol fails to alloc. Use bfd_release instead of free.
3017
3018 2000-10-09 Richard Henderson <rth@cygnus.com
3019
3020 * elf64-ia64.c (elf64_ia64_unwind_entry_compare_bfd): New.
3021 (elf64_ia64_unwind_entry_compare): New.
3022 (elf64_ia64_final_link): Sort the .IA_64.unwind section.
3023
3024 2000-10-07 Alan Modra <alan@linuxcare.com.au>
3025
3026 * elflink.h (size_dynamic_sections): Don't create various tags if
3027 .dynstr is excluded from the link. Don't set first dynsym entry
3028 if dynsymcount is zero.
3029 (elf_bfd_final_link): Don't try to swap out dynamic syms if
3030 .dynsym excluded from the link. Don't try to write any dynamic
3031 sections excluded from the link.
3032
3033 * elf.c (swap_out_syms): Handle global section symbols.
3034
3035 2000-10-05 DJ Delorie <dj@redhat.com>
3036
3037 * peigen.c (_bfd_pei_swap_scnhdr_out): note extended relocs
3038 * coffcode.h (coff_set_alignment_hook): read extended reloc count
3039 (coff_write_relocs): write extended reloc count
3040 (coff_write_object_contents): account for extended relocs
3041
3042 2000-10-05 Jim Wilson <wilson@cygnus.com>
3043
3044 * elf-bfd.h (struct elf_backend_data): Add elf_backend_section_flags
3045 field.
3046 * elf.c (_bfd_elf_make_section_from_shdr): Call the
3047 elf_backend_section_flags function.
3048 * elf64-ia64.c (elf64_ia64_section_from_shdr): Delete flag conversion
3049 code.
3050 (elf64_ia64_section_flags): New function containing flag conversion
3051 code.
3052 (elf_backend_section_flags): Define to elf64_ia64_section_flags.
3053 * elfxx-target.h (elf_backend_section_flags): Define.
3054 (elfNN_bed): Initialize elf_backend_section_flags field.
3055
3056 2000-10-02 Alan Modra <alan@linuxcare.com.au>
3057
3058 * elf32-hppa.c (elf32_hppa_check_relocs): Correct call to
3059 _bfd_elf32_gc_record_vtable. Correct a comment.
3060
3061 2000-10-01 Ulf Carlsson <ulfc@engr.sgi.com>
3062
3063 From Ralf Baechle <ralf@gnu.org>
3064
3065 * elf32-mips.c (_bfd_mips_elf_finish_dynamic_sections): Mark gld
3066 produces binaries with got[1] = 0x80000001 to differenciate them
3067 for the dynamic linker from the broken binaries produced by old
3068 versions.
3069
3070 2000-09-30 Petr Sorfa <petrs@sco.com>
3071
3072 * elf.c (elfcore_grok_pstatus): Check for size of pxstatus_t.
3073 (elfcore_grok_lwpstatus): Check for size of lwpxstatus_t.
3074 * configure.in: Add check for pxstatus_t and lwpxstatus_t.
3075 * configure: Regenerate.
3076
3077 2000-09-27 Hans-Peter Nilsson <hp@axis.com>
3078
3079 Define two bfd_targets for absence and presence of leading
3080 underscore on symbols. Make sure to only link same kind.
3081 * elf32-cris.c (cris_elf_object_p,
3082 cris_elf_final_write_processing, cris_elf_print_private_bfd_data,
3083 cris_elf_merge_private_bfd_data): New.
3084 (elf_backend_object_p, elf_backend_final_write_processing,
3085 bfd_elf32_bfd_print_private_bfd_data,
3086 bfd_elf32_bfd_merge_private_bfd_data): Define.
3087 <Target vector definition>: Include elf32-target.h twice with
3088 different macro settings:
3089 (TARGET_LITTLE_SYM): First as bfd_elf32_cris_vec, then as
3090 bfd_elf32_us_cris_vec.
3091 (TARGET_LITTLE_NAME): First as "elf32-cris", then "elf32-us-cris".
3092 (elf_symbol_leading_char): First as 0, then '_'.
3093 (INCLUDED_TARGET_FILE): Define for second include of elf32-target.h.
3094 * config.bfd (cris-*-*): Add bfd_elf32_us_cris_vec to targ_selvecs.
3095 * configure.in (bfd_elf32_cris_vec, cris_aout_vec): New vector.
3096 * configure: Regenerate.
3097 * targets.c: Declare bfd_elf32_us_cris_vec.
3098 * po/bfd.pot: Regenerate.
3099
3100 2000-09-29 Momchil Velikov <velco@fadata.bg>
3101
3102 * elf32-arm.h (arm_add_to_rel): Correctly adjust the addend for
3103 R_ARM_THM_PC22 relocations.
3104
3105 2000-09-29 NIIBE Yutaka <gniibe@chroot.org>
3106
3107 * elflink.h (elf_link_add_object_symbols): Don't bfd_release runpath.
3108
3109 2000-09-29 Momchil Velikov <velco@fadata.bg>
3110
3111 * elf.c (elf_fake_sections): Do not mark the section SHT_NOBITS if
3112 is has the SEC_HAS_CONTENTS flag set.
3113
3114 2000-09-28 \81Örjan Friberg <orjanf@axis.com>
3115 Hans-Peter Nilsson <hp@axis.com>
3116
3117 * aout-cris.c (N_TXTADDR): Define.
3118
3119 2000-09-28 John David Anglin <dave@hiauly1.hia.nrc.ca>
3120
3121 * som.c: Include alloca-conf.h.
3122 * Makefile.am: "make dep-am"
3123 * Makefile.in: Regenerate.
3124
3125 2000-09-27 Alan Modra <alan@linuxcare.com.au>
3126
3127 * elf32-hppa.c (plt_stub): New.
3128 (PLT_STUB_ENTRY): Define.
3129 (elf32_hppa_link_hash_table): Change multi_subspace to packed
3130 boolean. Add need_plt_stub, has_12bit_branch and has_17bit_branch.
3131 (elf32_hppa_link_hash_table_create): Init to suit.
3132 (elf32_hppa_check_relocs): Set has_12bit_branch and
3133 has_17bit_branch as appropriate.
3134 (elf32_hppa_adjust_dynamic_symbol): Set need_plt_stub for
3135 non-local functions.
3136 (elf32_hppa_size_dynamic_sections): Correct setting of reltext.
3137 Add space for plt_stub as needed.
3138 (elf32_hppa_finish_dynamic_symbol): Point .plt entries for global
3139 functions at plt_stub.
3140 (elf32_hppa_finish_dynamic_sections): Write plt_stub.
3141 (elf32_hppa_create_dynamic_sections): Leave .plt executable.
3142
3143 * elf32-hppa.h (elf32_hppa_size_stubs): Add group_size param.
3144 * elf32-hppa.c (elf32_hppa_size_stubs): Likewise. Use it instead
3145 of fixed size, and if negative, disable handling of input sections
3146 before stub section. Set up default stub group size depending
3147 on detected branch relocs.
3148 (hppa_build_one_stub): Use lrsel and rrsel for import stubs to
3149 ensure different offsets from sym_value aren't rounded to
3150 different 2k blocks. Use lrsel and rrsel for other stubs too for
3151 consistency rather than necessity.
3152 (elf32_hppa_check_relocs): Handle R_PARISC_DIR14F.
3153 (final_link_relocate): Likewise.
3154 (elf32_hppa_relocate_section): Likewise.
3155
3156 * elf-hppa.h (elf_hppa_howto_table): Add R_PARISC_DIR14F reloc.
3157 (_bfd_elf_hppa_gen_reloc_type): Generate them.
3158 (elf_hppa_final_link_relocate): Handle them.
3159 (elf_hppa_relocate_insn): Likewise.
3160 (_bfd_elf_hppa_gen_reloc_type): Add missing e_ldsel and e_rdsel cases.
3161
3162 2000-09-26 Hans-Peter Nilsson <hp@axis.com>
3163
3164 * elfcode.h (elf_object_p): Preserve and clear abfd section
3165 information. Restore at error.
3166
3167 2000-09-26 Paul Sokolovsky <Paul.Sokolovsky@technologist.com>
3168
3169 * peigen.c (_bfd_pei_swap_aouthdr_in): If some DataDirectory
3170 is empty, make sure that its rva also 0. NT loader dislikes
3171 having otherwise.
3172
3173 2000-09-26 Steve Ellcey <sje@cup.hp.com>
3174
3175 * som.c (som_bfd_derive_misc_symbol_info): Make weak symbols
3176 global by default.
3177
3178 2000-09-21 Alan Modra <alan@linuxcare.com.au>
3179
3180 * elf32-hppa.c (elf32_hppa_check_relocs): Fix weak sym handling in
3181 currently unused RELATIVE_DYNAMIC_RELOCS code.
3182 (hppa_discard_copies): Likewise.
3183 (elf32_hppa_size_stubs): Size `input_list' array correctly. Correct
3184 comments. Don't check non-code output sections for stub grouping.
3185
3186 2000-09-20 Alan Modra <alan@linuxcare.com.au>
3187
3188 * section.c (bfd_get_unique_section_name): Return NULL if
3189 bfd_malloc fails.
3190
3191 2000-09-19 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3192
3193 * elf32-m68k.c (elf_cpu32_plt0_entry): Change the PLT entry 0
3194 instruction sequence to actually work.
3195 (elf_m68k_finish_dynamic_sections): Change the patch-in offset
3196 accordingly.
3197
3198 2000-09-18 Alexandre Oliva <aoliva@redhat.com>
3199
3200 * elf32-sh.c (sh_elf_relocate_section): Use
3201 _bfd_final_link_relocate to apply the relocation against a section
3202 symbol, when doing relocatable links.
3203
3204 2000-09-18 Alan Modra <alan@linuxcare.com.au>
3205
3206 * elf32-hppa.c (elf32_hppa_stub_hash_entry): Rename input_section
3207 to id_sec.
3208 (stub_hash_newfunc): Here too.
3209 (hppa_add_stub): And here.
3210 (elf32_hppa_link_hash_table): Remove stub_section_created,
3211 reloc_section_created, first_init_sec and first_fini_sec. Add
3212 stub_group.
3213 (elf32_hppa_link_hash_table_create): Init to suit.
3214 (hppa_get_stub_entry): Add support for grouping stub sections.
3215 (hppa_add_stub): Likewise. Remove sec_count param and init/fini
3216 section code. Index stub vars by section->id.
3217 (elf32_hppa_size_stubs): Likewise. Remove duplicated function
3218 exit paths. Zap allocation of above removed vars. Refine
3219 link-once test.
3220
3221 * elf32-hppa.h (elf32_hppa_size_stubs): Add output_bfd param.
3222 * elf32-hppa.c (elf32_hppa_size_stubs): Likewise.
3223 (hppa_get_stub_entry): Pass in pointer to elf32_hppa_link_hash_table
3224 rather than pointer to bfd_link_info.
3225 (hppa_add_stub): Likewise.
3226 (final_link_relocate): Likewise.
3227
3228 2000-09-17 David Huggins-Daines <dhd@linuxcare.com>
3229
3230 (elf32_hppa_size_stubs): Don't try to build stubs for discarded
3231 link-once sections.
3232
3233 2000-09-16 Alexandre Oliva <aoliva@redhat.com>
3234
3235 * elf32-sh.c (ELF_MAXPAGESIZE): Define to 128, to match
3236 ld/emulparams/shelf.sh.
3237
3238 2000-09-10 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3239
3240 * elf32-m68k.c (bfd_m68k_elf32_create_embedded_relocs): New function.
3241 * bfd-in.h (bfd_m68k_elf32_create_embedded_relocs): Add declaration.
3242 * bfd-in2.h: Regenerate.
3243
3244 2000-09-15 Kenneth Block <Kenneth.Block@compaq.com>
3245
3246 * elf64-alpha.c (elf64_alpha_relax_with_lituse): ld performs
3247 LITUSE relocations incorrectly if -relax is specified on the ld
3248 command line and the displacement field of the load or store
3249 instruction is non-zero. (Patch by paul.winalski@compaq.com)
3250
3251 2000-09-15 Alan Modra <alan@linuxcare.com.au>
3252
3253 * elf32-hppa.c (hppa_add_stub): Dont set first_init_sec and
3254 first_fini_sec here.
3255 (elf32_hppa_size_stubs): Instead correctly find the first .init
3256 and .fini section here.
3257
3258 2000-09-15 David Huggins-Daines <dhd@linuxcare.com>
3259
3260 * elf32-hppa.c (clobber_millicode_symbols): New function.
3261 (elf32_hppa_size_dynamic_sections): Call it.
3262
3263 2000-09-14 Alan Modra <alan@linuxcare.com.au>
3264
3265 * elf32-hppa.c (elf32_hppa_link_hash_entry): Make pic_call
3266 packed. Add plabel, plt_abs packed booleans.
3267 (hppa_link_hash_newfunc): Init new fields.
3268 (PLABEL_PLT_ENTRY_SIZE): Define.
3269 (hppa_stub_name): Use size_t len vars.
3270 (hppa_add_stub): Likewise.
3271 (elf32_hppa_build_stubs): Likewise.
3272 (hppa_build_one_stub): Kill some compiler warnings.
3273 (elf32_hppa_check_relocs): Always generate a plt entry for PLABELs
3274 if dynamic linking. Munge the local plt offsets into
3275 local_got_refcounts. Set h->plabel for all global PLABELs. Use
3276 size_t len vars. Add assert for plabel addend.
3277 (elf32_hppa_gc_sweep_hook): Sweep local plt entries too.
3278 (elf32_hppa_hide_symbol): New function.
3279 (elf_backend_hide_symbol): Define.
3280 (elf32_hppa_adjust_dynamic_symbol): Don't throw away plt entries
3281 with h->plabel set. Don't make plt entries to have dynamic syms
3282 when they have been forced local. If plt entry is used by a
3283 plabel, make it PLABEL_PLT_ENTRY_SIZE.
3284 (elf32_hppa_size_dynamic_sections): Set plt_abs for init fns.
3285 Set up .plt offsets for local syms.
3286 (elf32_hppa_relocate_section): Initialise plt entries for local
3287 syms. Leave weak undefined plabels zero. Make global plabel
3288 relocs against function symbol, and leave the addend zero.
3289 Use *ABS* DIR32 relocs instead of SEGREL32 for dynamic got relocs.
3290 (elf32_hppa_finish_dynamic_symbol): Set up IPLT relocs for
3291 non-dynamic syms. Init extra plt for plabels. Use *ABS* DIR32
3292 relocs instead of SEGREL32 for dynamic got relocs.
3293 (elf32_hppa_finish_dynamic_sections): Reserve one more .got entry.
3294 (elf_backend_got_header_size): Adjust.
3295 (elf32_hppa_set_gp): Calculate an "ideal" LTP.
3296
3297 * elf32-hppa.c (LONG_BRANCH_VIA_PLT): Define.
3298 (hppa_type_of_stub): Use it instead of #if 0
3299 (hppa_discard_copies): Use it here too.
3300 (elf32_hppa_size_dynamic_sections): And here.
3301
3302 * elf32-hppa.c (elf32_hppa_link_hash_table): Remove `offset' field.
3303 (elf32_hppa_link_hash_table_create): And here.
3304 (hppa_build_one_stub): And here. Instead keep track of stub
3305 offset using _raw_size.
3306 (elf32_hppa_size_stubs): Likewise.
3307 (elf32_hppa_build_stubs): Likewise.
3308 (hppa_size_one_stub): Likewise. Resize reloc section too.
3309
3310 * elf32-hppa.c (hppa_add_stub): Correct first_init_sec and
3311 first_fini_sec handling. Don't search for reloc section or set
3312 hplink->reloc_section_created here.
3313 (elf32_hppa_size_stubs): Instead search for reloc sections, and
3314 set reloc_section_created here.
3315 (hppa_handle_PIC_calls): Set ELF_LINK_HASH_NEEDS_PLT.
3316 (elf32_hppa_size_dynamic_sections): Make a .plt entry for DT_INIT
3317 and DT_FINI.
3318 (elf32_hppa_finish_dynamic_sections): Set DT_INIT and DT_FINI.
3319
3320 * elf32-hppa.c (hppa_build_one_stub): Replace `elf_hash_table (info)'
3321 with `hplink->root.'.
3322 (elf32_hppa_check_relocs): Likewise.
3323 (elf32_hppa_gc_sweep_hook): Likewise.
3324 (elf32_hppa_adjust_dynamic_symbol): Likewise.
3325 (hppa_handle_PIC_calls): Likewise.
3326 (elf32_hppa_size_dynamic_sections): Likewise.
3327 (elf32_hppa_set_gp): Likewise.
3328 (elf32_hppa_relocate_section): Likewise.
3329 (elf32_hppa_finish_dynamic_symbol): Likewise.
3330 (elf32_hppa_finish_dynamic_sections): Likewise.
3331
3332 From David Huggins-Daines <dhd@linuxcare.com>
3333 * elf32-hppa.c (hppa_type_of_stub): Generate import stubs for
3334 defined weak symbols in shared links.
3335 (final_link_relocate): Calls to defined weak symbols in shared
3336 objects must go via import stubs, as the target might not be known
3337 at link time.
3338
3339 2000-09-14 Alexandre Oliva <aoliva@redhat.com>
3340
3341 * elf32-sh.c (sh_elf_howto_table): Moved R_SH_GOT32, R_SH_PLT32,
3342 R_SH_COPY, R_SH_GLOB_DAT, R_SH_JMP_SLOT, R_SH_RELATIVE,
3343 R_SH_GOTOFF, R_SH_GOTPC) to the range from 160 to 167. Replaced
3344 the original entries with EMPTY_HOWTOs, and added new ones to fill
3345 in the gap.
3346 (sh_elf_info_to_howto): Make sure the new gap isn't used.
3347 (sh_elf_relocate_section): Likewise.
3348
3349 2000-09-13 Anders Norlander <anorland@acc.umu.se>
3350
3351 * cpu-mips.c (arch_info_struct): Add mips:4K
3352 * bfd-in2.h (bfd_mach_mips4K): New define.
3353 * archures.c: Add bfd_mach_mips4K to comment.
3354 * elf32-mips.c (_bfd_mips_elf_final_write_processing): Return
3355 E_MIPS_ARCH_2 for bfd_mach_mips4K.
3356
3357 2000-09-13 Marco Franzen <marcof@thyron.com>
3358
3359 * som.c (som_write_symbol_strings): Do not used fixed buffers,
3360 use size_t as a counter.
3361 (som_write_space_strings): Similarly.
3362
3363 2000-09-12 Jason Eckhardt <jle@cygnus.com>
3364
3365 * elf32-i860.c (elf32_i860_relocate_pc26): New function
3366 and prototype.
3367 (elf32_i860_relocate_section): Invoke new function from here.
3368
3369 2000-09-11 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3370
3371 * elf.c (_bfd_elf_make_section_from_shdr): Make debug_sec_names
3372 static.
3373
3374 2000-09-10 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3375
3376 * coff-m68k.c (bfd_m68k_coff_create_embedded_relocs): Emit 8 NULs for
3377 target section name instead of dumping core when the target symbol is
3378 undefined.
3379
3380 2000-09-09 Kazu Hirata <kazu@hxi.com>
3381
3382 * riscix.c: Remove DEFUN.
3383
3384 2000-09-08 Nick Clifton <nickc@redhat.com>
3385
3386 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Do not
3387 initialise flags in output bfd if the input bfd is the default
3388 architecture with the default flags.
3389
3390 2000-09-08 Kazu Hirata <kazu@hxi.com>
3391
3392 * archive.c: Fix formatting.
3393 * coff-arm.c: Likewise.
3394 * doc/chew.c: Likewise.
3395
3396 2000-09-08 Alan Modra <alan@linuxcare.com.au>
3397
3398 * section.c (bfd_get_unique_section_name): Put a dot before the
3399 numeric suffix.
3400
3401 2000-09-07 Kazu Hirata <kazu@hxi.com>
3402
3403 * doc/chew.c: Remove all uses of DEFUN and DEFUN_VOID.
3404 * elf.c: Fix formatting.
3405
3406 2000-09-07 Alexandre Oliva <aoliva@redhat.com>
3407
3408 * config.bfd (sh-*-linux*): Added.
3409 * configure.in (bfd_elf32_shlin_vec, bfd_elf32_shblin_vec): New.
3410 * targets.c: Declare them.
3411 * elf32-sh-lin.c: New file.
3412 * Makefile.am: Compile it.
3413 * elf32-sh.c: Don't override defines from elf32-sh-lin.c.
3414 * configure, Makefile.in: Rebuilt.
3415
3416 2000-09-06 Geoffrey Keating <geoffk@cygnus.com>
3417
3418 * xcofflink.c (xcoff_link_input_bfd): Include the .tocbss
3419 pseduo-section when determining where the TOC ends.
3420
3421 * coff-rs6000.c (_bfd_xcoff_swap_aux_out): Use bfd_h_put_16 to
3422 output x_tvndx as it is only two bytes wide.
3423
3424 * coff-rs6000.c (xcoff_howto_table): A modifiable branch-absolute
3425 reloc is 26 or 32 bits wide.
3426
3427 * coff-rs6000.c (_bfd_xcoff_rtype2howto): The bitsize is irrelevant
3428 for relocs that don't change anything. Also look at the full
3429 6 bits of bitsize.
3430
3431 2000-09-06 Philip Blundell <philb@gnu.org>
3432
3433 * config.bfd (arm*-*-uclinux*): New target.
3434
3435 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
3436
3437 * configure: Rebuilt with new libtool.m4.
3438
3439 2000-09-06 Alan Modra <alan@linuxcare.com.au>
3440
3441 * section.c (bfd_get_unique_section_name): Avoid c++ reserved
3442 word for variable name.
3443 * bfd-in2.h: Regenerate.
3444
3445 2000-09-05 Nick Clifton <nickc@redhat.com>
3446
3447 * config.in: Regenerate.
3448 * libbfd.h: Regenerate.
3449 * po/bfd.pot: Regenerate.
3450 * doc/bfdint.texi: Remove CVS date string - it foils compares with
3451 local versions.
3452
3453 2000-09-05 Steven Johnson <sbjohnson@ozemail.com.au>
3454
3455 * cpu-powerpc.c (arch_info_struct): Added MPC860 Family entry.
3456
3457 2000-09-05 Alan Modra <alan@linuxcare.com.au>
3458
3459 Shared library and PIC support.
3460 * elf32-hppa.c (PLT_ENTRY_SIZE): New.
3461 (GOT_ENTRY_SIZE): New.
3462 (ELF_DYNAMIC_INTERPRETER): New.
3463 (STUB_SUFFIX): Define.
3464 (LONG_BRANCH_PIC_IN_SHLIB): Define.
3465 (RELATIVE_DYNAMIC_RELOCS): Define.
3466 (enum elf32_hppa_stub_type): New.
3467 (struct elf32_hppa_stub_hash_entry): Rename offset to
3468 stub_offset. Add a number of new fields.
3469 (struct elf32_hppa_link_hash_entry): New.
3470 (struct elf32_hppa_link_hash_table): Add numerous fields. Remove
3471 global_value.
3472 (elf32_hppa_hash_table): Rename to hppa_link_hash_table.
3473 (elf32_hppa_stub_hash_lookup): Rename to hppa_stub_hash_lookup.
3474 (elf32_hppa_stub_hash_newfunc): Rename to stub_hash_newfunc. Init
3475 new fields.
3476 (hppa_link_hash_newfunc): New function.
3477 (elf32_hppa_link_hash_table_create): Use above function. Init new
3478 fields.
3479 (elf32_hppa_stub_name): Rename to hppa_stub_name. Pass in reloc
3480 instead of addend, and remove sym_name from args. Don't use
3481 symbol name for local syms, instead use sym index.
3482 (elf32_hppa_size_of_stub): Rename to hppa_type_of_stub, and return
3483 stub type rather than size. Pass in hash and handle import stub
3484 case. Also pass in reloc instead of offset so we can calculate
3485 PCREL22F and PCREL12F branches properly.
3486 (elf32_hppa_build_one_stub): Rename to hppa_build_one_stub. Build
3487 import and export stubs too.
3488 (elf32_hppa_size_one_stub): Rename to hppa_size_one_stub. Handle
3489 import and export stub sizing.
3490 (elf32_hppa_check_relocs): New function.
3491 (elf32_hppa_adjust_dynamic_symbol): New function.
3492 (hppa_discard_copies): New function.
3493 (elf32_hppa_size_dynamic_sections): New function.
3494 (elf_backend_size_dynamic_sections): Define.
3495 (elf32_hppa_finish_dynamic_symbol): New function.
3496 (elf_backend_finish_dynamic_symbol): Define.
3497 (elf32_hppa_size_stubs): Stash params in link hash table, and move
3498 some local vars into the link hash table too. For shared links,
3499 trundle over function syms, generating export stubs. Handle
3500 PCREL22F branches. Break out stub creation code from here..
3501 (hppa_add_stub): .. to here. New function.
3502 (elf32_hppa_final_link): Rename to elf32_hppa_set_gp, and don't
3503 call the bfd linker. Use elf_gp to record global pointer.
3504 Calculate a value from sections if $global$ is missing.
3505 (bfd_elf32_bfd_final_link): Define as _bfd_elf32_gc_common_final_link.
3506 (elf32_hppa_gc_mark_hook): New function.
3507 (elf_backend_gc_mark_hook): Define.
3508 (elf32_hppa_gc_sweep_hook): New function.
3509 (elf_backend_gc_sweep_hook): Define.
3510 (elf32_hppa_bfd_final_link_relocate): Rename to final_link_relocate.
3511 Add rel to args, and remove howto, input_bfd, offset, addend,
3512 sym_name as we can recalculate these locally. Handle calls to
3513 dynamic objects, extra PIC relocs, PCREL22F branches. Change
3514 handling of undefined weak syms. Check that stubs are in range.
3515 Only look for import stubs on PCREL17F and PCREL22F relocs. Add
3516 message on hitting a DPREL21L reloc that needs fixing. Subtract
3517 off PC for PCREL14F. Break out code that does a stub lookup from
3518 here..
3519 (hppa_get_stub_entry): ..to here. New function.
3520 (elf32_hppa_relocate_insn): Merge into final_link_relocate.
3521 (elf32_hppa_relocate_section): Handle got and plt relocs, dynamic
3522 relocs, etc. etc.
3523 (elf32_hppa_finish_dynamic_sections): New function.
3524 (elf_backend_finish_dynamic_sections): Define.
3525 (elf_backend_final_write_processing) Define.
3526 (hppa_handle_PIC_calls): New function.
3527 (elf32_hppa_build_stubs): Call it. Pass link_info to
3528 hppa_build_one_stub.
3529 (elf32_hppa_create_dynamic_sections): New function
3530 to create .plt and .got then set .plt flags correctly.
3531 (elf_backend_create_dynamic_sections): Define.
3532 (elf32_hppa_object_p): New function.
3533 (elf_backend_object_p): Define.
3534 (elf32_hppa_elf_get_symbol_type): New function.
3535 (elf_backend_get_symbol_type): Define.
3536 (elf_backend_can_gc_sections): Define.
3537 (elf_backend_want_got_plt): Define.
3538 (elf_backend_plt_alignment): Set to 2.
3539 (elf_backend_plt_readonly): Define.
3540 (elf_backend_want_plt_sym): Define.
3541 (elf_backend_got_header_size): Reserve one entry.
3542
3543 * elf32-hppa.h (elf32_hppa_build_stubs): Don't pass stub bfd.
3544 (elf32_hppa_size_stubs): Pass in multi_subspace.
3545 (elf32_hppa_set_gp): Declare.
3546
3547 * section.c (SEC_HAS_GOT_REF): Define new flag for asection.
3548 (bfd_get_unique_section_name): New function.
3549 * bfd-in2.h: Regenerate.
3550
3551 * elf64-hppa.c (elf64_hppa_check_relocs): Handle R_PARISC_PCREL12F.
3552 (elf64_hppa_size_dynamic_sections): Remove the FIXME at bfd_zalloc
3553 comment.
3554
3555 From David Huggins-Daines <dhd@linuxcare.com>
3556 * elf64-hppa.c (elf64_hppa_check_relocs): Fix a warning.
3557 (elf64_hppa_mark_exported_functions): Set dyn_h->st_shndx.
3558 (elf64_hppa_link_output_symbol_hook): Test dyn_h->st_shndx has
3559 been updated in finish_dynamic_symbol before modifying function
3560 symbol.
3561
3562 * elf-hppa.h (elf_hppa_howto_table): Restructure into groups of
3563 eight entries. Replace NULL with bfd_elf_generic_reloc. Add
3564 R_PARISC_GNU_VTENTRY, R_PARISC_GNU_VTINHERIT and R_PARISC_PCREL12F.
3565 (_bfd_elf_hppa_gen_reloc_type): Handle R_PARISC_GNU_VT*. Add some
3566 comments. Handle format == 12 for R_HPPA_PCREL_CALL.
3567 (elf_hppa_final_link_relocate): Handle R_PARISC_PCREL12F.
3568 (elf_hppa_relocate_insn): Likewise. Reformat some comments.
3569 (elf_hppa_final_write_processing): Expose it for ARCH_SIZE == 32.
3570
3571 From David Huggins-Daines <dhd@linuxcare.com>
3572 * elf-hppa.h (elf_hppa_is_local_label_name): Accept the SysV/ELF
3573 style of local labels as well.
3574
3575 2000-09-03 Philip Blundell <philb@gnu.org>
3576
3577 * elf32-arm.h (elf32_arm_relocate_section): Don't try to relocate
3578 references to undefined symbols in debugging sections.
3579
3580 2000-09-02 H.J. Lu <hjl@gnu.org>
3581
3582 * reloc.c (BFD_RELOC_SH_COPY, BFD_RELOC_SH_GLOB_DAT,
3583 BFD_RELOC_SH_JMP_SLOT, BFD_RELOC_SH_RELATIVE,
3584 BFD_RELOC_SH_GOTPC): Move them from the MIPS section to the SH
3585 section.
3586
3587 2000-09-02 Jason Eckhardt <jle@cygnus.com>
3588
3589 * elf32-i860.c (bfd_elf32_bfd_is_local_label_name): Define macro.
3590 (elf32_i860_is_local_label_name): New function and prototype.
3591
3592 2000-09-02 Nick Clifton <nickc@redhat.com>
3593
3594 * configure.in: Increase version number to 2.10.91.
3595 * configure: Regenerate.
3596 * aclocal.m4: Regenerate.
3597 * config.in: Regenerate.
3598 * po/bfd.pot: Regenerate.
3599
3600 2000-09-02 Daniel Berlin <dberlin@redhat.com>
3601
3602 * elf.c (_bfd_elf_make_section_from_shdr): Add
3603 .gnu.linkobce.wi. to the list of debug section names.
3604
3605 2000-09-02 Nick Clifton <nickc@redhat.com>
3606
3607 * dwarf2.c (find_debug_info): New function: Locate a section
3608 containing dwarf2 debug information.
3609 (bfd_dwarf2_find_nearest_line): Find all sections containing
3610 debug information and include them in the stash.
3611
3612 2000-09-01 Niibe Yutaka <gniibe@m17n.org>, Kaz Kojima <kkojima@rr.iij4u.or.jp>, Alexandre Oliva <aoliva@redhat.com>
3613
3614 * elf32-sh.c (R_SH_GOT32, R_SH_PLT32, R_SH_COPY, R_SH_GLOB_DAT,
3615 R_SH_JMP_SLOT, R_SH_RELATIVE, R_SH_GOTOFF, R_SH_GOTPC): New.
3616 (sh_reloc_map): Add new relocs.
3617 (sh_elf_check_relocs, sh_elf_link_hash_newfunc,
3618 sh_elf_link_hash_table_create, sh_elf_adjust_dynamic_symbol,
3619 sh_elf_size_dynamic_sections, sh_elf_finish_dynamic_symbol,
3620 sh_elf_finishe_dynamic_sections, sh_elf_discard_copies): New
3621 functions.
3622 (ELF_DYNAMIC_INTERPRETER, PLT_ENTRY_SIZE): Define.
3623 (elf_sh_plt0_entry_be, elf_sh_plt0_entry_le,
3624 elf_sh_plt_entry_be, elf_sh_plt_entry_le,
3625 elf_sh_pic_plt_entry_be, elf_sh_pic_plt_entry_le):
3626 New array constants.
3627 (elf_sh_plt0_entry, elf_sh_plt_entry, elf_sh_pic_plt_entry):
3628 New variables.
3629 (elf_sh_sizeof_plt, elf_sh_plt_plt0_offset,
3630 elf_sh_plt0_linker_offset, elf_sh_plt0_gotid_offset,
3631 elf_sh_plt_temp_offset, elf_sh_plt_symbol_offset,
3632 elf_sh_plt_reloc_offset): Define.
3633 (elf_sh_pcrel_relocs_copied, elf_sh_link_hash_entry,
3634 elf_sh_link_hash_table): New structs.
3635 (sh_elf_link_hash_traverse, sh_elf_hash_table): New macros.
3636 (sh_elf_relocate_section, sh_elf_check_relocs): Handle new
3637 relocation types.
3638 (elf_backend_create_dynamic_sections,
3639 bfd_elf32_bfd_link_hash_table_create,
3640 elf_backend_adjust_dynamic_symbol,
3641 elf_backend_size_dynamic_sections,
3642 elf_backend_finish_dynamic_symbol,
3643 elf_backend_finish_dynamic_sections, elf_backend_want_got_plt,
3644 elf_backend_plt_readonly, elf_backend_want_plt_sym,
3645 elf_backend_got_header_size, elf_backend_plt_header_size):
3646 Define.
3647 * reloc.c (BFD_RELOC_SH_COPY, BFD_RELOC_SH_GLOB_DAT,
3648 BFD_RELOC_SH_JMP_SLOT, BFD_RELOC_SH_RELATIVE, BFD_RELOC_SH_GOTPC):
3649 New relocs.
3650 * bfd-in2.h, libbfd.h: Rebuilt.
3651
3652 2000-09-01 Alan Modra <alan@linuxcare.com.au>
3653
3654 * elf32-i386.c (elf_i386_finish_dynamic_symbol): Revert 2000-08-27
3655 change.
3656
3657 2000-08-31 J"orn Rennecke <amylaar@cygnus.co.uk>
3658
3659 * elf32-sh.c (sh_elf_merge_private_data): If ibfd's elf header flags
3660 not initialized, set them to indicate the SH1 instruction set.
3661
3662 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
3663
3664 * acinclude.m4: Include libtool and gettext macros from the
3665 top level.
3666 * aclocal.m4, configure: Rebuilt.
3667
3668 2000-08-29 Michael Snyder <msnyder@seadog.cygnus.com>
3669
3670 * elf.c: Eliminate references to __sparcv9 macro; replace with
3671 autoconf variables HAVE_PSINFO32_T etc.
3672 * configure.in: Auto-configure HAVE_PSINFO_32_T, HAVE_PRPSINFO32_T,
3673 HAVE_PSTATUS32_T, HAVE_PRSTATUS32_T, HAVE_PRSTATUS32_T_PR_WHO.
3674 * config.in: Ditto.
3675 * acinclude.m4 (BFD_HAVE_SYS_PROCFS_TYPE) define _SYSCALL32 so it can
3676 detect the above typedefs. (BFD_HAVE_SYS_PROCFS_TYPE_MEMBER): Ditto.
3677 * aclocal.m4: Ditto.
3678 * configure: Regenerate.
3679
3680 2000-08-27 Alan Modra <alan@linuxcare.com.au>
3681
3682 * elf32-i386.c (elf_i386_check_relocs): Keep info on relocs copied
3683 for any shared link, not just shared -Bsymbolic.
3684 (elf_i386_size_dynamic_sections): Call elf_i386_discard_copies on
3685 any shared link, and pass link info to it.
3686 (elf_i386_size_dynamic_sections): Update comment.
3687 (elf_i386_discard_copies): Modify to discard relocs for symbols
3688 that have been forced local.
3689 (elf_i386_finish_dynamic_symbol): Don't copy relocs for symbols
3690 that have been forced local.
3691
3692 2000-08-24 Denis Chertykov <denisc@overta.ru> & Nick Clifton <nickc@redhat.com>
3693
3694 * elflink.h (elf_link_add_object_symbols): Allow common
3695 symbols to have an alignment of 1 if explicitly requested, and
3696 not overridden by other definitions.
3697
3698 2000-08-22 Doug Kwan <dkwan@transmeta.com>
3699
3700 * coff-w65.c (CREATE_LITTLE_COFF_TARGET): Fix typo.
3701 * coffcode.h (coff_set_flags): Add detection of w65 architecture.
3702
3703 2000-08-22 H.J. Lu <hjl@gnu.org>
3704
3705 * elf-bfd.h (elf_link_hash_table): Add runpath.
3706
3707 * bfd-in.h (bfd_elf_get_runpath_list): New prototype.
3708 * bfd-in2.h: Rebuilt.
3709
3710 * elf.c (_bfd_elf_link_hash_table_init): Initialize the
3711 "runpath" field to NULL.
3712 (bfd_elf_get_runpath_list): New function.
3713
3714 * elflink.h (elf_link_add_object_symbols): Record DT_RPATH and
3715 DT_RUNPATH entries.
3716
3717 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
3718
3719 * elf32-sh.c (sh_elf_relocate_section) [R_SH_IND12W,
3720 R_SH_DIR8WPN, R_SH_DIR8WPZ, R_SH_DIR8WPL]: Handle them
3721 explicitly. Improve validation of r_type.
3722
3723 2000-08-21 H.J. Lu <hjl@gnu.org>
3724
3725 * elf32-i386.c (elf_i386_size_dynamic_sections): Zero out the
3726 dynamic allocated content space. Add a comment to remind us that
3727 one day this ought to be fixed.
3728 * elf32-m68k.c (elf_m68k_size_dynamic_sections): Likewise.
3729 * elf32-sparc.c (elf32_sparc_size_dynamic_sections): Likewise.
3730 * elf64-hppa.c (elf64_hppa_size_dynamic_sections): Likewise.
3731
3732 2000-08-21 Jason Eckhardt <jle@cygnus.com>
3733
3734 * elf32-i860.c (elf32_i860_relocate_pc16): Just write the immediate
3735 field with the newly relocated value instead of adding it to the
3736 existing immediate field.
3737 (elf32_i860_relocate_splitn): Likewise.
3738 (elf32_i860_relocate_highadj): Likewise.
3739
3740 2000-08-16 Jason Eckhardt <jle@cygnus.com>
3741
3742 * elf32-i860.c (elf32_i860_relocate_pc16): Implemented function (it
3743 was previously just a stub).
3744
3745 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
3746
3747 * elflink.c (_bfd_elf_create_got_section): Don't abort().
3748 Formatting fixes.
3749 (_bfd_elf_create_dynamic_sections): Likewise.
3750
3751 2000-08-16 Andrew Macleod <amacleod@cygnus.com>
3752
3753 * elf64-sparc.c (sparc64_elf_relocate_section): Set relocation address
3754 for undefined symbols to be the beginning of the section.
3755
3756 * elf64-sparc.c (sparc64_elf_adjust_dynamic_symbol): Don't allocate
3757 four extra entries at the beginning of the .rela.plt section.
3758 (sparc64_elf_finish_dynamic_symbol): Adjust the offset in the .rela.plt
3759 section to account for the four reserved entries in the .plt section.
3760
3761 2000-08-15 Geoffrey Keating <geoffk@cygnus.com>
3762
3763 * xcofflink.c (_bfd_ppc_xcoff_relocate_section): Add ori r0,r0,0
3764 to the list of NOPs we recognize after a branch-and-link.
3765 Use the ori NOP when one is needed.
3766
3767 * coff-rs6000.c (_bfd_xcoff_slurp_armap): Finish implementation
3768 for large archives.
3769
3770 2000-08-14 Jim Wilson <wilson@cygnus.com>
3771
3772 * elf64-ia64.c (elf64_ia64_merge_private_bfd_data): Handle
3773 EF_IA_64_REDUCEDFP, EF_IA_64_CONS_GP, and EF_IA_64_NOFUNCDESC_CONS_GP.
3774 (elf64_ia64_print_private_bfd_data): Likewise. Also handle
3775 EF_IA_64_ABSOLUTE.
3776
3777 2000-08-11 Alexandre Oliva <aoliva@redhat.com>
3778
3779 * elf32-sh.c (sh_elf_set_mach_from_flags): Make it static.
3780
3781 2000-08-10 Jason Eckhardt <jle@cygnus.com>
3782
3783 * elf32-i860.c (elf32_i860_relocate_section): New function.
3784 (i860_final_link_relocate): New function.
3785 (elf32_i860_relocate_splitn): New function.
3786 (elf32_i860_relocate_pc16): New function.
3787 (elf32_i860_relocate_highadj): New function.
3788 (elf32_i860_howto): Minor adjustments to some relocations.
3789 (elf_info_to_howto_rel): Define.
3790 (elf_backend_relocate_section): Define.
3791
3792 2000-08-10 Nick Clifton <nickc@cygnus.com>
3793
3794 * elf32-arm.h: Fix formatting.
3795
3796 2000-08-10 Bernd Schmidt <bernds@cygnus.co.uk>
3797
3798 * elf32-sh.c (sh_elf_reloc_loop): Make LAST_SYMBOL_SECTION static.
3799
3800 2000-08-08 Jason Eckhardt <jle@cygnus.com>
3801
3802 * elf32-i860.c (elf32_i860_howto_table): Updated some fields.
3803
3804 2000-08-07 Kazu Hirata <kazu@hxi.com>
3805
3806 * ieee.c (ieee_write_debug_part): Rewrite a comment.
3807 * elf64-ia64.c: Fix a typo.
3808
3809 2000-08-05 Jason Eckhardt <jle@cygnus.com>
3810
3811 * elf32-i860.c (elf32_i860_howto_table): New structure.
3812 (lookup_howto): New function.
3813 (elf32_i860_reloc_type_lookup): New function.
3814 (elf32_i860_info_to_howto_rela): New function.
3815 (elf_code_to_howto_index): New structure.
3816 (elf_info_to_howto): Re-define as elf32_i860_info_to_howto_rela.
3817 (bfd_elf32_bfd_reloc_type_lookup): Re-define as
3818 elf32_i860_reloc_type_lookup.
3819
3820 2000-08-04 Rodney Brown <RodneyBrown@pmsc.com>
3821
3822 * som.c (struct fixup_format): Constify `format'.
3823 (som_hppa_howto_table): Use SOM_HOWTO macro.
3824 (try_prev_fixup, hppa_som_reloc): Decorate unused parameter.
3825 (som_bfd_reloc_type_lookup): Likewise.
3826 (compare_subspaces): Remove unused `count1', `count2'.
3827 (som_begin_writing): Remove unused `total_reloc_size'.
3828 (som_bfd_derive_misc_symbol_info): Decorate unused parameter.
3829 (som_print_symbol, som_bfd_is_local_label_name): Likewise.
3830 (som_set_reloc_info): Constify `cp'. Remove unused `addend'.
3831 (som_find_nearest_line): Decorate unused parameter(s).
3832 (som_sizeof_headers, som_get_symbol_info, som_write_armap): Likewise.
3833 (som_bfd_link_split_section): Likewise.
3834
3835 2000-08-03 Nick Clifton <nickc@cygnus.com>
3836
3837 * section.c: Restore backed out code.
3838 * elf.c: Restore backed out code.
3839 (copy_private_bfd_data): Fix bug preventing stipped dynamic
3840 binaries from working.
3841 * bfd-in2.h: Regenerate.
3842
3843 2000-08-03 H.J. Lu <hjl@gnu.org>
3844
3845 * section.c: Back out the change made by Nick Clifton
3846 <nickc@cygnus.com> on 2000-07-31. It breaks stripping dynamic
3847 binaries.
3848 * bfd-in2.h: Likewise.
3849 * elf.c: Likewise.
3850
3851 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
3852
3853 * elf32-sh.c (sh_elf_reloc_loop): Warning removal.
3854
3855 2000-07-31 Jason Eckhardt <jle@cygnus.com>
3856
3857 * reloc.c (BFD_RELOC_860_*): New bfd relocs for i860.
3858 * bfd-in2.h, libbfd.h: Regenerate.
3859
3860 2000-07-31 Nick Clifton <nickc@cygnus.com>
3861
3862 * section.c (struct sec): Add new boolean field 'segment_mark'.
3863 (STD_SECTION): Initialise new field to zero.
3864
3865 * bfd-in2.h: Regenerate.
3866
3867 * elf.c (copy_private_bfd_data): Reorganise section to segment
3868 mapping to cope with moved sections requiring new segments,
3869 and overlapping segments.
3870 (SEGMENT_END): New macro: Return the end address of a segment.
3871 (IS_CONTAINED_BY_VMA): New macro: Determine if a segment
3872 contains a section by comparing their VMA addresses.
3873 (IS_CONTAINED_BY_LMA): New macro: Determine if a segment
3874 contains a section by comparing their LMA addresses.
3875 (INCLUDE_SECTION_IN_SEGMENT): New macro: Determine if a
3876 section should be included in a segment.
3877 (SEGMENT_AFTER_SEGMENT): New macro: Determine if one segment
3878 follows another in memory.
3879 (SEGMENT_OVERLAPS_SEGMENT): New macro: Determine if two
3880 segments overlap.
3881
3882 2000-07-22 Jason Eckhardt <jle@cygnus.com>
3883
3884 * cpu-i860.c: Added comments.
3885
3886 * elf32-i860.c (TARGET_LITTLE_SYM): Defined to
3887 bfd_elf32_i860_little_vec.
3888 (TARGET_LITTLE_NAME): Defined to "elf32-i860-little".
3889 (ELF_MAXPAGESIZE): Changed to 4096.
3890
3891 * targets.c (bfd_elf32_i860_little_vec): Declaration of
3892 new target.
3893 (bfd_target_vector): Added bfd_elf32_i860_little_vec.
3894
3895 * config.bfd (i860-stardent-sysv4*, i860-stardent-elf*): Added
3896 config for little endian elf32 i860.
3897 (targ_defvec): Define for the new config above
3898 as "bfd_elf32_i860_little_vec".
3899 (targ_selvecs): Define for the new config above
3900 as "bfd_elf32_i860_vec bfd_elf32_i860_little_vec"
3901
3902 * configure.in (bfd_elf32_i860_little_vec): Added recognition
3903 of new target vec.
3904
3905 * configure: Regenerated.
3906
3907 2000-07-27 H.J. Lu <hjl@gnu.org>
3908
3909 * elflink.h (elf_merge_symbol): Take one more argument,
3910 dt_needed, to indicate if the symbol comes from a DT_NEEDED
3911 entry. Don't overide the existing weak definition if dt_needed
3912 is true.
3913 (elf_link_add_object_symbols): Pass dt_needed to
3914 elf_merge_symbol ().
3915
3916 2000-07-27 Nick Clifton <nickc@cygnus.com>
3917
3918 * elflink.h (elf_link_size_reloc_section): Zeroes the section's
3919 allocated contents.
3920
3921 2000-07-25 Geoffrey Keating <geoffk@cygnus.com>
3922
3923 * configure.host (*-*-aix*): AIX has 'long long' always.
3924
3925 * coff-rs6000.c (xcoff_write_one_armap_big): New procedure.
3926 (xcoff_write_armap_big): Write both 32-bit and 64-bit armaps.
3927 (xcoff_write_archive_contents_big): Don't update the offset
3928 of the symbol table, xcoff_write_armap will do it.
3929
3930 2000-07-23 Ulf Carlsson <ulfc@engr.sgi.com>
3931
3932 * elf32-mips.c (_bfd_mips_elf_check_relocs): Use abfd instead
3933 of dynobj for SGI_COMPAT checks.
3934
3935 2000-07-21 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3936
3937 * coff-m68k.c (bfd_m68k_coff_create_embedded_relocs): New function.
3938 * bfd-in.h (bfd_m68k_coff_create_embedded_relocs): Add declaration.
3939 * bfd-in2.h: Regenerate.
3940
3941 2000-07-21 Nick Clifton <nickc@cygnus.com>
3942
3943 * elf32-mips.c (_bfd_mips_elf_check_relocs): Detect out of
3944 range symbol indices in relocs and issue an error message.
3945
3946 2000-07-20 H.J. Lu <hjl@gnu.org>
3947
3948 * elflink.h (NAME(bfd_elf,size_dynamic_sections)): Don't check
3949 info->new_dtags when setting DT_FLAGS_1. It will only be set
3950 by the new linker options. It shouldn't break anything.
3951
3952 2000-07-20 H.J. Lu <hjl@gnu.org>
3953
3954 * elflink.h (NAME(bfd_elf,size_dynamic_sections)): Set DT_FLAGS_1
3955 only if info->new_dtags is true.
3956
3957 2000-07-20 H.J. Lu <hjl@gnu.org>
3958
3959 * elflink.h (NAME(bfd_elf,size_dynamic_sections)): Set
3960 DT_RUNPATH and DT_FLAGS only if info->new_dtags is true.
3961
3962 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
3963
3964 * Makefile.am (ALL_MACHINES): Add cpu-cris.lo.
3965 (ALL_MACHINES_CFILES): Add cpu-cris.c.
3966 (BFD32_BACKENDS): Add aout-cris.lo and elf32-cris.lo.
3967 (BFD32_BACKENDS_CFILES): Add aout-cris.c and elf32-cris.c.
3968 (cpu-cris.lo, aout-cris.lo, elf32-cris.lo): New rules.
3969 * Makefile.in: Rebuild.
3970 * aclocal.m4: Rebuild.
3971 * aoutx.h (NAME(aout,machine_type)): Add case for bfd_arch_cris.
3972 * archures.c (enum bfd_architecture): Add bfd_arch_cris.
3973 (bfd_cris_arch): Declare.
3974 (bfd_archures_list): Add bfd_cris_arch.
3975 * bfd-in2.h: Rebuild.
3976 * config.bfd: (cris-*-*): New target.
3977 * configure.in (bfd_elf32_cris_vec, cris_aout_vec): New vectors.
3978 * configure: Rebuild.
3979 * elf.c (prep_headers): Add bfd_arch_cris.
3980 * libbfd.h: Rebuild.
3981 * libaout.h (enum machine_type): Add M_CRIS.
3982 * reloc.c: Add CRIS relocations.
3983 * targets.c (bfd_elf32_cris_vec, cris_aout_vec): Declare.
3984 (bfd_target_vect): Add bfd_elf32_cris_vec and cris_aout_vec.
3985 * cpu-cris.c, aout-cris.c, elf32-cris.c: New files.
3986 * po/POTFILES.in, po/bfd.pot: Regenerate.
3987
3988 2000-07-19 H.J. Lu <hjl@gnu.org>
3989
3990 * elf32-arm.h (elf32_arm_size_dynamic_sections): Also set
3991 DF_TEXTREL if DT_TEXTREL is set.
3992 * elf32-i370.c (i370_elf_size_dynamic_sections): Likewise.
3993 * elf32-i386.c (elf_i386_size_dynamic_sections): Likewise.
3994 * elf32-m68k.c (elf_m68k_size_dynamic_sections): Likewise.
3995 * elf32-mips.c (_bfd_mips_elf_size_dynamic_sections): Likewise.
3996 * elf32-ppc.c (ppc_elf_size_dynamic_sections): Likewise.
3997 * elf32-sparc.c (elf32_sparc_size_dynamic_sections): Likewise.
3998 * elf64-alpha.c (elf64_alpha_size_dynamic_sections): Likewise.
3999 * elf64-hppa.c (elf64_hppa_size_dynamic_sections): Likewise.
4000 * elf64-ia64.c (elf64_ia64_size_dynamic_sections): Likewise.
4001 * elf64-sparc.c (sparc64_elf_size_dynamic_sections): Likewise.
4002
4003 * elflink.h (NAME(bfd_elf,size_dynamic_sections)): Also
4004 set DF_SYMBOLIC for symbolic link. Also set DT_RUNPATH if
4005 DT_RPATH is set.
4006 Set the DT_FLAGS and DT_FLAGS_1 entries if necessary.
4007
4008 2000-07-19 H.J. Lu <hjl@gnu.org>
4009
4010 * bfd-in.h (bfd_elf_set_dt_needed_soname): New.
4011 * bfd-in2.h: Rebuild.
4012
4013 * elf-bfd.h (elf_obj_tdata): Add dt_soname.
4014 (elf_dt_soname): New.
4015
4016 * elf.c (bfd_elf_set_dt_needed_soname): New.
4017
4018 * elflink.h (elf_link_add_object_symbols): Add the DT_NEEDED
4019 entry if the shared object loaded by DT_NEEDED is used to
4020 resolve the reference in a regular object.
4021
4022 2000-07-19 H.J. Lu <hjl@gnu.org>
4023
4024 * elf.c (_bfd_elf_print_private_bfd_data): Handle DT_CONFIG,
4025 DT_DEPAUDIT and DT_AUDIT as strings.
4026
4027 2000-07-19 Nick Clifton <nickc@cygnus.com>
4028
4029 * format.c: Fix formatting.
4030
4031 2000-07-19 H.J. Lu <hjl@gnu.org>
4032
4033 * elf.c (_bfd_elf_print_private_bfd_data): Fix DT_CHECKSUM.
4034
4035 2000-07-19 H.J. Lu <hjl@gnu.org>
4036
4037 * elf.c (_bfd_elf_print_private_bfd_data): Handle DT_BIND_NOW,
4038 DT_INIT_ARRAY, DT_FINI_ARRAY, DT_INIT_ARRAYSZ, DT_FINI_ARRAYSZ,
4039 DT_RUNPATH, DT_FLAGS, DT_PREINIT_ARRAY, DT_PREINIT_ARRAYSZ,
4040 DT_PLTPADSZ, DT_MOVEENT, DT_MOVESZ, DT_FEATURE, DT_POSFLAG_1,
4041 DT_SYMINSZ, DT_SYMINENT, DT_CONFIG, DT_DEPAUDIT, DT_AUDIT,
4042 DT_PLTPAD, DT_MOVETAB, DT_SYMINFO, DT_RELACOUNT, DT_RELCOUNT,
4043 DT_FLAGS_1, DT_USED and DT_CHECKSUM.
4044
4045 2000-07-18 Andrew Cagney <cagney@b1.cygnus.com>
4046
4047 * elf.c (bfd_elf_get_sign_extend_vma, bfd_elf_get_arch_size): Move
4048 renamed functions from here...
4049 (assign_section_numbers): Use renamed functions.
4050 (prep_headers): Use renamed functions.
4051
4052 * bfd.c (bfd_get_sign_extend_vma, bfd_get_arch_size): ...To here.
4053 * bfd-in.h (bfd_get_sign_extend_vma, bfd_get_arch_size): Update.
4054 * bfd-in2.h: Regenerate.
4055
4056 2000-07-18 Ulf Carlsson <ulfc@engr.sgi.com>
4057
4058 * elf32-mips.c (_bfd_mips_elf_finish_dynamic_symbol): Add
4059 parenthesis in if statement.
4060
4061 2000-07-17 Koundinya K <kk@ddeorg.soft.net>
4062
4063 Enable the support for Traditional MIPS.
4064 * elf32-mips.c (IRIX_COMPAT): Recognize bfd_elf32_tradbigmips_vecand
4065 return ict_none appropriately for traditional mips targets.
4066 (STUB_LW): Change 0x8f998000 to 0x8f998010 for traditional mips.
4067 (STUB_MOVE): Conditionalize for traditonal mips.
4068 (STUB_LI16): Likewise.
4069 (_bfd_mips_elf_modify_segment_map): Conditionalize to avoid making
4070 room for RTPROC header.
4071 (_bfd_mips_elf_modify_segment_map): For a normal mips executable set
4072 the permission for the PT_DYNAMIC as read, write and execute.
4073 (mips_elf_calculate_relocation): Check for the symbol _DYNAMIC_LINKING
4074 for traditonal mips.
4075 (_bfd_mips_elf_create_dynamic_sections): Add the symbol
4076 _DYNAMIC_LINKING for traditonal mips.
4077 (_bfd_mips_elf_create_dynamic_sections): Add the symbol __RLD_MAP
4078 in case of traditonal mips.
4079 (_bfd_mips_elf_adjust_dynamic_symbol): Create a stub only if a PLT
4080 entry is required. For a function if PLT is not required then set the
4081 corresponding hash table entry to 0.
4082 (_bfd_mips_elf_size_dynamic_sections): Add DT_DEBUG entry for
4083 traditonal mips.
4084 (_bfd_mips_elf_finish_dynamic_symbol): for a undefined symbol in a
4085 shared object set the value to 0.
4086 (_bfd_mips_elf_finish_dynamic_symbol): Check for the symbol
4087 _DYNAMIC_LINKING for traditonal mips.
4088 (_bfd_mips_elf_finish_dynamic_symbol): Check for the symbol __RLD_MAP
4089 for traditonal mips.
4090
4091 2000-07-15 H.J. Lu <hjl@gnu.org>
4092
4093 * aoutx.h (translate_to_native_sym_flags): Handle BSF_LOCAL.
4094
4095 2000-07-12 Charles Wilson <cwilson@ece.gatech.edu>
4096
4097 * libbfd.c (bfd_seek): fix 'seek beyond EOF' error when writing
4098 out a structure that is BFD_IN_MEMORY.
4099
4100 2000-07-11 Alan Modra <alan@linuxcare.com.au>
4101
4102 * elf64-hppa.c (get_dyn_name): Pass in section pointer instead of
4103 bfd pointer. Print section id instead of bfd pointer for local
4104 syms. Prefix addend with `+' for global syms as well as local.
4105 Correct calculation of name component lengths.
4106 (elf64_hppa_check_relocs): Update call to get_dyn_name.
4107
4108 From David Huggins-Daines <dhd@linuxcare.com>
4109 * elf-hppa.h (elf_hppa_relocate_section): Update calls here too.
4110 * elf64-hppa.c (elf64_hppa_check_relocs): Fix some warnings.
4111 (elf64_hppa_modify_segment_map): Likewise.
4112
4113 2000-07-11 Andrew Cagney <cagney@b1.cygnus.com>
4114
4115 * elf.c (bfd_elf_get_sign_extend_vma): Return tendency of VMA
4116 addresses to be "naturally" sign extended. Return -1 if unknown.
4117 * bfd-in.h (bfd_elf_get_sign_extend_vma): Add declaration.
4118 * bfd-in2.h: Regenerate.
4119
4120 2000-07-11 Andrew Cagney <cagney@b1.cygnus.com>
4121
4122 * ecoffswap.h (ecoff_get_off, ecoff_put_off): Add ECOFF_SIGNED_32
4123 and ECOF_SIGNED_64 to list ways to extract an offset.
4124 (ecoff_swap_fdr_in, ecoff_swap_fdr_out, ecoff_swap_pdr_in,
4125 ecoff_swap_pdr_out, ecoff_swap_ext_in, ecoff_swap_ext_out):
4126 Update.
4127 * elf64-mips.c (ECOFF_SIGNED_64): Define instead of ECOFF_64.
4128 * elf32-mips.c (ECOFF_SIGNED_32): Define instead of ECOFF_32.
4129
4130 2000-07-11 Andrew Cagney <cagney@b1.cygnus.com>
4131
4132 * elfcode.h (elf_object_p): Use bfd_set_start_address and not
4133 bfd_get_start_address.
4134 (elf_swap_ehdr_in): Sign extend e_entry when applicable.
4135 (elf_swap_ehdr_out): Ditto.
4136
4137 2000-07-10 Alexander Aganichev <AAganichev@hypercom.com>
4138
4139 * archures.c (bfd_default_scan): Add set of bfd_mach_ cases for
4140 compatibility with older binutils.
4141
4142 2000-07-10 Alan Modra <alan@linuxcare.com.au>
4143
4144 * section.c (bfd_make_section_anyway): Start section_id at 0x10.
4145 (STD_SECTION): Avoid negative ids, instead use 0 to 3.
4146
4147 From Ryan Bradetich <rbradetich@uswest.net>
4148 * dwarf1.c (parse_die): Cure signed/unsigned char warnings.
4149 (parse_line_table): Ditto.
4150 (_bfd_dwarf1_find_nearest_line): Ditto.
4151 * syms.c (cmpindexentry): Remove extra `*' from params.
4152
4153 2000-07-09 Koundinya K <kk@ddeorg.soft.net>
4154
4155 * elf32-mips.c (sort_dynamic_relocs): New Function.
4156 (_bfd_mips_elf_finish_dynamic_sections): Call sort_dynamic_relocs
4157 via qsort to sort the dynamic relocations in increasing r_symndx
4158 value.
4159
4160 2000-07-09 Alan Modra <alan@linuxcare.com.au>
4161
4162 * elf64-hppa.c (elf64_hppa_dyn_hash_table_init): Add
4163 ATTRIBUTE_UNUSED to unused args.
4164 (get_opd): Likewise.
4165 (get_plt): Likewise.
4166 (get_dlt): Likewise.
4167 (get_stub): Likewise.
4168 (elf64_hppa_adjust_dynamic_symbol): Likewise.
4169 (elf64_hppa_link_output_symbol_hook): Likewise.
4170 (elf64_hppa_check_relocs): Delete unused var.
4171 (elf64_hppa_size_dynamic_sections): Likewise.
4172 (elf64_hppa_finalize_opd): Likewise.
4173 (elf64_hppa_finalize_dynreloc): Likewise.
4174 (elf64_hppa_modify_segment_map): Likewise.
4175 (elf64_hppa_finish_dynamic_sections): Likewise.
4176
4177 * elf-hppa.h (elf_hppa_final_write_processing): Add
4178 ATTRIBUTE_UNUSED to unused args.
4179 (elf_hppa_final_link_relocate): Likewise.
4180 (elf_hppa_record_segment_addrs): Add paretheses.
4181 (elf_hppa_relocate_section): Constify dyn_name.
4182
4183 From David Huggins-Daines <dhd@linuxcare.com>
4184 * config.bfd: Add hppa*64*-*-linux-gnu 64-bit target, and
4185 rearrange case statement so that it gets preferred to 32-bit ones.
4186
4187 * elf32-hppa.c (elf32_hppa_bfd_final_link_relocate): Use
4188 asection->id instead of address of asection structure.
4189 (elf32_hppa_size_stubs): Likewise.
4190
4191 * elf32-hppa.c (elf32_hppa_size_stubs): Use just one stub section
4192 for .init* and .fini*.
4193
4194 * elf32-hppa.c (elf32_hppa_bfd_final_link_relocate): Mask pointers
4195 and addends used in stub names to 32 bits.
4196 (elf32_hppa_size_stubs): Likewise.
4197
4198 * elf-hppa.h (elf_hppa_final_link_relocate): Don't sum addend
4199 twice for R_PARISC_GPREL64. Use bfd_put_32 for R_PARISC_PCREL32,
4200 not bfd_put_64. Fix minor comment typo and formatting.
4201
4202 Changes to create multiple linker stubs, positioned immediately
4203 before the section where they are required.
4204 * elf32-hppa.c: Don't include hppa_stubs.h.
4205 (elf32_hppa_stub_hash_entry): Add a pointer to the stub section.
4206 (elf32_hppa_stub_hash_table): Delete.
4207 (elf32_hppa_link_hash_entry): Delete.
4208 (elf32_hppa_link_hash_table): Use plain bfd_hash_table for
4209 stub_hash_table, and store the struct here rather than a pointer.
4210 Delete output_symbol_count. Add offset array. Change
4211 global_value to a bfd_vma.
4212 (elf32_hppa_stub_hash_lookup): Use table instead of table->root.
4213 (elf32_hppa_stub_hash_traverse): Delete.
4214 (elf32_hppa_name_of_stub): Delete.
4215 (elf32_hppa_link_hash_lookup): Delete.
4216 (elf32_hppa_link_hash_traverse): Delete.
4217 (elf32_hppa_stub_hash_table_init): Delete.
4218 (elf32_hppa_size_of_stub): Pass input section and offset rather
4219 than location and calculate location here. Don't pass name as all
4220 stubs are now the same size.
4221 (elf32_hppa_stub_hash_newfunc): Init new fields.
4222 (elf32_hppa_link_hash_table_create): Likewise, and stub_hash_table
4223 too.
4224 (elf32_hppa_bfd_final_link_relocate): Cast enums to int before
4225 comparing against ints. Rewrite stub handling code.
4226 (elf32_hppa_relocate_section): Make r_type and r_symndx unsigned.
4227 Case enums to int before comparing against ints. Remove
4228 bfd_reloc_dangerous case.
4229 (elf32_hppa_build_one_stub): Rewrite.
4230 (elf32_hppa_size_one_stub): New function.
4231 (elf32_hppa_build_stubs): Rewrite.
4232 (elf32_hppa_size_stubs): Pass in linker call-back functions.
4233 Rewrite stub-handling specific code.
4234
4235 * elf32-hppa.h (elf32_hppa_size_stubs): Update prototype.
4236
4237 * elf64-hppa.c (elf64_hppa_dyn_hash_entry): Fix a comment typo.
4238
4239 * hppa_stubs.h: Delete.
4240 * Makefile.am (SOURCE_HFILES): Remove hppa_stubs.h
4241 (elf32-hppa.lo): Remove hppa_stubs.h from dependencies.
4242 * Makefile.in: Regenerate.
4243
4244 * elf-hppa.h (_bfd_elf_hppa_gen_reloc_type): Handle e_nlsel and
4245 e_nlrsel.
4246
4247 * libhppa.h (hppa_field_adjust): Correct e_nsel case.
4248
4249 * elf32-hppa.c (elf32_hppa_relocate_section): Mention the offset
4250 and section name for bfd_reloc_notsupported error message.
4251 (elf32_hppa_bfd_final_link_relocate): Print reasons for returning
4252 bfd_reloc_notsupported.
4253 (elf32_hppa_relocate_section): Add ATTRIBUTE_UNUSED to output_bfd.
4254
4255 * elf32-hppa.c (elf32_hppa_bfd_final_link_relocate): Handle
4256 undefined weak symbols for all relocs.
4257 (elf32_hppa_size_of_stub): Adjust calculation by 8 since branch
4258 offsets are relative to one past the delay slot.
4259 (elf32_hppa_size_stubs): Account for reloc addend when calculating
4260 branch destination. Put addend into stub name too.
4261 (elf32_hppa_bfd_final_link_relocate): Account for reloc addend and
4262 adjust by 8 when deciding whether a linker stub is needed. Put
4263 addend into stub name as for above.
4264
4265 * elf32-hppa.c (hppa_elf_relocate_insn): Change signed/unsigned on
4266 various args and vars.
4267 (elf32_hppa_bfd_final_link_relocate): Here too.
4268 (elf32_hppa_size_stubs): Rename index -> indx. Use e_indx for
4269 inner block var to avoid shadowing.
4270
4271 * elf32-hppa.h (_bfd_elf32_hppa_gen_reloc_type): Make `field' arg
4272 unsigned.
4273 * elf64-hppa.h (_bfd_elf64_hppa_gen_reloc_type): Ditto.
4274 * elf-hppa.h (_bfd_elf_hppa_gen_reloc_type): Ditto.
4275 (elf_hppa_fake_sections): Rename local var to avoid shadowing.
4276
4277 * libhppa.h: Change practically all unsigned ints to plain ints.
4278 Remove tests on gcc version. Instead use ATTRIBUTE_UNUSED for
4279 prototypes.
4280
4281 From Ryan Bradetich <rbradetich@uswest.net>
4282 * libhppa.h (hppa_opcode_type): New enum to replace #define's.
4283 * elf32-hppa.c (elf32_hppa_bfd_final_link_relocate): Modify to
4284 suit above.
4285 From David Huggins-Daines <dhd@linuxcare.com>
4286 * elf-hppa.h (elf_hppa_relocate_insn): Update the opcode constants
4287 to the new OP_* ones.
4288
4289 * elf32-hppa.c (elf32_hppa_size_stubs): Consolidate freeing on
4290 error exit. Bail out earlier on plabel relocs that we aren't
4291 interested in. Don't tell elf32_hppa_stub_hash_lookup to copy
4292 string, and then don't free our copy.
4293 (elf32_hppa_build_one_stub): Make insn unsigned int.
4294
4295 * libhppa.h (bfd_hppa_insn2fmt): 22 bit branches are only
4296 available with BL, not BE and BLE.
4297
4298 * elf32-hppa.c (hppa_elf_relocate_insn): Add some more example
4299 code for elf arg relocs.
4300 (elf32_hppa_bfd_final_link_relocate): Replace boolean is_local
4301 argument with elf_link_hash_entry h. Handle undefined weak
4302 symbols. Move $global$ lookup from here...
4303 (elf32_hppa_relocate_section): ...to here. Return correct error
4304 message for non-handled relocs.
4305 (elf32_hppa_size_of_stub): Correctly test branch range. Previous
4306 wrong test was -0x3ffff to +0x40000.
4307
4308 * elf-hppa.h (elf_hppa_final_link_relocate): R_PARISC_DIR17R,
4309 R_PARISC_DIR17F, and R_PARISC_DIR21L are for absolute branches;
4310 Handle them as such.
4311 (elf_hppa_relocate_insn): Fix a typo.
4312
4313 * libhppa.h (GET_FIELD, GET_BIT, MASK, CATENATE, ELEVEN): Delete.
4314 (assemble_3, assemble_6, assemble_12, assemble_16, assemble_16a,
4315 assemble_17, assemble_21): Delete.
4316 Supply defines for all 64 possible opcodes.
4317 (bfd_hppa_insn2fmt): Add bfd argument, and use to select wide mode
4318 formats. Handle COMICLR.
4319 (hppa_rebuild_insn): Delete bfd argument. Handle formats 10, -11,
4320 -10, -16, 16, 22.
4321
4322 * elf32-hppa.c (hppa_elf_relocate_insn): Complete rewrite.
4323 (elf32_hppa_bfd_final_link_relocate): Major rewrite.
4324 (elf32_hppa_build_one_stub): Modify hppa_elf_relocate_insn calls
4325 to suit.
4326 (elf32_hppa_size_stubs): Don't free stub_name twice. Read in all
4327 the local syms - did this code get deleted accidentally? Ignore
4328 undefined and undefweak syms.
4329
4330 * elf-hppa.h (elf_hppa_final_link): Move hppa_info to outermost
4331 block. Use it instead of elf64_hppa_hash_table (info).
4332 (elf_hppa_final_link_relocate): Use hppa_info instead of
4333 elf64_hppa_hash_table (info).
4334
4335 * libhppa.h (re_assemble_3, re_assemble_12, re_assemble_16,
4336 re_assemble_17, re_assemble_21, re_assemble_22): Don't mask insn.
4337 (hppa_rebuild_insn): Mask immediate bits here instead.
4338 * elf-hppa.h (elf_hppa_relocate_insn): Mask here too.
4339
4340 2000-07-08 Alan Modra <alan@linuxcare.com.au>
4341
4342 * section.c (struct sec): Add id field. Tidy comment formatting.
4343 (bfd_make_section_anyway): Set id.
4344 (STD_SECTION): Init id too.
4345 Change CONST to const throughout.
4346 * archures.c (bfd_arch_info): Tidy comment.
4347 (bfd_arch_list): Change a CONST to const.
4348 * libbfd-in.h: Tidy comments and replace CONST with const.
4349 * elf-bfd.h: Likewise.
4350 * libbfd.h: Regenerate.
4351 * bfd-in2.h: Regenerate.
4352 * libcoff.h: Regenerate.
4353
4354 2000-07-07 DJ Delorie <dj@redhat.com>
4355
4356 * archive.c (_bfd_write_archive_contents): Add an informative
4357 comment.
4358
4359 2000-07-06 Kazu Hirata <kazu@hxi.com>
4360
4361 * srec.c: Fix formatting.
4362
4363 2000-06-05 DJ Delorie <dj@redhat.com>
4364
4365 * MAINTAINERS: new
4366
4367 2000-07-04 Alexandre Oliva <aoliva@redhat.com>
4368
4369 * coff-arm.c (coff_arm_relocate_section): Do not ignore the symbol
4370 value of PC-relative offsets.
4371
4372 2000-07-03 Jim Wilson <wilson@cygnus.com>
4373
4374 * elf64-alpha.c (alpha_elf_size_info): New.
4375 (elf_backend_size_info): Define to alpha_elf_size_info.
4376 * elfcode.h (elf_size_info): Change hash bucket size to 4.
4377
4378 2000-07-03 Ulf Carlsson <ulfc@engr.sgi.com>
4379
4380 * elf32-mips.c: Include elf32-target.h again for the traditional
4381 MIPS targets.
4382
4383 2000-07-03 Marek Michalkiewicz <marekm@linux.org.pl>
4384
4385 * elf32-avr.c (bfd_elf32_bfd_reloc_type_lookup):
4386 Add ATTRIBUTE_UNUSED to unused arguments to avoid warnings.
4387 (avr_info_to_howto_rela): Likewise.
4388 (elf32_avr_gc_mark_hook): Likewise.
4389 (elf32_avr_gc_sweep_hook): Likewise.
4390 (elf32_avr_relocate_section): Likewise.
4391
4392 2000-07-03 Mark Elbrecht <snowball3@bigfoot.com>
4393
4394 * cofflink.c (_bfd_coff_write_global_sym): Turn a weak symbol into
4395 an external symbol for a non-shared, non-relocatable link.
4396
4397 2000-07-03 Nick Clifton <nickc@redhat.com>
4398
4399 * cofflink.c (IS_EXTERNAL): New macro: Return true if the symbol
4400 is an external symbol.
4401 (IS_WEAK_EXTERNAL): New macro: Return true if the symbol is a weak
4402 external symbol.
4403
4404 2000-07-03 Kazu Hirata <kazu@hxi.com>
4405
4406 * reloc16.c: Fix formatting.
4407
4408 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
4409
4410 * config.bfd: Change targ_defvec and targ_selvecs for mips*-*-sysv4*
4411 to add a new target for traditional mips i.e
4412 bfd_elf32_tradbigmips_vec and bfd_elf32_tradlittlemips_vec.
4413 * configure.in: Likewise.
4414 * configure: Rebuild.
4415 * targets.c (bfd_elf32_tradbigmips_vec): Declare and put in
4416 bfd_target_vector.
4417 (bfd_elf32_tradlittlemips_vec): Likewise.
4418 * elfxx-target.h: Add macro INCLUDED_TARGET_FILE which is more a test
4419 to see that elfNN_bed does not get redefined even if the target file
4420 is included twice for a chip. See elf32-mips.c.
4421
4422 2000-07-01 Alan Modra <alan@linuxcare.com.au>
4423
4424 * Makefile.am (DEP): Fix 2000-06-22. grep after running dep.sed
4425 (CLEANFILES): Add DEPA.
4426 * Makefile.in: Regenerate.
4427
4428 2000-06-30 DJ Delorie <dj@cygnus.com>
4429
4430 * peicode.h (coff_swap_filehdr_in): can't use e_magic because we
4431 can't assume the PE header is at 0x80.
4432
4433 2000-06-29 Mark Elbrecht <snowball3@bigfoot.com>
4434
4435 * syms.c (_bfd_stab_section_find_nearest_line): Use IS_ABSOLUTE_PATH.
4436
4437 2000-06-28 Mark Elbrecht <snowball3@bigfoot.com>
4438
4439 * go32stub.h: Update stub.
4440
4441 2000-06-26 Marek Michalkiewicz <marekm@linux.org.pl>
4442
4443 * archures.c (bfd_mach_avr5): Define.
4444 * bfd-in2.h (bfd_mach_avr5): Define.
4445 * cpu-avr.c (arch_info_struct): Rename bfd_mach_avr4 to
4446 bfd_mach_avr5, add bfd_mach_avr4. Update comments.
4447 (compatible): Update comment. Add missing test.
4448 * elf32-avr.c (avr_final_link_relocate): Support 8K wrap
4449 for avr2 and avr4. Simplify 8K wrap code.
4450 (bfd_elf_avr_final_write_processing): Recognize bfd_mach_avr5.
4451 (elf32_avr_object_p): Recognize E_AVR_MACH_AVR5.
4452
4453 2000-06-26 Kazu Hirata <kazu@hxi.com>
4454
4455 * coff-h8300.c: Fix formatting.
4456 * cpu-h8300.c: Likewise.
4457
4458 2000-06-24 Alexandre Oliva <aoliva@redhat.com>
4459
4460 * elf32-arm.h (elf32_arm_final_link_relocate): Print `(local)'
4461 for local symbols whose names are unknown.
4462
4463 2000-06-22 Alan Modra <alan@linuxcare.com.au>
4464
4465 * Makefile.am (DEP): grep for leading `/' in DEP1, and fail if we
4466 find one.
4467 * Makefile.in: Regenerate.
4468 * doc/Makefile.in: Regenerate.
4469
4470 2000-06-20 H.J. Lu <hjl@gnu.org>
4471
4472 * Makefile.am: Rebuild dependency.
4473 * Makefile.in: Rebuild.
4474
4475 2000-06-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
4476
4477 * elf32-mips.c (_bfd_mips_elf_copy_indirect_symbol): New function.
4478 (elf_backend_copy_indirect_symbol): Map to the new function.
4479
4480 2000-06-20 Alan Modra <alan@linuxcare.com.au>
4481
4482 * archive.c (normalize): Correct pointer comparison when checking
4483 for backslashes.
4484 (bfd_bsd_truncate_arname): Likewise.
4485 (bfd_gnu_truncate_arname): Likewise.
4486
4487 2000-06-20 Ulf Carlsson <ulfc@engr.sgi.com>
4488
4489 * elf-bfd.h (struct elf_obj_tdata): Define per BFD Irix 5 virtual
4490 sections elf_{text,data}_{section,symbol}.
4491 * elf32-mips.c: mips_elf_{text,data}_{section,symbol}{,_ptr}: Remove.
4492 (_bfd_mips_elf_hide_symbol): New function.
4493 (elf_backend_hide_symbol): Map to the new function.
4494 (_bfd_mips_elf_add_symbol_hook): Change to use new per BFD
4495 definitions of mips_elf_{text,data}_{section,symbol}.
4496 (mips_elf_local_relocation_p): Try to find the direct symbol
4497 based on new check_forced argument.
4498 (mips_elf_calculate_relocation): Use new version of
4499 mips_elf_local_relocation_p.
4500 (mips_elf_relocate_section): Likewise.
4501 (_bfd_mips_elf_relocate_section): Likewise.
4502 (mips_elf_sort_hash_table): Only assert that have enough GOT
4503 space.
4504 (mips_elf_got16_entry): Match all 32 bits to the existing GOT
4505 entry if the relocation based on the new external argument.
4506 (mips_elf_create_dynamic_relocation): Assert that we have a
4507 section contents allocated where we can swap out the dynamic
4508 relocations.
4509 (mips_elf_calculate_relocation): Find the real hash-table entry
4510 correctly by using h->root.root.type. Only create a dynamic
4511 relocation entry if the symbol is defined in a shared library.
4512 Create an external GOT entry for the GOT16 relocation if the
4513 symbol was forced local.
4514 (_bfd_mips_elf_finish_dynamic_symbol): Don't assert there is a
4515 dynamic index if the symbol was forced local.
4516
4517 2000-06-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
4518
4519 * elf32-mips.c: Fix typos in comments.
4520
4521 2000-06-19 Mark Kettenis <kettenis@gnu.org>
4522
4523 * rs6000-core.c: Wrap definition of `union VmInfo' within #ifdef
4524 CORE_VERSION_1.
4525
4526 2000-06-18 Stephane Carrez <stcarrez@worldnet.fr>
4527
4528 * Makefile.in, bfd-in2.h, libbfd.h, configure: Rebuild.
4529 * Makefile.am (ALL_MACHINES, ALL_MACHINES_CFILES, BFD32_BACKENDS,
4530 BFD32_BACKENDS_CFILES): Add 68hc12, 68hc11 files.
4531 * configure.in (bfd_elf32_m68hc12_vec): Recognize.
4532 (bfd_elf32_m68hc11_vec): Likewise.
4533 * config.bfd (targ_cpu): Recognize 68hc12 and 68hc11.
4534 Supports 68hc11 & 68hc12 at the same time.
4535 * targets.c (bfd_elf32_m68hc12_vec): Declare and put in
4536 bfd_target_vector.
4537 (bfd_elf32_m68hc11_vec): Likewise.
4538 * elf.c (prep_headers): Recognize bfd_arch_m68hc12 and 68hc11.
4539 * archures.c (bfd_m68hc12_arch): Define and register in global list
4540 (bfd_m68hc11_arch): Likewise.
4541 * reloc.c (BFD_RELOC_M68HC11_HI8, BFD_RELOC_M68HC11_LO8,
4542 BFD_RELOC_M68HC11_3B): Define.
4543 * cpu-m68hc12.c, elf32-m68hc12.c: New files for 68hc12 support.
4544 * cpu-m68hc11.c, elf32-m68hc11.c: New files for 68hc11 support.
4545
4546 2000-06-18 Ulf Carlsson <ulfc@engr.sgi.com>
4547
4548 * elf_bfd.h (struct elf_backend_data): Add info argument to
4549 elf_backend_hide_symbol.
4550 (_bfd_elf_link_hash_hide_symbol): Likewise.
4551 * elf.c (_bfd_elf_link_hash_hide_symbol): Likewise.
4552 * elf64-ia64.c (elf64_ia64_hash_hide_symbol): Likewise.
4553 * elflink.h (elf_link_add_object_symbols): Likewise.
4554 (elf_link_assign_sym_version): Likewise.
4555
4556 2000-06-18 H.J. Lu <hjl@gnu.org>
4557
4558 * coff-i386.c (coff_i386_reloc): Don't return in case of
4559 output_bfd == (bfd *) NULL if COFF_WITH_PE is defined.
4560 Compensate PE relocations when linking with non-PE object
4561 files to generate a non-PE executable.
4562
4563 2000-06-17 Ulf Carlsson <ulfc@engr.sgi.com>
4564
4565 * elf32-mips.c (mips_elf_calculate_relocation): Explicitly write
4566 GOT entries if we're doing a static link or -Bsymbolic link.
4567
4568 2000-06-15 Ulf Carlsson <ulfc@engr.sgi.com>
4569
4570 * elflink.h (elf_link_adjust_relocs): Check for and call backend
4571 specifific swap_reloc_{in,out} and swap_reloca_{in,out} if
4572 available.
4573 (elf_link_output_relocs): Likewise.
4574 (elf_reloc_link_order): Likewise.
4575
4576 2000-06-16 Nicholas Duffek <nsd@redhat.com>
4577
4578 * archures.c (enum bfd_architecture): #define constants for
4579 PowerPc and RS6000 machine numbers.
4580 * bfd-in2.h: Regenerate.
4581 * coffcode.h (coff_set_arch_mach_hook): #ifdef XCOFF64, set arch
4582 to bfd_arch_powerpc instead of bfd_arch_rs6000. Refer to PowerPc
4583 and RS6000 machine numbers using #defined constants from
4584 archures.c.
4585 * cpu-powerpc.c (arch_info_struct): Refer to PowerPc and RS6000
4586 machine numbers using #defined constants from archures.c. Add
4587 entries for EC603e, 630, A35, RS64II, RS64III, 7400. Specify
4588 64-bit words in 620 entry.
4589 * cpu-rs6000.c (arch_info_struct): Create with entries for RS1,
4590 RSC, and RS2.
4591 (bfd_rs6000_arch): Change default machine to 0 (bfd_mach_rs6k).
4592
4593 2000-06-16 Nicholas Duffek <nsd@cygnus.com>
4594
4595 * coffcode.h (coff_mkobject_hook): Set xcoff_tdata.xcoff64.
4596 * libcoff-in.h (struct xcoff_tdata): Define xcoff64 field.
4597 * libcoff.h (struct xcoff_tdata): Define xcoff64 field.
4598
4599 2000-06-16 Nicholas Duffek <nsd@redhat.com>
4600
4601 * bfd-in.h (bfd_family_coff): Define.
4602 * bfd-in2.h: Regenerate.
4603 * coffgen.c (coff_count_linenumbers, coff_symbol_from,
4604 coff_find_nearest_line): Check COFFness using bfd_family_coff()
4605 instead of bfd_target_coff_flavour.
4606 * cofflink.c (_bfd_coff_final_link): Likewise.
4607 * cpu-ns32k.c (do_ns32k_reloc): Don't strcmp() target name to
4608 exclude XCOFF files.
4609 * reloc.c (bfd_perform_relocation, bfd_install_relocation):
4610 Likewise.
4611 * targets.c (enum bfd_flavour): Add bfd_target_xcoff_flavour.
4612 * xcoff-target.h (TARGET_SYM): Use bfd_target_xcoff_flavour.
4613 * xcofflink.c (XCOFF_XVECP): Delete.
4614 (bfd_xcoff_link_record_set, bfd_xcoff_import_symbol,
4615 bfd_xcoff_export_symbol, bfd_xcoff_link_count_reloc,
4616 bfd_xcoff_record_link_assignment,
4617 bfd_xcoff_size_dynamic_sections): Replace XCOFF_XVECP() with
4618 check for bfd_target_xcoff_flavour.
4619
4620 2000-06-16 Nicholas Duffek <nsd@redhat.com>
4621
4622 * rs6000-core.c: Support 64-bit core files, support pre-4.3 core
4623 files on AIX 4.3.
4624 (read_hdr): New function.
4625 (rs6000coff_core_p): Store mstsave or __context64 struct instead
4626 of trying to extract individual registers. Set abfd->arch_info
4627 to match the architecture that created the core file.
4628 (rs6000coff_get_section_contents): Delete.
4629 * xcoff-target.h (rs6000coff_get_section_contents): Delete.
4630
4631 2000-06-14 H.J. Lu <hjl@gnu.org>
4632
4633 * vms-misc.c (_bfd_vms_next_record): Return -1 if PRIV(vms_rec)
4634 is NULL.
4635
4636 2000-06-13 H.J. Lu <hjl@gnu.org>
4637
4638 * configure: Regenerate.
4639
4640 2000-06-13 J"orn Rennecke <amylaar@cygnus.co.uk>
4641
4642 * peicode.h (pe_ILF_object_p): Use TARGET_LITTLE_SYM instead of
4643 armpei_little_vec.
4644
4645 2000-06-08 David O'Brien <obrien@FreeBSD.org>
4646
4647 * configure.in (VERSION): Update to show this is the CVS mainline.
4648
4649 2000-06-07 Alan Modra <alan@linuxcare.com.au>
4650
4651 * elf32-d10v.c: Include elf/d10v.h
4652 (enum reloc_type): Delete.
4653 * elf32-d30v.c: Include elf/d30v.h
4654 (enum reloc_type): Delete.
4655
4656 * Makefile.am: Run "make dep-am" to regenerate dependencies.
4657 * Makefile.in: Regenerate.
4658
4659 * elf32-i386.c (elf_howto_table): Remove EMPTY_HOWTOs.
4660 (elf32_i386_vtinherit_howto, elf32_i386_vtentry_howto): Delete and
4661 move HOWTOs into elf_howto_table.
4662 (R_386_standard, R_386_ext_offset): Define.
4663 (R_386_ext, R_386_vt_offset, R_386_vt): Define.
4664 (elf_i386_reloc_type_lookup): Modify calculation of index into
4665 elf_howto_table since we've removed the padding.
4666 (elf_i386_info_to_howto_rel): Likewise.
4667 (elf_i386_relocate_section): Likewise.
4668
4669 2000-06-06 Michael Snyder <msnyder@seadog.cygnus.com>
4670
4671 * elf.c (elf_grok_pr_status): Eliminate reference to prgregset_t.
4672
4673 2000-06-05 H.J. Lu <hjl@gnu.org>
4674
4675 * elflink.c (_bfd_elf_link_record_dynamic_symbol): Don't flag
4676 an error when seeing an undefined symbol with hidden/internal
4677 attribute. It is handled in *_relocate_section ().
4678
4679 2000-06-05 H.J. Lu <hjl@gnu.org>
4680
4681 * elflink.h (elf_fix_symbol_flags): Follow the link for the
4682 indirect symbol for the ELF_LINK_NON_ELF bit.
4683 (elf_link_output_extsym): Don't output the indirect symbol even
4684 if the ELF_LINK_NON_ELF bit is set.
4685
4686 2000-06-01 J.T. Conklin <jtc@redback.com>
4687
4688 * config.bfd (i[3456]86-*-netbsdelf*): New target.
4689 (i[3456]86-*-netbsdaout*): New target.
4690 (i[3456]86-*-netbsd*): Add bfd_elf32_i386_vec to targ_selvecs.
4691 (i[3456]86-*-openbsd*): Likewise.
4692
4693 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
4694
4695 * trad-core.c: From hpux-core.c, include <dirent.h> or
4696 <sys/ndir.h> when possible.
4697
4698 2000-05-31 Ulrich Drepper <drepper@redhat.com>
4699
4700 * elf.c (_bfd_elf_slurp_version_tables): Correct reading of version
4701 definitions. We must not assume they are sorted in the file
4702 according to their index numbers.
4703
4704 2000-05-31 Alan Modra <alan@linuxcare.com.au>
4705
4706 * elf-hppa.h: (elf_hppa_final_link_relocate): Use e_rsel field
4707 selector for R_PARISC_PCREL17R. R_PARISC_DIR17R and
4708 R_PARISC_DIR17F are for absolute branches; Handle them as such.
4709
4710 2000-05-30 Nick Clifton <nickc@cygnus.com>
4711
4712 * cpu-i960.c (scan_960_mach): Accept 80960KA, 80960KB,
4713 80960CA, 80960MC as valid machine names.
4714
4715 2000-05-30 H.J. Lu <hjl@gnu.org>
4716
4717 * elflink.c (_bfd_elf_link_record_dynamic_symbol): Clear the
4718 visibility bits if the symbol is undefined. Correctly handle
4719 weak undefined symbols with hidden and internal attributes.
4720
4721 * elflink.h (elf_link_add_object_symbols): Always turn the
4722 symbol into local if it has the hidden or internal attribute.
4723
4724 2000-05-29 Philip Blundell <philb@gnu.org>
4725
4726 * ppcboot.c: Add packed attribute if compiling with GCC.
4727
4728 2000-05-29 Anatoly Vorobey <mellon@pobox.com>
4729
4730 * elf.c (_bfd_elf_link_hash_table_init): Initialize dynlocal.
4731
4732 2000-05-26 Michael Snyder <msnyder@seadog.cygnus.com>
4733
4734 * elf.c (elfcore_grok_prstatus, elfcore_grok_pstatus,
4735 elfcore_grok_psinfo): Add code to allow debugging a 32-bit
4736 corefile on a 64-bit (Sparc Solaris) host. Also clean up
4737 a few old comments.
4738
4739 2000-05-26 Alan Modra <alan@linuxcare.com.au>
4740
4741 * Makefile.am: Update dependencies with "make dep-am"
4742 * Makefile.in: Regenerate.
4743
4744 * sysdep.h (gettext, dgettext, dcgettext, textdomain,
4745 bindtextdomain): Replace defines with those from intl/libgettext.h
4746 to quieten gcc warnings.
4747
4748 2000-05-26 Eli Zaretskii <eliz@is.elta.co.il>
4749
4750 * aoutx.h (find_nearest_line): Use IS_ABSOLUTE_PATH.
4751
4752 * archive.c (normalize, bfd_bsd_truncate_arname,
4753 bfd_gnu_truncate_arname) [HAVE_DOS_BASED_FILE_SYSTEM]: Support
4754 file names with backslashes.
4755
4756 * cache.c (bfd_open_file) [__MSDOS__]: Don't unlink the file
4757 before opening it.
4758
4759 * sysdep.h: Include filenames.h.
4760
4761 2000-05-26 Alan Modra <alan@linuxcare.com.au>
4762
4763 * opncls.c (bfd_close_all_done): Mask file perms with 0777 not 0x777.
4764
4765 2000-05-26 Jakub Jelinek <jakub@redhat.com>
4766
4767 * elf64-sparc.c (sparc64_elf_relax_section): New.
4768 (sparc64_elf_relocate_section): Optimize tail call into branch always
4769 if possible.
4770 * elf32-sparc.c (elf32_sparc_relocate_section): Likewise.
4771 (elf32_sparc_relax_section): New.
4772
4773 2000-05-26 Jakub Jelinek <jakub@redhat.com>
4774
4775 * elf64-sparc.c: Add ATTRIBUTE_UNUSED to unused function parameters.
4776 Remove unusued variables.
4777 (sparc64_elf_relocate_section): Change r_symndx type to unsigned long.
4778 (sparc64_elf_merge_private_bfd_data): Fix shared library case from
4779 previous fix, so that shared libs really don't influence targets
4780 extension mask and memory model.
4781
4782 2000-05-23 H.J. Lu <hjl@gnu.org>
4783
4784 * elf64-alpha.c (elf64_alpha_relocate_section): Check
4785 h->root.other not h->other.
4786 * elf32-mips.c (mips_elf_calculate_relocation): Likewise.
4787
4788 * elf32-ppc.c (ppc_elf_relocate_section): Fix a typo.
4789
4790 2000-05-23 H.J. Lu <hjl@gnu.org>
4791
4792 * elf32-i386.c (elf_i386_relocate_section): Don't allow the
4793 undefined symbol with the non-default visibility attributes.
4794 * elf-hppa.h (elf_hppa_relocate_section): Likewise.
4795 * elf32-arm.h (elf32_arm_relocate_section): Likewise.
4796 * elf32-i370.c (i370_elf_relocate_section): Likewise.
4797 * elf32-m68k.c (elf_m68k_relocate_section): Likewise.
4798 * elf32-mcore.c (mcore_elf_relocate_section): Likewise.
4799 * elf32-mips.c (mips_elf_calculate_relocation): Likewise.
4800 * elf32-ppc.c (ppc_elf_relocate_section): Likewise.
4801 * elf32-sparc.c (elf32_sparc_relocate_section): Likewise.
4802 * elf64-alpha.c (elf64_alpha_relocate_section): Likewise.
4803 * elf64-ia64.c (elf64_ia64_relocate_section): Likewise.
4804 * elf64-sparc.c (sparc64_elf_relocate_section): Likewise.
4805
4806 2000-05-22 Richard Henderson <rth@cygnus.com>
4807
4808 * elf64-ia64.c (ia64_howto_table): Add PCREL60B, PCREL21BI,
4809 PCREL22, PCREL64I. Zero size of special relocs.
4810 (elf64_ia64_reloc_type_lookup): Likewise.
4811 (USE_BRL, oor_brl, oor_ip): New.
4812 (elf64_ia64_relax_section): New.
4813 (elf64_ia64_check_relocs): Handle PCREL60B, PCREL22, PCREL64I.
4814 (elf64_ia64_install_value): Likewise, plus PCREL21BI.
4815 (elf64_ia64_relocate_section): Likewise.
4816 (bfd_elf64_bfd_relax_section): New.
4817 * reloc.c (BFD_RELOC_IA64_PCREL21BI): New.
4818 (BFD_RELOC_IA64_{PCREL22,PCREL60B,PCREL64I}): New.
4819 * bfd-in2.h, libbfd.h: Regenerate.
4820
4821 2000-05-22 Nick Clifton <nickc@cygnus.com>
4822
4823 * configure.in : Add peigen.lo to MIPS PE targets.
4824 * configure: Regenerate.
4825
4826 2000-05-22 Momchil Velikov <velco@fadata.bg>
4827
4828 * libbfd.c (_bfd_generic_verify_endian_match): Compare endianess
4829 only if it is known for both input and output bfds. Separate
4830 error message strings as in some languages, it may be necessary
4831 to change more than one place in the string to change between
4832 'big' and 'little'.
4833
4834 * elf32-ppc.c (ppc_elf_merge_private_bfd_data): Remove inline
4835 endianess checks, call _bfd_generic_verify_endian_match() instead.
4836
4837 * elf32-mips.c (_bfd_mips_elf_merge_private_bfd_data): Likewise.
4838
4839 * elf32-mcore.c (mcore_elf_merge_private_bfd_data): Likewise.
4840
4841 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Likewise. Verify
4842 endianess before checking bfd flavours.
4843
4844 2000-05-22 H.J. Lu <hjl@gnu.org>
4845
4846 * elflink.h (elf_link_output_extsym): Clear the visibility
4847 field for symbols not defined locally.
4848
4849 2000-05-18 Alan Modra <alan@linuxcare.com.au>
4850
4851 * libhppa.h (re_assemble_3, re_assemble_12, re_assemble_16,
4852 re_assemble_17, re_assemble_21, re_assemble_22): Don't mask insn.
4853 (hppa_rebuild_insn): Mask immediate bits here instead.
4854 * elf-hppa.h (elf_hppa_relocate_insn): Mask here too.
4855
4856 2000-05-18 Momchil Velikov <velco@fadata.bg>
4857
4858 * elflink.h (elf_bfd_final_link, elf_link_input_bfd): When emiting
4859 relocs for an executable, ensure that they are virtual addresses.
4860
4861 2000-05-18 Jeffrey A Law (law@cygnus.com)
4862
4863 * config.bfd (hppa*64*-*-hpux11*): New target triplet.
4864
4865 2000-05-17 S. Bharadwaj Yadavalli <sby@scrugs.lkg.dec.com>
4866 Rick Gorton <gorton@scrugs.lkg.dec.com>
4867
4868 * elflink.h: Add emitrelocations support: when enabled, relocation
4869 information and relocation sections are put into final output
4870 executables. If the emitrelocations flag is set, do the following:
4871 (elf_bfd_final_link): Emit relocation sections.
4872 (elf_link_input_bfd): Compute relocation section contents.
4873 (elf_gc_sections): Don't clean relocation sections.
4874
4875 2000-05-16 Catherine Moore <clm@cygnus.com>
4876
4877 * som.c (som_decode_symclass): Recognize weak symbols.
4878
4879 2000-05-16 Szabolcs Szakacsits <szaka@F-Secure.com>
4880
4881 * peigen.c (pe_print_idata): Undo part of 2000-05-12 change that
4882 read idata section only from dataoff.
4883 (pe_print_edata): Correctly check for valid eat_member.
4884
4885 2000-05-16 J"orn Rennecke <amylaar@cygnus.co.uk>
4886
4887 * elf32-sh.c (sh_elf_relax_delete_bytes): Handle R_SH_SWITCH8.
4888
4889 2000-05-14 Philip Blundell <philb@gnu.org>
4890
4891 * config.bfd (armeb-*-elf, arm*b-*-linux-gnu*): New targets.
4892
4893 2000-05-12 Alan Modra <alan@linuxcare.com.au>
4894
4895 * targets.c (bfd_target_vector): #ifdef BFD64 rs6000coff64_vec
4896
4897 * peigen.c (pe_print_idata): Look for .idata section and print
4898 info even if data directory has zero entries. Read idata section
4899 starting from dataoff, and adjust all data offsets to suit. Cast
4900 all bfd_vma vars to unsigned long before passing to fprintf.
4901 * peigen.c (pe_print_edata): Similarly, look for .edata section
4902 and print info even if data directory has zero entries. Cast
4903 all bfd_vma vars to unsigned long before passing to fprintf.
4904
4905 From Szabolcs Szakacsits <szaka@F-Secure.com>
4906 * peigen.c (pe_print_idata): Use bfd_section_size rather than data
4907 directory size which may be bogus.
4908 * peigen.c (pe_print_edata): Similarly.
4909
4910 2000-05-09 Alan Modra <alan@linuxcare.com.au>
4911
4912 * elf.c (bfd_section_from_shdr): Don't set use_rela_p if rela
4913 section is empty.
4914 (copy_private_bfd_data): Allow for space possibly taken up by elf
4915 headers when calculating segment physical address from lma.
4916
4917 2000-05-08 Alan Modra <alan@linuxcare.com.au>
4918
4919 * versados.c (versados_scan): Init stringlen and pass_2_done.
4920
4921 * trad-core.c (trad_unix_core_file_p): Return
4922 bfd_error_wrong_format rather than bfd_error_file_truncated.
4923
4924 * peigen.c (_bfd_pei_swap_aouthdr_out): Pass ImageBase to
4925 add_data_entry. DataDirectory virtual address is relative.
4926 (pe_print_idata): Account for relative DataDirectory virtual
4927 addresses. Don't trash datasize inside POWERPC_LE_PE code.
4928 (pe_print_edata): Similarly.
4929
4930 From Szabolcs Szakacsits <szaka@F-Secure.com>
4931 * peigen.c (dir_names): Add Delay Import Directory.
4932 (pe_print_idata): Always search for bfd section containing
4933 idata address rather than looking up section name. Print this
4934 section name rather than .idata.
4935 (pe_print_edata): Similarly. Also print some fields as %08lx.
4936 (_bfd_pe_print_private_bfd_data_common): Print Reserved1 field as
4937 Win32Version.
4938
4939 2000-05-05 Clinton Popetz <cpopetz@cygnus.com>
4940
4941 * xcoff.h: Rename to xcoff-target.h
4942 * Makefile.am: Change all instances of xcoff.h to xcoff-target.h
4943 * coff-rs6000.c: Ditto.
4944 * coff64-rs6000.c: Ditto.
4945 * coff-pmac.c: Ditto.
4946 * Makefile.in: Regenerate.
4947
4948 2000-05-05 Clinton Popetz <cpopetz@cygnus.com>
4949
4950 * coffcode.h (coff_set_arch_mach_hook, coff_set_flags):
4951 Change U802TOC64MAGIC to U803XTOCMAGIC.
4952
4953 2000-05-04 Michael Snyder <msnyder@seadog.cygnus.com>
4954
4955 * elf.c (bfd_elf_get_arch_size): New function, return 32 | 64 | -1.
4956 * bfd-in.h: Prototype bfd_elf_get_arch_size.
4957 * bfd-in2.h: Prototype bfd_elf_get_arch_size.
4958
4959 2000-05-04 Alan Modra <alan@linuxcare.com.au>
4960
4961 * libhppa.h (HPPA_R_CONSTANT): Cast argument to bfd_signed_vma.
4962
4963 2000-05-03 Martin v. L\81öwis <loewis@informatik.hu-berlin.de>
4964
4965 * elflink.h (elf_link_add_object_symbols): Reset dynindx for
4966 hidden and internal symbols.
4967 (elf_fix_symbol_flags): Clear NEEDS_PLT for symbols with
4968 visibility.
4969 * elflink.c (_bfd_elf_link_record_dynamic_symbol): Do not
4970 assign a PLT or GOT entry to symbols with hidden and
4971 internal visibility.
4972
4973 2000-05-03 Mark Elbrecht <snowball3@bigfoot.com>
4974
4975 * coff-go32.c (COFF_SECTION_ALIGNMENT_ENTRIES): Add entry for
4976 the .bss section.
4977 * coff-stgo32.c (COFF_SECTION_ALIGNMENT_ENTRIES): Likewise.
4978
4979 2000-05-02 H.J. Lu <hjl@gnu.org>
4980
4981 * elf.c (prep_headers): Use ELFOSABI_NONE instead of
4982 ELFOSABI_SYSV.
4983
4984 2000-05-02 Alan Modra <alan@linuxcare.com.au>
4985
4986 * targets.c (bfd_target_vector): Restore bfd_elf32_hppa_vec.
4987 * Makefile.am (BFD32_BACKENDS): Restore elf32-hppa.lo. Regenerate
4988 dependencies.
4989 * Makefile.in: Regenerate.
4990
4991 2000-05-01 Jim Wilson <wilson@cygnus.com>
4992
4993 * Makefile.am (BFD32_BACKENDS): Add efi-app-ia32.lo.
4994 (BFD32_BACKENDS_CFILES): Add efi-app-ia32.c.
4995 (BFD64_BACKENDS): Delete coff-ia64.lo. Add efi-app-ia64.lo.
4996 (BFD64_BACKENDS_CFILES): Delete coff-ia64.c. Add efi-app-ia64.c.
4997 * Makefile.in: Rebuild.
4998
4999 2000-05-02 Alan Modra <alan@linuxcare.com.au>
5000
5001 * config.bfd: Re-enable elf32-hppa. It now compiles, even if it
5002 doesn't work very well.
5003
5004 * elf-hppa.h (elf_hppa_internal_shdr): Define.
5005 (elf_hppa_fake_sections): hdr is elf_hppa_internal_shdr.
5006 Set hdr->s_type to 1 if ARCH_SIZE == 32.
5007 (_bfd_elf_hppa_gen_reloc_type): Add prototype.
5008 (elf_hppa_info_to_howto): Likewise.
5009 (elf_hppa_info_to_howto_rel): Likewise.
5010 (elf_hppa_reloc_type_lookup): Likewise.
5011 (elf_hppa_is_local_label_name): Likewise.
5012 (elf_hppa_fake_sections): Likewise.
5013 (elf_hppa_final_write_processing): Likewise.
5014 (elf_hppa_howto_table): Fully initialise all entries.
5015 (_bfd_elf_hppa_gen_reloc_type): Add ATTRIBUTE_UNUSED to args.
5016 (elf_hppa_info_to_howto): Likewise.
5017 (elf_hppa_info_to_howto_rel): Likewise.
5018 (elf_hppa_reloc_type_lookup): Likewise.
5019 (elf_hppa_final_write_processing, elf_hppa_add_symbol_hook,
5020 elf_hppa_unmark_useless_dynamic_symbols,
5021 elf_hppa_remark_useless_dynamic_symbols,
5022 elf_hppa_record_segment_addrs, elf_hppa_final_link,
5023 elf_hppa_relocate_section, elf_hppa_final_link_relocate,
5024 elf_hppa_relocate_insn): Compile only if ARCH_SIZE == 64 until
5025 elf32-hppa.c mess is cleaned up.
5026 (elf_hppa_final_link_relocate): Make insn and r_type unsigned
5027 int. Delete r_field. In case R_PARISC_PCREL21L, don't set
5028 r_field then call hppa_field_adjust inline func with variable
5029 r_field arg, instead call hppa_field_adjust with fixed arg.
5030 In case R_PARISC_PCREL22F, don't set r_field.
5031 (elf_hppa_relocate_insn): Change args and return type to unsigned
5032 int. Call re_assemble_* funcs to do the work.
5033
5034 * elf32-hppa.c (hppa_elf_relocate_insn): Don't assume 32 bit when
5035 sign extending.
5036
5037 * libhppa.h (HPPA_R_CONSTANT): Don't assume 32 bit when sign
5038 extending.
5039 (sign_extend): Mask first before sign extending.
5040 (low_sign_extend): Rewrite without condition expression.
5041 (ones, dis_assemble_3, dis_assemble_12, dis_assemble_16,
5042 dis_assemble_17, dis_assemble_21, dis_assemble_22): Delete.
5043 (assemble_3, assemble_6, assemble_12, assemble_16, assemble_16a,
5044 assemble_17, assemble_21, sign_unext, low_sign_unext): Return
5045 result as function return value rather than through pointer arg.
5046 Accept unsigned int args, and return unsigned int.
5047 (re_assemble_3): New. Combines function of dis_assemble_3 with
5048 re-assembly of opcode and immediate.
5049 (re_assemble_12): Likewise.
5050 (re_assemble_16): Likewise.
5051 (re_assemble_17): Likewise.
5052 (re_assemble_21): Likewise.
5053 (re_assemble_22): Likewise.
5054 (hppa_field_adjust): Rewrite and document, paying attention to
5055 size of types and signed/unsigned issues.
5056 (get_opcode): Shift before masking.
5057 (FDLW): Rename to FLDW.
5058 (bfd_hppa_insn2fmt): Change arg to unsigned int. Delete fmt.
5059 (hppa_rebuild_insn): Change args and return value to unsigned
5060 int. Make use of re_assemble_*. Correct case 11.
5061
5062 * dep-in.sed: Handle ../opcodes/.
5063 * Makefile.am (SOURCE_HFILES): Add elf-hppa.h, elf32-hppa.h,
5064 elf64-hppa.h, hppa_stubs.h, xcoff.h.
5065 (BFD32_BACKENDS_CFILES): Restore elf32-hppa.c.
5066 Remove elf64-hppa.lo, cpu-ia64.lo, elf64-ia64.lo, elfarm-oabi.lo,
5067 elfarm-nabi.lo dependencies outside of auto-dependency area.
5068 Regenerate dependencies.
5069 * Makefile.in: Regenerate.
5070
5071 * configure.in (TRAD_HEADER): Test non-null before
5072 AC_DEFINE_UNQUOTED.
5073 * configure: Regenerate.
5074
5075 * reloc.c: Fix mis-spelling in comment.
5076
5077 2000-05-01 Alan Modra <alan@linuxcare.com.au>
5078
5079 * coff-sh.c (bfd_coff_small_swap_table): Fix Fri Apr 28 change.
5080 * vms.c (vms_openr_next_archived_file): Return NULL.
5081
5082 2000-04-28 Clinton Popetz <cpopetz@cygnus.com>
5083
5084 * coffcode.h Copy changes mistakenly done to libcoff.h in
5085 4/24/2000 patch.
5086
5087 2000-04-29 Andreas Jaeger <aj@suse.de>
5088
5089 * libbfd-in.h: Correctly check GCC version.
5090 * bfd-in.h: Likewise.
5091 * libhppa.h: Likewise.
5092 * libbfd.h: Regenerate.
5093 * bfd-in2.h: Regenerate.
5094
5095 2000-04-28 Clinton Popetz <cpopetz@cygnus.com>
5096
5097 * Makefile.am (BFD64_BACKENDS, BFD64_BACKENDS_CFILES): Add
5098 coffdu-rs6000.{lo,c}.
5099 (coff-pmac.lo, coff-rs6000.lo, coff64-rs6000.lo): Add dependency
5100 on xcoff.h
5101 * Makefile.in: Regenerate.
5102 * xcoff.h: New file.
5103 * coff-pmac.c: Use xcoff.h instead of coff-rs6000.c.
5104 * coff-rs6000.c: Move all declarations and defines that are
5105 common to the xcoff backends into xcoff.h
5106 * coff64-rs6000.c: Ditto,
5107
5108 2000-04-28 Clinton Popetz <cpopetz@cygnus.com>
5109
5110 * coff-mips.c (mips_ecoff_backend_data): Add initialization of
5111 _bfd_coff_force_symnames in strings and
5112 _bfd_coff_debug_string_prefix_length to their default values.
5113 * coff-sh.c: (bfd_coff_small_swap_table): Ditto.
5114
5115 2000-04-28 Clinton Popetz <cpopetz@cygnus.com>
5116
5117 * coff-alpha.c (alpha_ecoff_backend_data): Add initialization of
5118 _bfd_coff_force_symnames in strings and
5119 _bfd_coff_debug_string_prefix_length to their default values.
5120
5121 2000-04-27 Alan Modra <alan@linuxcare.com.au>
5122
5123 * elf32-m68k.c (elf_m68k_gc_sweep_hook): Return if dynobj NULL.
5124 Check local_got_refcounts before dereferencing.
5125
5126 * elf32-ppc.c (ppc_elf_relocate_section): Check splt != NULL
5127 before deciding we don't need R_PPC_PLT32 relocation.
5128 (ppc_elf_gc_sweep_hook): Check local_got_refcounts before
5129 dereferencing.
5130
5131 * elflink.h (elf_gc_common_finalize_got_offsets): Fix comment.
5132
5133 * elf32-i386.c (elf_i386_check_relocs): Reference count .got and
5134 .plt entries.
5135 (elf_i386_gc_sweep_hook): Garbage collect .got and .plt entries.
5136 (elf_i386_adjust_dynamic_symbol): Recognize unused .plt entries.
5137 (elf_i386_relocate_section): Allow for .plt to go missing.
5138 (elf_i386_finish_dynamic_symbol): Use same test to decide if we
5139 can use a relative reloc for got as elf_i386_relocate_section.
5140 (bfd_elf32_bfd_final_link): Define to use gc form of final link.
5141
5142 2000-04-26 Clinton Popetz <cpopetz@cygnus.com>
5143
5144 * config.bfd: Remove extraneous bfd_powerpc_64_arch.
5145
5146 2000-04-24 Clinton Popetz <cpopetz@cygnus.com>
5147
5148 * Makefile.am (coff64-rs6000.lo): New rule.
5149 * Makefile.in: Regenerate.
5150 * coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
5151 xcoff_is_local_label_name, xcoff_rtype2howto,
5152 xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
5153 xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
5154 xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
5155 (NO_COFF_SYMBOLS): Define.
5156 (xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
5157 xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
5158 internally.
5159 (MINUS_ONE): New macro.
5160 (xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
5161 relocation.
5162 (coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
5163 coff_SWAP_aux_out): Map to the new functions.
5164 * coff64-rs6000.c: New file.
5165 * libcoff.h (bfd_coff_backend_data): Add new fields
5166 _bfd_coff_force_symnames_in_strings and
5167 _bfd_coff_debug_string_prefix_length.
5168 (bfd_coff_force_symnames_in_strings,
5169 bfd_coff_debug_string_prefix_length): New macros for above fields.
5170 * coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
5171 Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
5172 of using coff_swap_sym_in directly.
5173 (FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
5174 (coff_set_flags) Set magic for XCOFF64.
5175 (coff_compute_section_file_positions): Add symbol name length to
5176 string section length if bfd_coff_debug_string_prefix_length is
5177 true.
5178 (coff_write_object_contents): Don't do reloc overflow for XCOFF64.
5179 (coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
5180 using coff_swap_lineno_in directly.
5181 (bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
5182 and _bfd_coff_debug_string_prefix_length fields.
5183 * coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
5184 symbol names into strings table when
5185 bfd_coff_force_symnames_in_strings is true.
5186 * coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
5187 SET_RELOC_VADDR): New macros.
5188 (coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
5189 (coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
5190 code.
5191 (coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
5192 changes within RS6000COFF_C specific code.
5193 (coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
5194 MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
5195 * reloc.c (bfd_perform_relocation, bfd_install_relocation):
5196 Extend existing hack on target name.
5197 * xcofflink.c (XCOFF_XVECP): Extend existing hack on
5198 target name.
5199 * coff-tic54x.c (ticof): Keep up to date with new fields
5200 in bfd_coff_backend_data.
5201 * config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
5202 targ_selvecs to include rs6000coff64_vec for rs6000.
5203 * configure.in: Add rs6000coff64_vec case.
5204 * cpu-powerpc.c: New bfd_arch_info_type.
5205
5206 2000-04-24 Jeffrey A Law (law@cygnus.com)
5207
5208 * config.bfd: Only disable elf32-hppa vectors, not all of the
5209 BSD and OSF configuration support. Provide (disabled) clauses
5210 for PA64 support.
5211 * configure.in: Add clause for PA64 support.
5212 * configure: Rebuilt.
5213
5214 * targets.c (bfd_target_vector): Add bfd_elf64_hppa_vec.
5215 (bfd_elf64_hppa_vec): Declare.
5216
5217 * Makefile.am (BFD64_BACKENDS): Add elf64-hppa.lo
5218 (BFD64_BACKENDS_CFILES): Add elf64-hppa.c
5219 (elf64-hppa.lo): Add dependencies.
5220 * Makefile.in: Rebuilt.
5221
5222 * elf64-hppa.c, elf64-hppa.h: New files with PA64 support.
5223
5224 2000-04-24 Jason Eckhardt <jle@cygnus.com>
5225
5226 * libhppa.h (dis_assemble_16): New function.
5227 (pa_arch): Added pa20w element.
5228
5229 2000-04-24 Ulrich Drepper <drepper@cygnus.com>
5230
5231 * elf-bfd.h: Add prototypes for bfd_elf32_write_relocs,
5232 bfd_elf32_slurp_reloc_table, bfd_elf64_write_relocs, and
5233 bfd_elf64_slurp_reloc_table.
5234
5235 * elfcode.h (elf_write_relocs, elf_slurp_reloc_table): New
5236 definitions to get external names.
5237 (elf_write_relocs): Renamed from write_relocs and make global.
5238 (elf_slurp_reloc_table): Make global.
5239 (_bfd_elf,size_info): Use elf_write_relocs instead of write_relocs.
5240
5241 * archive.c (hpux_uid_gid_encode): New function.
5242 (bfd_ar_hdr_from_filesystem): Use it if HPUX_LARGE_AR_IDS is
5243 defined and the ID is greater than 99999.
5244 (bfd_generic_stat_arch_elt): If HPUX_LARGE_AR_IDS is defined decode
5245 special uid/gid fields into 32 bit values.
5246
5247 2000-04-21 Matthew Green <mrg@cygnus.com>
5248
5249 * config.bfd: Add NetBSD/sparc64 support.
5250
5251 Fri Apr 21 13:20:53 2000 Richard Henderson <rth@cygnus.com>
5252 David Mosberger <davidm@hpl.hp.com>
5253 Timothy Wall <twall@cygnus.com>
5254 Jim Wilson <wilson@cygnus.com>
5255
5256 * Makefile.am (ALL_MACHINES): Add cpu-ia64.lo.
5257 (ALL_MACHINES_CFILES): Add cpu-ia64.c.
5258 (BFD64_BACKENDS): Add elf64-ia64.lo.
5259 (BFD64_BACKENDS_CFILES): Add elf64-ia64.c.
5260 (cpu-ia64.lo, elf64-ia64.lo): New rules.
5261 * Makefile.in: Rebuild.
5262 * archures.c (enum bfd_architecture): Add bfd_arch_ia64.
5263 (bfd_ia64_arch): Declare.
5264 (bfd_archures_list): Add bfd_ia64_arch.
5265 * bfd-in2.h: Rebuild.
5266 * config.bfd: (ia64*-*-linux-gnu*, ia64*-*-elf*): New targets.
5267 * configure: Rebuild.
5268 * configure.host: (ia64-*-linux*): New host.
5269 * configure.in (bfd_elf64_ia64_little_vec, bfd_elf64_ia64_big_vec,
5270 bfd_efi_app_ia64_vec, bfd_efi_app_ia64_vec): New vectors.
5271 * elf.c (prep_headers): Add bfd_arch_ia64.
5272 * libbfd.h: Rebuild.
5273 * reloc.c: Add IA-64 relocations.
5274 * targets.c (bfd_elf64_ia64_little_vec, bfd_elf64_ia64_big_vec):
5275 Declare.
5276 (bfd_target_vect): Add bfd_elf64_ia64_little_vec.
5277 * cpu-ia64-opc.c, cpu-ia64.c, elf64-ia64.c: New files.
5278
5279 2000-04-21 Richard Henderson <rth@cygnus.com>
5280
5281 * elf32-d30v.c (bfd_elf_d30v_reloc): Don't modify section
5282 contents when performing a partial link.
5283 (bfd_elf_d30v_reloc_21): Likewise.
5284
5285 2000-04-20 H.J. Lu <hjl@gnu.org>
5286
5287 * elf32-i386.c (elf_i386_relocate_section): Restrict 1998-12-10
5288 patch to symbols defined by a shared object.
5289 * elf32-ppc.c (ppc_elf_relocate_section): Similarly.
5290
5291 2000-04-19 Michael Sokolov <msokolov@ivan.Harhan.ORG>
5292
5293 K&R compiler fixes.
5294 * dwarf2.c (concat_filename): Avoid string literal concatenation.
5295 * ieee.c (ieee_get_symtab): Don't initialise union in struct.
5296
5297 Mon Apr 17 19:14:36 2000 David Mosberger <davidm@hpl.hp.com>
5298
5299 * Makefile.am (BFD64_BACKENDS): Mention coff-ia64.lo.
5300 (BFD64_BACKENDS_CFILES): Mention coff-ia64.c
5301 (coff-ia64.lo): Add dependency.
5302 * Makefile.in: Regenerate.
5303 * coff-ia64.c: New file.
5304 * efi-app-ia32.c: Ditto.
5305 * efi-app-ia64.c: Ditto.
5306 * coffcode.h (coff_set_arch_mach_hook): Handle IA64MAGIC.
5307 (coff_set_flags): Ditto.
5308 (coff_write_object_contents) [IA64]: Set magic number to ZMAGIC.
5309 * config.bfd (i[3456]86-*-linux-gnu*): Mention bfd_efi_app_ia32_vec.
5310 * configure.in (elf): Handle bfd_efi_app_ia32 and bfd_efi_app_ia64_vec.
5311 * configure: Regenerate.
5312 * libpei.h (GET_OPTHDR_IMAGE_BASE): New macro.
5313 (PUT_OPTHDR_IMAGE_BASE): Ditto.
5314 (GET_OPTHDR_SIZE_OF_STACK_RESERVE): Ditto.
5315 (PUT_OPTHDR_SIZE_OF_STACK_RESERVE): Ditto.
5316 (GET_OPTHDR_SIZE_OF_STACK_COMMIT): Ditto.
5317 (PUT_OPTHDR_SIZE_OF_STACK_COMMIT): Ditto.
5318 (GET_OPTHDR_SIZE_OF_HEAP_RESERVE): Ditto.
5319 (PUT_OPTHDR_SIZE_OF_HEAP_RESERVE): Ditto.
5320 (GET_OPTHDR_SIZE_OF_HEAP_COMMIT): Ditto.
5321 (PUT_OPTHDR_SIZE_OF_HEAP_COMMIT): Ditto.
5322 (GET_PDATA_ENTRY): Ditto.
5323 * peigen.c (_bfd_pei_swap_aouthdr_in) [COFF_WITH_PEP64]: Don't read
5324 data_start. Use above macros to read fields that are 64 bit wide for
5325 COFF_WITH_PEP64. Don't truncate entry and text_start to 32 bits.
5326 (_bfd_pei_swap_aouthdr_out) [PEI_FORCE_MINIMUM_ALIGNMENT]: Force
5327 FileAlignment and SectionAlignment to minimum alignment if they
5328 are zero.
5329 (_bfd_pei_swap_aouthdr_out) [PEI_DEFAULT_TARGET_SUBSYSTEM]: Set
5330 Subsystem to default PEI_DEFAULT_TARGET_SUBSYSTEM.
5331 (_bfd_pei_swap_aouthdr_out) [COFF_WITH_PEP64]: Don't set data_start.
5332 Use above macros to write fields that are 64 bit wide for
5333 COFF_WITH_PEP64.
5334 (pe_print_pdata): Set PDATA_ROW_SIZE to 3*8 for COFF_WITH_PEP64,
5335 5*4 otherwise. This should be right for IA-32 and IA-64, but may
5336 be wrong for platforms. Use PDATA_ROW_SIZE instead of hardcoded
5337 value of 20 bytes. Modify printing for COFF_WITH_PEP64 to print
5338 begin address, end address, and unwind info address only. Use
5339 GET_PDATA_ENTRY() to read .pdata entries. Use fprintf_vma() to
5340 print addresses.
5341 (tbl): Add SECTION, REL32, RESERVED1, MIPS_JMPADDR16, DIR64, and
5342 HIGH3ADJ relocation names.
5343 (_bfd_pe_print_private_bfd_data): Print Subsystem name in legible form.
5344 * targets.c: Declare bfd_efi_app_ia32_vec and
5345 bfd_efi_app_ia64_vec.
5346 (bfd_target_vector): Mention bfd_efi_app_ia32_vec and
5347 bfd_efi_app_ia64_vec.
5348
5349 2000-04-17 Timothy Wall <twall@cygnus.com>
5350
5351 * bfd-in2.h: Add prototypes for tic54x load page access.
5352 * bfd-in.h: Regenerate.
5353 * coff-tic54x.c: Add load page functions; allow bfd_arch_unknown
5354 in customized _set_arch_mach function.
5355 * coffcode.h (coff_set_alignment_hook): Set section load page if
5356 the appropriate macro is defined.
5357 (write_object_contents): Read section load page.
5358
5359 2000-04-13 Alan Modra <alan@linuxcare.com.au>
5360
5361 * elf32-hppa.h: Update copyright date.
5362
5363 * elf32-fr30.c (fr30_elf_i20_reloc): Don't use U suffix.
5364 * elf32-mips.c (_bfd_mips_elf_relocate_section): And here.
5365
5366 * elf32-d30v.c (MAX32): Don't use LL suffix.
5367 (MIN32): Define in terms of MAX32.
5368 (bfd_elf_d30v_reloc): Make relocation a bfd_signed_vma.
5369
5370 * coff-a29k.c (SIGN_EXTEND_HWORD): Replace with more concise
5371 expression.
5372
5373 * peicode.h (pe_ILF_build_a_bfd): Remove UL from hex constants.
5374
5375 2000-04-12 Alan Modra <alan@linuxcare.com.au>
5376
5377 * dep-in.sed: Match space before file name, not after.
5378 * Makefile.am: Regenerate dependencies.
5379 * Makefile.in: Regenerate.
5380
5381 * reloc.c (_bfd_relocate_contents): In complain_overflow_bitfield
5382 case, allow address wrap-around stupidly removed 2000-03-17. Sign
5383 extend without an if statement.
5384
5385 2000-04-11 Alan Modra <alan@linuxcare.com.au>
5386
5387 * coff-mips.c (mips_gprel_reloc): Test for 16 bit range using
5388 signed quantites.
5389 * elf32-mips.c (gprel16_with_gp): Likewise.
5390 * elf32-hppa.c (elf32_hppa_bfd_final_link_relocate): Test range
5391 here using -0x40000, not (int)0xfffc0000.
5392 (elf32_hppa_size_of_stub): Likewise.
5393
5394 2000-04-11 Timothy Wall <twall@cygnus.com>
5395
5396 * coff-tic54x.c: Now builds with all targets.
5397 * Makefile.am: Add coff/tic54x.h to coff-tic54x.o dependencies.
5398 * Makefile.in: Regenerate.
5399 * coffcode.h (coff_set_arch_mach_hook): Eliminate warning on
5400 unitialized variable.
5401
5402 Fri Apr 7 15:56:57 2000 Andrew Cagney <cagney@b1.cygnus.com>
5403
5404 * configure.in (WARN_CFLAGS): Set to -W -Wall by default. Add
5405 --enable-build-warnings option.
5406 * Makefile.am (AM_CFLAGS, WARN_CFLAGS): Add definitions.
5407 * Makefile.in, configure: Re-generate.
5408
5409 2000-04-07 Nick Clifton <nickc@cygnus.com>
5410
5411 * reloc.c: Add BFD_RELOC_ARM_PCREL_BLX and
5412 BFD_RELOC_THUMB_PCREL_BLX.
5413
5414 * elf32-arm.h (elf32_arm_final_link_relocate): Handle
5415 R_ARM_XPC25 and R_ARM_THM_PC22.
5416
5417 * elfarm-nabi.c (elf32_arm_howto_): Fix definitions of
5418 R_ARM_XPC25 and R_ARM_THM_XPC22.
5419 (elf32_arm_reloc_map): Make BFD_RELOC_{ARM|THUMB}_PCREL_BLX to
5420 R_ARM_[XPC25|THM_XPC22].
5421
5422 * elfarm-oabi.c: Define OLD_ARM_ABI and change include from
5423 elf/arm-oabi.h to elf/arm.h
5424
5425 * Makefile.am: Fix dependency for elfarm-oabi.c
5426 * Makefile.in: Regenerate.
5427
5428 * bfd-in2.h: Regenerate.
5429 * libbfd.h: Regenerate.
5430
5431 2000-04-06 Michael Snyder <msnyder@seadog.cygnus.com>
5432
5433 * elfcore.h (elf_core_file_p): preserve value of tdata at entry,
5434 and restore it on failure. Release newly allocated tdata on
5435 failure.
5436
5437 Fri Apr 7 11:33:47 2000 Jim Wilson <wilson@cygnus.com>
5438
5439 * dwarf2.c (struct dwarf2_debug): New field dwarf_line_size.
5440 (decode_line_info): Set it. Report error if unit->line_offset is
5441 equal to or larger than it.
5442
5443 2000-04-07 Timothy Wall <twall@cygnus.com>
5444
5445 * targets.c: Added vecs for tic54x.
5446 * reloc.c: Added relocs for tic54x.
5447 * libbfd.h: Regenerated.
5448 * configure: Add TI COFF vecs for tic54x.
5449 * configure.in: Ditto.
5450 * config.bfd (targ_cpu): Recognize new tic54x target.
5451 * coffcode.h (coff_slurp_symbol_table): Additions for TI COFF handling.
5452 * bfd-in2.h: Add tic54x target and relocations.
5453 * Makefile.am, Makefile.in: Add tic54x target.
5454 * archures.c (bfd_archures_list): Add tic54x target.
5455 * coff-tic54x.c: New.
5456 * cpu-tic54x.c: New.
5457
5458 2000-04-06 Michael Snyder <msnyder@seadog.cygnus.com>
5459
5460 * elfcore.h (elf_core_file_p): call backend_object_p which
5461 thereby gets an opportunity to update the arch/machine type.
5462
5463 2000-04-06 Timothy Wall <twall@cygnus.com>
5464
5465 * coffcode.h (coff_slurp_symbol_table): Handle C_STATLAB storage
5466 class. Handle SEC_CLINK and SEC_BLOCK flags.
5467 * section.c: Add SEC_CLINK and SEC_BLOCK flags.
5468 * bfd-in2.h: Add SEC_CLINK and SEC_BLOCK flags.
5469
5470 2000-04-06 Nick Clifton <nickc@cygnus.com>
5471
5472 * elf32-arm.h (elf32_arm_set_private_flags): Only check for
5473 EF_INTERWORK if this is an unknown EABI.
5474 (elf32_arm_merge_private_bfd_data): Check EABI version
5475 numbers. Only check EF_xxx flags if the EABI version number
5476 is unknown.
5477 (elf32_arm_check_private_bfd_data): Only check EF_xxx flags
5478 if the EABI version number is unknown.
5479 (elf32_arm_print_private_bfd_data): Only decode EF_xxx flags
5480 if the EABI version number is unknown.
5481
5482 Wed Apr 5 22:04:20 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
5483
5484 * reloc.c (_bfd_relocate_contents): Add BFD_RELOC_SH_LOOP_START and
5485 BFD_RELOC_SH_LOOP_END.
5486 * elf32-sh.c (sh_elf_howto_tab): Change special_func to
5487 sh_elf_ignore_reloc for all entries that sh_elf_reloc used to ignore.
5488 Add entries for R_SH_LOOP_START and R_SH_LOOP_END.
5489 (sh_elf_reloc_loop): New function.
5490 (sh_elf_reloc): No need to test for always-to-be-ignored relocs
5491 any more.
5492 (sh_rel): Add entries for BFD_RELOC_SH_LOOP_{START,END}.
5493 (sh_elf_relocate_section): Handle BFD_RELOC_SH_LOOP_{START,END}.
5494 * bfd-in2.h, libbfd.h: Regenerate.
5495
5496 2000-04-04 Alan Modra <alan@linuxcare.com.au>
5497
5498 * po/bfd.pot: Regenerate.
5499
5500 * Makefile.am: Remove extraneous mkdep comment.
5501 (MKDEP): Use gcc -MM rather than mkdep.
5502 (DEP): Quote when passing vars to sub-make. Add warning
5503 message to end.
5504 (DEP1): Rewrite for "gcc -MM".
5505 (CLEANFILES): Add DEP2.
5506 Update dependencies.
5507 * Makefile.in: Regenerate.
5508
5509 2000-04-03 Kevin Buettner <kevinb@redhat.com>
5510
5511 * configure.in: Added corefile support for AIX 4.3. In particular,
5512 AIX_CORE_DUMPX_CORE will be defined in addition to AIX_CORE when
5513 compiling rs6000-core.c.
5514 * configure: Regenerated.
5515
5516 2000-04-03 H.J. Lu <hjl@gnu.org>
5517
5518 * cache.c (bfd_open_file): Unlink the output file only if
5519 it has non-zero size.
5520
5521 2000-04-01 Ken Block USG <block@zk3.dec.com>
5522
5523 * elf64-alpha.c (elf64_alpha_relocate_section): Don't emit
5524 relative relocations for non-loaded sections in shared objects.
5525 (elf64_alpha_check_relocs): Similarly.
5526
5527 Mon Apr 3 13:37:15 2000 Hans-Peter Nilsson <hp@axis.com>
5528
5529 * aoutx.h (NAME(aout,reloc_type_lookup)): Add BFD_RELOC_8 and
5530 BFD_RELOC_16 to switch for extended relocs.
5531 (MY_swap_ext_reloc_in): New.
5532 (MY_swap_ext_reloc_out): New.
5533 (NAME(aout,slurp_reloc_table)): Use MY_swap_ext_reloc_in rather
5534 than NAME(aout,swap_ext_reloc_in) for extended relocs.
5535 (NAME(aout,squirt_out_relocs)): Similarly use
5536 MY_swap_ext_reloc_out.
5537 (aout_link_reloc_link_order): Use MY_put_ext_reloc if defined.
5538
5539 2000-04-03 Kazu Hirata <kazu@hxi.com>
5540
5541 * coff-h8300.c (h8300_reloc16_extra_cases): Add bsr:16 -> bsr:8 to
5542 the R_PCRWORD_B case.
5543
5544 2000-03-31 Thomas de Lellis <tdel@wrs.com>
5545
5546 * srec.c : Set CHUNK size to 16 bytes to prevent download failures
5547 on some targets.
5548 * ihex.c : Ditto.
5549
5550 Wed Mar 30 15:28:00 2000 Donald Lindsay <dlindsay@cygnus.com>
5551
5552 * elf32-m32r.c (m32r_elf_generic_reloc): new function. All
5553 HOWTO references to bfd_elf_generic_reloc, that have
5554 partial_inplace == true, now use the new function. The function
5555 is based on the recent rewrite of m32r_elf_lo16_reloc(), and
5556 extends its fixes to the R_M32R_{16,24,32} relocs.
5557 The new logic in m32r_elf_lo16_reloc() has been removed, and
5558 it instead calls the new routine to obtain that functionality.
5559
5560 2000-03-27 Alan Modra <alan@linuxcare.com.au>
5561
5562 * elf32-avr.c (elf32_avr_gc_mark_hook, elf32_avr_gc_sweep_hook,
5563 elf32_avr_check_relocs, avr_final_link_relocate,
5564 elf32_avr_relocate_section, bfd_elf_avr_final_write_processing,
5565 elf32_avr_object_p): Add prototypes.
5566 (elf32_avr_gc_mark_hook): Add default for h->root.type.
5567 (bfd_elf_avr_final_write_processing): Make static.
5568
5569 2000-03-27 Denis Chertykov <denisc@overta.ru>
5570
5571 * cpu-avr.c: New file. BFD support routines for AVR architecture.
5572 * archures.c (bfd_architecture): Add AVR architecture.
5573 (bfd_archures_list): Add reference to AVR architecture info.
5574 * elf.c (prep_headers): Handle bfd_arch_avr.
5575 * reloc.c: Add various AVR relocation enums.
5576 * targets.c (bfd_elf32_avr_vec): Declare and add to target vector
5577 list.
5578 * Makefile.am: Add support for AVR elf.
5579 * configure.in: Likewise.
5580 * config.bfd: Likewise.
5581 * Makefile.in: Regenerate.
5582 * configure: This too.
5583 * bfd-in2.h: And this.
5584 * libbfd.h: And this.
5585
5586 2000-03-24 H.J. Lu <hjl@gnu.org>
5587
5588 * elf64-alpha.c (elf64_alpha_merge_ind_symbols): Add prototype.
5589 (elf64_alpha_find_reloc_at_ofs): Likewise.
5590
5591 2000-03-17 Alan Modra <alan@linuxcare.com.au>
5592
5593 * reloc.c (bfd_check_overflow): In case complain_overflow_bitfield,
5594 flag an overflow if the bitfield is outside -2**n to 2**n-1. The
5595 allowable range used to be -2**(n-1) to 2**n-1.
5596 * reloc.c (_bfd_relocate_contents): Same here. Also replace
5597 "boolean overflow" with "bfd_reloc_status_type flag".
5598
5599 2000-03-14 Doug Evans <dje@casey.transmeta.com>
5600
5601 * elf32-m32r.c (m32r_elf_lo16_reloc): Rewrite.
5602
5603 2000-03-14 Kazu Hirata <kazu@hxi.com>
5604
5605 * reloc16.c (bfd_coff_reloc16_relax_section): Count the total number
5606 of shrinks properly, including the last reloc.
5607
5608 2000-03-13 Kazu Hirata <kazu@hxi.com>
5609
5610 * coff-h8300.c (h8300_reloc16_extra_cases): Fix the sanity
5611 check for R_MOVL2.
5612
5613 2000-03-11 Alan Modra <alan@linuxcare.com.au>
5614
5615 * ieee.c (ieee_archive_p): Return bfd_error_wrong_format on
5616 a format mismatch rather than an "error" from bfd_read such as
5617 bfd_error_file_truncated.
5618
5619 2000-03-10 Geoff Keating <geoffk@cygnus.com>
5620
5621 * elf32-mips.c (_bfd_mips_elf_relocate_section): Do proper
5622 sign-extension and big-endian compensation for
5623 R_MIPS_64 even in ld -r.
5624
5625 2000-03-10 Geoffrey Keating <geoffk@cygnus.com>
5626
5627 * elf32-mips.c (mips_elf_next_relocation): Rename from
5628 mips_elf_next_lo16_relocation, and generalize to look
5629 for any relocation type.
5630 (elf_mips_howto_table): Make R_MIPS_PC16 pcrel_offset.
5631 (elf_mips_gnu_rel_hi16): Howto for R_MIPS_GNU_REL_HI16.
5632 (elf_mips_gnu_rel_lo16): Howto for R_MIPS_GNU_REL_LO16.
5633 (elf_mips_gnu_rel16_s2): Howto for R_MIPS_GNU_REL16_S2.
5634 (elf_mips_gnu_pcrel64): Howto for R_MIPS_PC64.
5635 (elf_mips_gnu_pcrel32): Howto for R_MIPS_PC32.
5636 (bfd_elf32_bfd_reloc_type_lookup): Add new relocs.
5637 (mips_rtype_to_howto): Likewise.
5638 (mips_elf_calculate_relocation): Handle new relocs.
5639 (_bfd_mips_elf_relocate_section): REL_HI16/REL_LO16 relocs
5640 are paired. The addend for R_MIPS_GNU_REL16_S2
5641 is shifted right two bits.
5642
5643 2000-03-10 Alan Modra <alan@linuxcare.com.au>
5644
5645 * reloc.c (bfd_perform_relocation): Undo emacs formatting of
5646 comment, and ensure it doesn't happen again.
5647 (bfd_install_relocation): Same here.
5648 (_bfd_relocate_contents): Don't bother assigning unused signmask
5649 shift result. Fix typos in comments.
5650 Remove trailing whitespace throughout file.
5651
5652 2000-03-07 Doug Evans <dje@casey.transmeta.com>
5653
5654 * reloc.c (reloc_howto_struct): Fix partial_inplace comment.
5655 * bfd-in2.h: Rebuild.
5656
5657 2000-03-06 Nick Clifton <nickc@cygnus.com>
5658
5659 * peicode.h (struct pe_ILF_vars): Add sym_ptr_table and
5660 sym_ptr_ptr fields.
5661 (SIZEOF_ILF_SYM_PTR_TABLE): Define.
5662 (SIZEOF_ILF_STRINGS): Redefine.
5663 (pe_ILF_make_a_symbol-reloc): New function. Creates a symbol
5664 relative reloc, as opposed to a section relative reloc.
5665 (pe_ILF_make_a_symbol): Set the class of local symbols to C_STAT
5666 not C_LABEL.
5667 Add length of symbol's prefix to string pointer.
5668 Store a pointer to the symbol in the symbol pointer table.
5669 (pe_ILF_build_a_bfd): Do not build .idata$2 or .idata$7.
5670 Initialise the symbol pointer table.
5671 Store the hint in the Hint/Name table.
5672 Make the jump reloc be symbol realtive, not section relative.
5673 Create an import symbol for imported code.
5674
5675 2000-03-06 Catherine Moore <clm@cygnus.com>
5676
5677 * elf.c (swap_out_syms): Check for null type_ptr.
5678
5679 2000-03-01 Hans-Peter Nilsson <hp@axis.com>
5680
5681 * aout-target.h (MY(write_object_contents)): Remove unused
5682 and unusable "#if CHOOSE_RELOC_SIZE".
5683 * pc532-mach.c (MY(write_object_contents)): Ditto.
5684 * netbsd.h (MY(write_object_contents)): Ditto.
5685 * hp300hpux.c (MY(write_object_contents)): Ditto.
5686 * freebsd.h (MY(write_object_contents)): Ditto.
5687 * aout-tic30.c (tic30_aout_write_object_contents): Ditto.
5688
5689 2000-02-29 H.J. Lu <hjl@gnu.org>
5690
5691 * peicode.h (jtab): Make it static.
5692
5693 * coff-sh.c (sh_align_load_span): Declared if COFF_WITH_PE is
5694 defined and COFF_IMAGE_WITH_PE is not defined.
5695 (_bfd_sh_align_load_span): Defined as sh_align_load_span if
5696 COFF_WITH_PE is defined and COFF_IMAGE_WITH_PE is not defined.
5697
5698 2000-03-01 Nick Clifton <nickc@cygnus.com>
5699
5700 * coff-arm.c (bfd_arm_process_before_allocation): Make
5701 'symndx' signed to prevent compile time warning.
5702
5703 * coff-mcore.c: Remove unused prototype for pe_object_p.
5704
5705 * coff-sh.c: Add "#ifndef COFF_IMAGE_WITH_PE" around static
5706 functions that are not used when COFF_IMAGE_WITH_PE is
5707 defined.
5708 (struct sh_opcode): Change type of 'flags' field to unsigned
5709 long so that it can hold the USESAS flag.
5710
5711 * coffcode.h (styp_to_sec_flags): Initialise 'target_name'.
5712
5713 * elf-m10300.c (mn10300_elf_relax_section): Initialise
5714 'sym_sec'.
5715
5716 * elf32-i370.c: Add ATTRIBUTE_UNUSED to unused function
5717 parameters.
5718 Remove unusued variables and code.
5719 (elf_backend_add_symbol_hook): Fix prototype.
5720
5721 * elf32-m68k.c (elf_m68k_gc_sweep_hook): Initialise 'sgot' and
5722 'srelgot'.
5723
5724 * elf32-mcore.c (mcore_elf_relocate_section): Initialise
5725 'oldinst'.
5726
5727 * elf32-mips.c: Add ATTRIBUTE_UNUSED to unused function
5728 parameters.
5729 Remove unusued variables and code.
5730 (elf_backend_add_symbol_hook): Fix prototype.
5731
5732 * elf32-sh.c (sh_elf_set_mach_from_flags): Use 'flags'.
5733
5734 * elflink.h (elf_bfd_link_add_symbols): Add ATTRIBUTE_UNUSED
5735 to unused function parameter.
5736
5737 * pe-mips.c: Add ATTRIBUTE_UNUSED to unused function
5738 parameters.
5739 Use EMPTY_HOWTO to initialise empty howto slots.
5740 Remove unused variables.
5741
5742 * peicode.h (pe_ILF_build_a_bfd): Initialise id6.
5743
5744 2000-03-01 H.J. Lu <hjl@gnu.org>
5745
5746 * aoutx.h (aout_link_input_section_std): Pass "true" to
5747 the undefined_symbol callback.
5748 (aout_link_input_section_ext): Likewise.
5749 * bout.c (get_value): Likewise.
5750 * coff-a29k.c (coff_a29k_relocate_section): Likewise.
5751 * coff-alpha.c (alpha_ecoff_get_relocated_section_conten):
5752 Likewise.
5753 (alpha_relocate_section): Likewise.
5754 * coff-arm.c (coff_arm_relocate_section): Likewise.
5755 * coff-i960.c (coff_i960_relocate_section): Likewise.
5756 * coff-mcore.c (coff_mcore_relocate_section): Likewise.
5757 * coff-mips.c (mips_relocate_section): Likewise.
5758 * coff-ppc.c (coff_ppc_relocate_section): Likewise.
5759 * coff-sh.c (sh_relocate_section): Likewise.
5760 * coff-tic80.c (coff_tic80_relocate_section): Likewise.
5761 * cofflink.c (_bfd_coff_generic_relocate_section): Likewise.
5762 * elf-m10200.c (mn10200_elf_relocate_section): Likewise.
5763 * elf-m10300.c (mn10300_elf_relocate_section): Likewise.
5764 * elf32-d10v.c (elf32_d10v_relocate_section): Likewise.
5765 * elf32-fr30.c (fr30_elf_relocate_section): Likewise.
5766 * elf32-hppa.c (elf32_hppa_relocate_section): Likewise.
5767 * elf32-i370.c (i370_elf_relocate_section): Likewise.
5768 * elf32-m32r.c (m32r_elf_relocate_section): Likewise.
5769 * elf32-mcore.c (mcore_elf_relocate_section): Likewise.
5770 * elf32-sh.c (sh_elf_relocate_section): Likewise.
5771 * elf32-v850.c (v850_elf_relocate_section): Likewise.
5772 * elflink.c (_bfd_elf_link_record_dynamic_symbol): Likewise.
5773 * elflink.h (elf_link_output_extsym): Likewise.
5774 * pe-mips.c (coff_pe_mips_relocate_section): Likewise.
5775 * reloc.c (bfd_generic_get_relocated_section_conten): Likewise.
5776 * reloc16.c (_bfd_ppc_xcoff_relocate_section): Likewise.
5777
5778 * elf-hppa.h (elf_hppa_relocate_section): Pass "false" to the
5779 undefined_symbol callback when building shared library with
5780 -Bsymbolic and undefined symbols are allowed. Otherwise, pass
5781 "true".
5782 * elf32-arm.h (elf32_arm_relocate_section): Likewise.
5783 * elf32-i386.c (elf_i386_relocate_section): Likewise.
5784 * elf32-m68k.c (elf_m68k_relocate_section): Likewise.
5785 * elf32-mips.c (mips_elf_calculate_relocation): Likewise.
5786 (elf32_mips_get_relocated_section_content): Likewise.
5787 * elf32-ppc.c (ppc_elf_relocate_section): Likewise.
5788 * elf32-sparc.c (elf32_sparc_relocate_section): Likewise.
5789 * elf64-alpha.c (elf64_alpha_relocate_section): Likewise.
5790 * elf64-sparc.c (sparc64_elf_relocate_section): Likewise.
5791
5792 2000-02-28 Nick Clifton <nickc@cygnus.com>
5793
5794 * Makefile.am: Add rules to build pe[i]-{sh|mips}.lo objects.
5795 * Makefile.in: Regenerate.
5796
5797 * configure.in: Add support for mips and sh pe vectors.
5798 * configure: regenerate.
5799
5800 * config.bfd: Add support for arm-wince, mips-pe and sh-pe
5801 targets.
5802
5803 * targets.c: Add mips and sh pe vectors.
5804
5805 * libpei.h (coff_final_link_postscript): Only define if not
5806 already defined.
5807
5808 * coffcode.h: Add support for WinCE magic numbers.
5809
5810 * peigen.c (pe_print_reloc): Update comment and rearrange
5811 appending of newline character.
5812
5813 * peicode.h: Add support for Image Library Format.
5814 (pe_ILF_vars): Structure containing data used by ILF code.
5815 (pe_ILF_make_a_section): New function. Create a section based
5816 on ILF data.
5817 (pe_ILF_make_a_reloc): New function. Create a reloc based on
5818 ILF data.
5819 (pe_ILF_make_a_symbol): New function. Create a symbol based
5820 on ILF data.
5821 (pe_ILF_save_relocs): New function. Store the relocs created
5822 by pe_ILF_make_a_reloc in a section.
5823 (pe_ILF_build_a_bfd): New function. Create a BFD describing
5824 an ILF object.
5825 (pe_ILF_object_p): New function. Return a bfd_target pointer
5826 for an ILF object.
5827 (pe_bfd_object_p): If an ILF object is detected call
5828 pe_ILF_object_p on it.
5829
5830 * coff-arm.c: Add support for WinCE relocs which are different
5831 from normal ARM COFF relocs.
5832 * pe-arm.c: Unset TARGET_UNDERSCORE for a WinCE target.
5833
5834 * coff-sh.c: Add support for sh-pe target.
5835 * pe-sh.c: New file. Support code for sh-pe target.
5836 * pei-sh.c: New file. Support code for sh-pe target.
5837
5838 * pe-mips.c: New file. Support code for mips-pe target.
5839 * pei-mips.c: New file. Support code for mips-pe target.
5840
5841 2000-02-27 Jakub Jelinek <jakub@redhat.com>
5842
5843 * elf32-sparc.c (elf32_sparc_merge_private_bfd_data): Don't bump
5844 architecture if the object causing the bump is dynamic.
5845 * elf64-sparc.c (sparc64_elf_merge_private_bfd_data): Likewise,
5846 and also don't it for memory ordering.
5847 (sparc64_elf_write_relocs): Take src_rela out of the loop.
5848
5849 2000-02-27 Ian Lance Taylor <ian@zembu.com>
5850
5851 * dwarf2.c (read_abbrevs): Use _raw_size directly rather than
5852 calling bfd_get_section_size_before_reloc.
5853 (decode_line_info): Likewise.
5854 (_bfd_dwarf2_find_nearest_line): Likewise.
5855
5856 2000-02-27 Eli Zaretskii <eliz@is.elta.co.il>
5857
5858 * Makefile.am (stamp-lib): Use $(LIBTOOL) --config to get the
5859 name of the libtool directory.
5860 * Makefile.in: Rebuild.
5861
5862 Fri Feb 25 18:39:26 2000 Rodney Brown (RodneyBrown@pmsc.com)
5863
5864 * som.c (SOM_HOWTO): Define.
5865 (som_hppa_howto_table): Use it.
5866
5867 2000-02-25 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
5868
5869 * config.bfd: Enable 64 bit support for GNU/Linux/sparc.
5870
5871 * config.bfd: Enable 64 bit support for Solaris7+/sparc.
5872
5873 2000-02-24 Catherine Moore <clm@cygnus.com>
5874
5875 * som.c (som_misc_symbol_info): Add field
5876 secondary_def.
5877 (som_bfd_derive_misc_symbol_info): Initialize
5878 secondary_def.
5879 (som_build_and_write_symbol_table): Keep track
5880 of secondary_def field.
5881 (som_slurp_symbol_table): Set BSF_WEAK symbol flag
5882 if secondary_def field is set.
5883 (som_bfd_ar_write_symbol_stuff): Initialize
5884 secondary_def.
5885
5886 2000-02-23 Stephane Carrez <stcarrez@worldnet.fr>
5887
5888 * dwarf2.c (read_address): Read 16-bits addresses.
5889 (parse_comp_unit): Accept addr_size == 2.
5890
5891 2000-02-23 Alan Modra <alan@spri.levels.unisa.edu.au>
5892
5893 * bfd-in.h: Update copyright date.
5894
5895 2000-02-23 Linas Vepstas <linas@linas.org>
5896
5897 * cpu-i370.c: New file.
5898 * elf32-i370.c: New file.
5899 * archures.c (enum bfd_architecture): Add bfd_arch_i370.
5900 (bfd_i370_arch): New.
5901 (bfd_archures_list): Add bfd_i370_arch.
5902 * elf.c (prep_headers): Add bfd_arch_i370.
5903 * Makefile.am: Add support for IBM 370 elf.
5904 * config.bfd: Likewise.
5905 * configure.in: Likewise.
5906 * libbfd.h (bfd_reloc_code_real_names): Likewise.
5907 * reloc.c (bfd_reloc_code_type): Likewise.
5908 * targets.c: Likewise.
5909
5910 * Makefile.in: Regenerate.
5911 * configure: Regenerate.
5912 * bfd-in2.h: Regenerate.
5913
5914 2000-02-22 Ian Lance Taylor <ian@zembu.com>
5915
5916 * elf32-i386.c (elf_i386_info_to_howto_rel): Give a warning for
5917 invalid relocation types, and change them to R_386_NONE.
5918
5919 2000-02-22 H.J. Lu <hjl@gnu.org>
5920
5921 * elflink.h (elf_link_add_object_symbols): If a version symbol is
5922 not defined, don't add a second ELF_VER_CHR.
5923
5924 * elflink.h (elf_bfd_final_link): Call output_extsym for global
5925 symbols converted to local symbols even when stripping all
5926 symbols.
5927 (elf_link_output_extsym): Process global symbols converted to
5928 local symbols even if they are being stripped.
5929
5930 2000-02-21 Alan Modra <alan@spri.levels.unisa.edu.au>
5931
5932 * archures.c (bfd_octets_per_byte): Return unsigned int.
5933 (bfd_arch_mach_octets_per_byte): Ditto.
5934 * libbfd.c (bfd_read, bfd_seek): Quell signed vs. unsigned
5935 comparison warning.
5936 * section.c (bfd_get_section_size_before_reloc): Quell signed
5937 vs. unsigned comparison warning.
5938 (bfd_get_section_size_after_reloc): Same here. Fix parentheses too.
5939 * trad-core.c (trad_unix_core_file_p): Correct 2000-01-27
5940 change. What was I thinking?
5941 * bfd-in2.h: Regenerate.
5942
5943 * elflink.h (elf_gc_sweep): Skip non-elf input bfds.
5944 (elf_gc_sections): Same here.
5945 (elf_gc_common_finalize_got_offsets): And here.
5946
5947 2000-02-21 Ian Lance Taylor <ian@zembu.com>
5948
5949 ELF HPPA doesn't work at present; remove it until it does.
5950 * config.bfd: Comment out setting targ_defvec to
5951 bfd_elf32_hppa_vec.
5952 * Makefile.am: Rebuild dependencies.
5953 (BFD32_BACKENDS): Remove elf32-hppa.lo.
5954 (BFD32_BACKENDS_CFILES): Remove elf32-hppa.c.
5955 (SOURCE_HFILES): Remove elf32-hppa.h and hppa_stubs.h.
5956 * Makefile.in: Rebuild.
5957 * targets.c (bfd_target_vector): Comment out bfd_elf32_hppa_vec.
5958
5959 2000-02-18 Geoff Keating <geoffk@cygnus.com>
5960
5961 * coffcode.h (coff_set_arch_mach_hook): Use free(), because there
5962 is no bfd_free(). Revert bfd_free part of previous change.
5963
5964 2000-02-18 Geoff Keating <geoffk@cygnus.com>
5965
5966 * coffcode.h (coff_set_arch_mach_hook): Don't use variable-size
5967 arrays.
5968 (coff_compute_section_file_positions): Use bfd_free to pair
5969 bfd_malloc.
5970 (coff_write_object_contents): Likewise.
5971
5972 * coff-rs6000.c (xcoff_howto_table_16): New variable.
5973 (xcoff_rtype2howto): Handle 16-bit variants of 32-bit relocs.
5974
5975 2000-02-18 Ulrich Drepper <drepper@cygnus.com>
5976
5977 * coff-rs6000.c (XCOFFARMAGBIG): New macro.
5978 (xcoff_ar_file_hdr_big): New structure.
5979 (SIZEOF_AR_FILE_HDR_BIG): New macro.
5980 (xcoff_ar_hdr_big): New structure.
5981 (SIZEOF_AR_HDR_BIG): New macro.
5982 (xcoff_big_format_p): New macro.
5983 (xcoff_ardata_big): New macro.
5984 (arch_xhdr_big): New macro.
5985 (xcoff_slurp_armap): Handle large archives.
5986 (xcoff_archive_p): Detect large archives.
5987 (xcoff_read_ar_hdr): Handle large archives.
5988 (xcoff_openr_next_archived_file): Handle large archives.
5989 (xcoff_generic_stat_arch_elt): Handle large archives.
5990 (xcoff_write_armap_old): Rename from xcoff_write_armap.
5991 (xcoff_write_armap_big): New function.
5992 (xcoff_write_armap): New function, dispatch to _old or _big.
5993 (xcoff_write_archive_contents_old): Rename from
5994 xcoff_write_archive_contents.
5995 (xcoff_write_archive_contents_big): New function.
5996 (xcoff_write_archive_contents): New function, dispatch to _old or
5997 _big.
5998
5999 2000-02-18 Richard Henderson <rth@cygnus.com>
6000
6001 * elf-bfd.h (struct elf_link_hash_table): Remove copy_indirect
6002 and hide_symbol members.
6003 (elf_link_hash_copy_indirect): Remove.
6004 (elf_link_hash_hide_symbol): Remove.
6005 (struct elf_backend_data): Add elf_backend_copy_indirect_symbol
6006 and elf_backend_hide_symbol.
6007 (_bfd_elf_link_hash_copy_indirect): Declare.
6008 (_bfd_elf_link_hash_hide_symbol): Declare.
6009 * elf.c (_bfd_elf_link_hash_copy_indirect): Remove table argument.
6010 (_bfd_elf_link_hash_hide_symbol): Likewise.
6011 (_bfd_elf_link_hash_table_init): Don't init killed members.
6012 * elflink.h (elf_link_add_object_symbols): Use the bed function
6013 pointers not elf_link_hash_{copy_indirect,hide_symbol}.
6014 (elf_link_assign_sym_version): Likewise.
6015 * elfxx-target.h (elf_backend_copy_indirect_symbol): Default.
6016 (elf_backend_hide_symbol): Likewise.
6017 (elfNN_bed): Update for new members.
6018
6019 2000-02-17 Kevin Buettner <kevinb@redhat.com>
6020
6021 * rs6000-core.c (CORE_DATA_SIZE_FIELD, CORE_COMM_FIELD, SAVE_FIELD,
6022 STACK_END_ADDR): Define for new core file format.
6023 (LOADER_OFFSET_FIELD, LOADER_REGION_SIZE, CORE_DUMP): New defines
6024 for handling the vagaries of the various core file structures used
6025 by AIX over the years.
6026 (rs6000coff_core_p, rs6000coff_core_file_matches_executable,
6027 Rs6kCorData): Use above defines to adapt code to use AIX 4.3's
6028 core_dumpx structure.
6029
6030 Thu Feb 17 00:04:48 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
6031
6032 * archures.c (bfd_mach_sh2, bfd_mach_sh_dsp): New macros.
6033 (bfd_mach_sh3_dsp): Likewise.
6034 (bfd_mach_sh4): Reinstate.
6035 (bfd_default_scan): Recognize 7410, 7708, 7729 and 7750.
6036 * bfd-in2.h: Regenerate.
6037 * coff-sh.c (struct sh_opcode): flags is no longer short.
6038 (USESAS, USESAS_REG, USESR8, SETSAS, SETSAS_REG): New macros.
6039 (sh_opcode41, sh_opcode42): Integrate as sh_opcode41.
6040 (sh_opcode01, sh_opcode02, sh_opcode40): Add sh-dsp opcodes.
6041 (sh_opcode41, sh_opcode4, sh_opcode80): Likewise.
6042 (sh_opcodes): No longer const.
6043 (sh_dsp_opcodef0, sh_dsp_opcodef): New arrays.
6044 (sh_insn_uses_reg): Check for USESAS and USESR8.
6045 (sh_insn_sets_reg, sh_insns_conflict): Check for SETSAS.
6046 (_bfd_sh_align_load_span): Return early for SH4.
6047 Modify sh_opcodes lookup table for sh-dsp / sh3-dsp.
6048 Take into account that field b of a parallel processing insn
6049 could be mistaken for a separate insn.
6050 * cpu-sh.c (arch_info_struct): New array elements for
6051 sh2, sh-dsp and sh3-dsp.
6052 Reinstate element for sh4.
6053 (SH2_NEXT, SH_DSP_NEXT, SH3_DSP_NEXT): New macros.
6054 (SH4_NEXT): Reinstate.
6055 (SH3_NEXT, SH3E_NEXT): Adjust.
6056 * elf-bfd.h (_sh_elf_set_mach_from_flags): Declare.
6057 * elf32-sh.c (sh_elf_set_private_flags): New function.
6058 (sh_elf_copy_private_data, sh_elf_set_mach_from_flags): Likewise.
6059 (sh_elf_merge_private_data): New function.
6060 (elf_backend_object_p, bfd_elf32_bfd_set_private_bfd_flags): Define.
6061 (bfd_elf32_bfd_copy_private_bfd_data): Define.
6062 (bfd_elf32_bfd_merge_private_bfd_data): Change to
6063 sh_elf_merge_private_data.
6064
6065 2000-02-13 Richard Henderson <rth@cygnus.com>
6066
6067 * elf-bfd.h (struct elf_link_hash_table): Add copy_indirect and
6068 hide_symbol members.
6069 (elf_link_hash_copy_indirect): New.
6070 (elf_link_hash_hide_symbol): New.
6071 * elflink.h (elf_link_add_object_symbols): Break out copy from
6072 indirect new new symbol to elf.c.
6073 (elf_link_assign_sym_version): Break out privatization of
6074 non-exported symbol to elf.c.
6075 * elf.c (_bfd_elf_link_hash_copy_indirect): New.
6076 (_bfd_elf_link_hash_hide_symbol): New.
6077 (_bfd_elf_link_hash_table_init): Init copy_indirect and hide_symbol.
6078
6079 2000-02-13 Ian Lance Taylor <ian@zembu.com>
6080
6081 * section.c (_bfd_strip_section_from_output): Add info parameter.
6082 If it passed as non-NULL, use it to check whether any input BFD
6083 has an input section which uses this output section. Change all
6084 callers.
6085 * bfd-in2.h: Rebuild.
6086
6087 * bfd-in.h: Move declarations of bfd_get_elf_phdr_upper_bound and
6088 bfd_get_elf_phdrs in from bfd-in2.h, correcting patch of
6089 1999-11-29.
6090 * bfd-in2.h: Rebuild.
6091
6092 2000-02-10 Timothy Wall <twall@cygnus.com>
6093
6094 * coffswap.h (coff_swap_sym_in): Add hook SWAP_SYM_IN_POST to
6095 allow final modifications of swapped-in symbol.
6096 (coff_swap_sym_out): Ditto with SWAP_SYM_OUT_POST.
6097 * coffcode.h (coff_write_relocs): Use macro
6098 SECTION_RELATIVE_ABSOLUTE_SYMBOL_P if defined to determine whether
6099 symbol index should be set to -1.
6100
6101 Thu Feb 10 20:07:50 GMT 2000 Toshiyasu Morita (toshi.morita@sega.com)
6102
6103 * coff-sh.c (USES1_REG, USES2_REG, SETS1_REG, SETS2_REG,
6104 USESF1_REG, USESF2_REG, SETSF1_REG, SETSF2_REG): New macros.
6105 * (sh_insn_sets_reg, sh_insn_sets_freg): New prototypes.
6106 * (sh_insn_sets_reg, sh_insn_uses_or_sets_reg, sh_insns_sets_freg,
6107 sh_insns_uses_or_sets_freg): New functions.
6108 * (sh_insn_uses_reg, sh_insn_uses_freg): Use new macros.
6109 * (sh_insns_conflict): Use new functions and new macros to
6110 detect conflicts when two instructions both set same integer registers,
6111 both set same fp register, and both set special register.
6112
6113 2000-02-09 Timothy Wall <twall@cygnus.com>
6114
6115 * coffgen.c (coff_real_object_p): Set arch/mach info prior to
6116 swapping in sections, so that the swapping routines have access to
6117 the arch/mach info.
6118
6119 2000-02-08 Mark Elbrecht <snowball3@bigfoot.com>
6120
6121 * coff-go32.c: Update comment. Update copyright.
6122
6123 2000-01-27 Thomas de Lellis <tdel@windriver.com>
6124
6125 * syms.c (bfd_decode_symclass)
6126 Two new class characters were added - 'V' and 'v'. The
6127 meaning of 'W' is now restricted to just weak non-object
6128 symbols. This allows differentiation between, for example,
6129 weak functions vs weak objects. nm for example now dumps:
6130 'W' = weak global
6131 'w' = weak unresolved
6132 'V' = weak global object
6133 'v' = weak unresolved object
6134
6135 (bfd_is_undefined_symclass): New function. Return true if the
6136 given symbol class represents and undefined/unresolved symbol.
6137
6138 (bfd_symbol_info): Use bfd_is_undefined_symclass to check for
6139 unresolved symbols.
6140
6141 * bfd-in2.h: Add prototype for bfd_is_undefined_symbol().
6142
6143 * elf32-arm.h (elf32_arm_get_symbol_type): If a symbol has the
6144 STT_ARM_16BIT flag set, but it is not attached to a data object
6145 return STT_ARM_16BIT so that it will be treated as code by the
6146 disassembler.
6147
6148 2000-01-27 Alan Modra <alan@spri.levels.unisa.edu.au>
6149
6150 * coff-i386.c (i3coff_object_p): Remove prototype.
6151 Update copyright.
6152
6153 * elflink.c (_bfd_elf_link_record_dynamic_symbol): Add const
6154 to name. Update copyright.
6155
6156 * trad-core.c (trad_unix_core_file_p): Cast core_regsec
6157 assignment to avoid warning. Update copyright.
6158
6159 2000-01-24 Robert Lipe (robertl@sco.com)
6160
6161 * coffcode.h (coff_write_object_contents): Get buff via bfd_malloc
6162 instead of using GNU C extension.
6163
6164 2000-01-21 Nick Clifton <nickc@cygnus.com>
6165
6166 * libbfd.c (bfd_read): Do not attempt to get a negativly sized
6167 amount from a bfd_in_memory structure.
6168 (bfd_seek): Do not allow seeks past the end of a bfd_in_memory
6169 structure.
6170
6171 2000-01-14 Nick Clifton <nickc@cygnus.com>
6172
6173 * linker.c (default_indirect_link_order): oops - fix incorrectly
6174 applied patch from Tim Wall.
6175
6176 2000-01-13 Timothy Wall (twall@tiac.net>
6177
6178 * coffcode.h: Use bfd_coff_xxx instead of the macro XXX (where xxx
6179 = scnhsz, filhsz, relsz, aoutsz, etc)
6180
6181 * coffswap.h: Ditto.
6182
6183 2000-01-13 Nick Clifton <nickc@cygnus.com>
6184
6185 * elf32-arm.h (elf32_thumb_to_arm_stub): Fix offset in branch to
6186 interwork thumb to arm stub.
6187
6188 2000-01-13 Timothy Wall (twall@tiac.net>
6189
6190 * archures.c (bfd_octets_per_byte): New function: Return
6191 target byte size.
6192 (bfd_arch_mach_octets_per_byte): New function: Return target
6193 byte size.
6194
6195 * section.c: Distinguish between octets and bytes for usage of
6196 _cooked_size, _raw_size, and output_offset. Clarify
6197 description of bfd_set_section_contents.
6198
6199 * bfd-in2.h: Regenerate.
6200
6201 * coffgen.c: Indicate that the offset parameter is in bytes, not
6202 octets.
6203
6204 * cofflink.c (bfd_coff_link_input_bfd): Use bfd_octets_per_byte
6205 where appropriate to get the octet offset when calling
6206 bfd_set_section_contents.
6207 (bfd_coff_reloc_link_order): Ditto.
6208
6209 * linker.c (bfd_generic_reloc_link_order): Ditto.
6210 (_bfd_default_link_order): Ditto.
6211
6212 * reloc.c (bfd_perform_relocation): Distinguish between octets
6213 and bytes. Use octets when indexing into octet data; use bytes
6214 when calculating target addresses.
6215 (bfd_install_relocation): Ditto.
6216
6217 * srec.c (srec_write_section): Ditto.
6218
6219 2000-01-13 Nick Clifton <nickc@cygnus.com>
6220
6221 * coff-mcore.c (COFF_DEFAULT_SECTION_ALIGNMENT_POWER): Change from
6222 3 to 2. This allows 4 byte sized sections, which is necessary for
6223 dlltool to build functioning DLLs.
6224
6225 2000-01-10 Philip Blundell <pb@futuretv.com>
6226
6227 * config.bfd (arm*-*-linux-gnu*): Match instead of arm*-*-linux-gnu.
6228 (arm*-*-conix*): New target.
6229
6230 2000-01-10 Egor Duda <deo@logos-m.ru>
6231
6232 * config.bfd: Include elf32_i386 vector to target list for cygwin
6233 and mingw.
6234
6235 * config.in: Undefine HAVE_WIN32_PSTATUS_T.
6236 * configure.in: Test for structure win32_pstatus_t in
6237 <sys/procfs.h>
6238 * configure: Regenerate.
6239
6240 * elf.c (elfcore_grok_win32pstatus): New function: process
6241 win32_pstatus_t notes in elf core file.
6242 (elfcore_grok_note): Detect win32_pstatus notes.
6243
6244 2000-01-03 Martin v. Loewis <loewis@informatik.hu-berlin.de>
6245
6246 * elflink.c (_bfd_elf_link_record_dynamic_symbol): Process symbol
6247 visibility.
6248 * elflink.h (elf_link_add_object_symbols): Combine visibilities.
6249 * elf.c (bfd_elf_print_symbol): Interpret st_other as visibility.
6250
6251 For older changes see ChangeLog-9899
6252 \f
6253 Local Variables:
6254 mode: change-log
6255 left-margin: 8
6256 fill-column: 74
6257 version-control: never
6258 End: