* som.c (som_write_symbol_strings): Cast current_offset in
[deliverable/binutils-gdb.git] / bfd / ChangeLog
CommitLineData
21d17a58
AM
12001-09-29 Alan Modra <amodra@bigpond.net.au>
2
3 * som.c (som_write_symbol_strings): Cast current_offset in
4 bfd_seek call to match param type.
5
78ae4cb9
JB
62001-09-28 J. Brobecker <brobecker@gnat.com>
7
8 * som.c (som_write_symbol_strings): Fix incorrect type of
9 current_offset to match the function definition. Fixes a build
10 failure on HPUX-11.00.
11
65db3b0d
RH
122001-09-28 Richard Henderson <rth@redhat.com>
13
e0aae569
RH
14 * elfxx-target.h [section_flags]: Add SEC_ARCH_BIT_0, SEC_SMALL_DATA,
15 SEC_MERGE, SEC_STRINGS.
16
65db3b0d
RH
17 * section.c (SEC_ARCH_BIT_0): New; replace unused SEC_BALIGN.
18 * bfd-in2.h: Rebuild.
19
ced53ee5
AM
202001-09-28 Alan Modra <amodra@bigpond.net.au>
21
ffaef159
AM
22 * elf64-x86-64.c (elf64_x86_64_reloc_type_lookup): Don't map bfd
23 reloc code using x86_64_reloc_map.
24
3ac8354b
AM
25 * elf32-hppa.c (elf32_hppa_check_relocs): Update comment since we
26 no longer allocate here. Localise some vars to blocks where they
27 are used.
28 (elf32_hppa_adjust_dynamic_symbol): Correct a comment. Delay
29 setting of vars until needed.
30 (allocate_dynrelocs): Don't create a .plt entry without a reloc
31 when symbol visibilty makes a function local.
32 (elf32_hppa_finish_dynamic_symbol): Move expressions out of
33 swap_reloca_out function calls.
34 (elf32_hppa_relocate_section): Likewies. Comment typo fix.
35 (elf32_hppa_finish_dynamic_sections): Migrate common code out of
36 switch statement.
37
0ac8d2ca
AM
38 * elf32-i386.c (elf_i386_check_relocs): Update comment since we
39 no longer allocate here. Localise some vars to blocks where they
40 are used. Remove separate switch stmt for creating .got sec.
41 (elf_i386_adjust_dynamic_symbol): Correct a comment. Remove
42 redundant casts and aborts. Delay setting of vars until needed.
43 (allocate_dynrelocs): Remove redundant casts and aborts.
44 (elf_i386_size_dynamic_sections): Move comment.
45 (elf_i386_finish_dynamic_symbol): Move expressions out of function
46 calls.
47 (elf_i386_relocate_section): Likewise. Comment typo fix.
48 (elf_i386_finish_dynamic_sections): Migrate common code out of
49 switch statement.
50 (elf_backend_* defines): Sort.
51
ced53ee5
AM
52 * elf32-i386.c (allocate_dynrelocs): Don't create a .plt entry
53 without a reloc when symbol visibilty makes a function local.
54
63b0f745
NC
552001-09-27 Nick Clifton <nickc@cambridge.redhat.com>
56
06317a27
NC
57 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Fix detection of
58 conflicting float flags.
63b0f745 59
ebe50bae
AM
602001-09-26 Alan Modra <amodra@bigpond.net.au>
61
62 * elf32-i386 (elf_i386_copy_indirect_symbol): New function.
63 (elf_backend_copy_indirect_symbol): Define.
64 (struct elf_i386_link_hash_entry): Rename "root" to "elf".
65 (struct elf_i386_link_hash_table): Likewise.
66 (link_hash_newfunc): Get rid of unnecessary casts.
67 (elf_i386_link_hash_table_create): Likewise.
68 (elf_i386_check_relocs): Initialise local_got_refcounts to 0.
69 Don't test input section SEC_READONLY here to try to avoid copy
70 relocs, and keep dyn_relocs regardleas of ELF_LINK_NON_GOT_REF.
71 (elf_i386_adjust_dynamic_symbol): Check output section SEC_READONLY
72 here to properly test whether we need copy relocs. Do so for weak
73 syms too.
74
75 * elf32-hppa (elf32_hppa_copy_indirect_symbol): New function.
76 (elf_backend_copy_indirect_symbol): Define.
77 (struct elf32_hppa_link_hash_table): Rename "root" to "elf".
78 (stub_hash_newfunc): Get rid of unnecessary casts.
79 (hppa_link_hash_newfunc): Likewise.
80 (elf32_hppa_check_relocs): Initialise local_got_refcounts to 0.
81 Don't test input section SEC_READONLY here to try to avoid copy
82 relocs, and keep dyn_relocs regardleas of ELF_LINK_NON_GOT_REF.
83 (elf32_hppa_adjust_dynamic_symbol): Check output section SEC_READONLY
84 here to properly test whether we need copy relocs. Do so for weak
85 syms too.
86
af6166c0
AM
872001-09-26 Alan Modra <amodra@bigpond.net.au>
88
89 * bfd.c (_bfd_default_error_handlerl): Define using VPARAMS,
90 VA_OPEN, VA_FIXEDARG, VA_CLOSE.
91 (bfd_archive_filename): Cast bfd_malloc arg to the correct size.
92
e62de969
JJ
932001-09-25 Jakub Jelinek <jakub@redhat.com>
94
95 * elf64-sparc.c (sparc64_elf_build_plt): Fix .plt[32768+] slot
96 computation.
97
09c1cc88
L
982001-09-25 H.J. Lu <hjl@gnu.org>
99
100 * bfd-in2.h: Regenerated.
101
38701953
AM
1022001-09-25 Alan Modra <amodra@bigpond.net.au>
103
104 * elf32-i386.c: Add comment re linker function names and ordering.
105 (elf_i386_link_hash_newfunc): Rename to link_hash_newfunc.
106 (elf_i386_grok_prstatus): Move before linker functions.
107 (elf_i386_grok_psinfo): Likewise.
108 (elf_i386_fake_sections): Move so that functions are ordered.
109 (elf_i386_reloc_type_class): Likewise. Comment function purpose.
110
98ceb8ce
AM
1112001-09-25 Alan Modra <amodra@bigpond.net.au>
112
0ac8d2ca 113 * elf32-hppa.c: Rename occurrences of "hplink" to "htab"
83c81bfe
AM
114 throughout file.
115
98ceb8ce
AM
116 * elf32-hppa.c: (LONG_BRANCH_PIC_IN_SHLIB): Delete. Remove all
117 code handling this option.
118 (LONG_BRANCH_VIA_PLT): Likewise.
119 (RELATIVE_DYNRELOCS): Define as zero.
120 (struct elf32_hppa_dyn_reloc_entry): Add "sec", and
121 "pc_count" fields. Remove "section" field.
122 (elf32_hppa_link_hash_entry): Rename reloc_entries to dyn_relocs.
123 (elf32_hppa_check_relocs): Don't allocate space for dynamic
124 relocs here. Instead, record all needed dynamic relocs via
125 dyn_relocs and local_dynrel. Cache pointer to "sreloc" section
126 in elf_section_data.
127 (elf32_hppa_gc_sweep_hook): Sweep dyn_relocs and local_dynrel.
128 (allocate_plt_and_got_and_discard_relocs): Rename to
129 allocate_dynrelocs. Allocate rather than discarding dyn relocs.
130 (readonly_dynrelocs): New function.
131 (elf32_hppa_size_dynamic_sections): Mark output_bfd unused.
132 Call readonly_dynrelocs to determine need for DT_TEXTREL.
133 Rename "i" to "ibfd". Allocate space for local dyn relocs.
134 (elf32_hppa_relocate_section): Make use of cached sreloc.
135 (elf32_hppa_reloc_type_class): New function.
136 (elf_backend_reloc_type_class): Define.
137
0c715baa
AM
1382001-09-25 Alan Modra <amodra@bigpond.net.au>
139
140 * elf-bfd.h (struct bfd_elf_section_data): Add "local_dynrel"
141 and "sreloc" fields.
142 * elf32-i386.c (struct elf_i386_dyn_relocs): Add "sec", and
143 "pc_count" fields. Remove "section" field.
144 (elf_i386_check_relocs): Don't set DF_TEXTREL here. Don't
145 allocate space for dynamic relocs here. Instead, record all
146 needed dynamic relocs via dyn_relocs and local_dynrel. Cache
147 pointer to "sreloc" section in elf_section_data.
148 (elf_i386_gc_sweep_hook): Sweep dyn_relocs and local_dynrel.
149 (allocate_plt_and_got_and_discard_relocs): Rename to
150 allocate_dynrelocs. Allocate rather than discarding dyn relocs.
151 (readonly_dynrelocs): New function.
152 (elf_i386_size_dynamic_sections): Call readonly_dynrelocs.
153 Rename "i" to "ibfd". Allocate space for local dyn relocs.
154 (elf_i386_relocate_section): Make use of cached sreloc.
155
f51e552e
AM
1562001-09-24 Alan Modra <amodra@bigpond.net.au>
157
158 * elf-bfd.h (elf_backend_reloc_type_class): Pass in the entire
159 reloc rather than just the type.
160 (_bfd_elf_reloc_type_class): Likewise.
161 * elf.c (_bfd_elf_reloc_type_class): Likewise.
162 * elf32-arm.h (elf32_arm_reloc_type_class): Likewise.
163 * elf32-cris.c (elf_cris_reloc_type_class): Likewise.
164 * elf32-i386.c (elf_i386_reloc_type_class): Likewise.
165 * elf32-m68k.c (elf32_m68k_reloc_type_class): Likewise.
166 * elf32-ppc.c (ppc_elf_reloc_type_class): Likewise.
167 * elf32-s390.c (elf_s390_reloc_type_class): Likewise.
168 * elf32-sh.c (sh_elf_reloc_type_class): Likewise.
169 * elf32-sparc.c (elf32_sparc_reloc_type_class): Likewise.
170 * elf64-alpha.c (elf64_alpha_reloc_type_class): Likewise.
171 * elf64-s390.c (elf_s390_reloc_type_class): Likewise.
172 * elf64-sparc.c (sparc64_elf_reloc_type_class): Likewise.
173 * elf64-x86-64.c (elf64_x86_64_reloc_type_class): Likewise.
174 * elfxx-ia64.c (elfNN_ia64_reloc_type_class): Likewise.
175 * elflink.h: Formatting fixes.
176 (elf_link_sort_relocs): Make "count" and "size" bfd_size_type.
177 Call bfd_zmalloc rather than calloc. Remove unnecessary cast of
178 o->contents to PTR. Update call to elf_backend_reloc_type_class.
179
0c35f01a
AM
1802001-09-22 John Reiser <jreiser@BitWagon.com>
181
182 * elfcode.h (elf_object_p): Allow for no section header at all in
183 non-ET_REL files. Honor 0 for e_shnum, e_shstrndx, e_shoff.
184
1e738b87
NC
1852001-09-21 Nick Clifton <nickc@cambridge.redhat.com>
186
187 * elfxx-ia64.c: Fix compile time warning messages.
09c1cc88
L
188 * coff-mcore.c: Fix compile time warning messages.
189 * coff-ppc.c: Fix compile time warning messages.
190 * coffcode.h: Fix compile time warning messages.
191 * elf32-mips.c: Fix compile time warning messages.
192 * elf64-alpha.c: Fix compile time warning messages.
193 * libbfd.c: Fix compile time warning messages.
194 * bfd-in2.h: Regenerate.
1e738b87 195
923f08ff
AM
1962001-09-21 Alan Modra <amodra@bigpond.net.au>
197
198 * Makefile.am: Run "make dep-am".
199 * Makefile.in: Regenerate.
200
201 * aoutx.h: Formatting fixes.
202 * merge.c (_bfd_merged_section_offset): Break line at 80 chars.
203
204 * linker.c: Replace bfd_get_filename with bfd_archive_filename
205 in error message.
206
8f615d07
AM
2072001-09-21 Alan Modra <amodra@bigpond.net.au>
208
209 * bfd.c (bfd_archive_filename): New function.
210 * bfd-in2.h: Regenerate.
211 * aout-adobe.c: Replace bfd_get_filename with bfd_archive_filename
212 in error messages where the bfd is an input bfd.
213 * aout-cris.c: Likewise.
214 * coff-arm.c: Likewise.
215 * coff-mcore.c: Likewise.
216 * coff-ppc.c: Likewise.
217 * coff-rs6000.c: Likewise.
218 * coff-sh.c: Likewise.
219 * coff-tic54x.c: Likewise.
220 * coff-tic80.c: Likewise.
221 * coff64-rs6000.c: Likewise.
222 * coffcode.h: Likewise.
223 * coffgen.c: Likewise.
224 * cofflink.c: Likewise.
225 * ecofflink.c: Likewise.
226 * elf-hppa.h: Likewise.
227 * elf.c: Likewise.
228 * elf32-arm.h: Likewise.
229 * elf32-cris.c: Likewise.
230 * elf32-gen.c: Likewise.
231 * elf32-hppa.c: Likewise.
232 * elf32-i370.c: Likewise.
233 * elf32-i386.c: Likewise.
234 * elf32-m32r.c: Likewise.
235 * elf32-mcore.c: Likewise.
236 * elf32-mips.c: Likewise.
237 * elf32-ppc.c: Likewise.
238 * elf32-s390.c: Likewise.
239 * elf32-sh.c: Likewise.
240 * elf32-sparc.c: Likewise.
241 * elf32-v850.c: Likewise.
242 * elf64-alpha.c: Likewise.
243 * elf64-gen.c: Likewise.
244 * elf64-ppc.c: Likewise.
245 * elf64-s390.c: Likewise.
246 * elf64-sparc.c: Likewise.
247 * elf64-x86-64.c: Likewise.
248 * elflink.h: Likewise.
249 * elfxx-ia64.c: Likewise.
250 * ieee.c: Likewise.
251 * ihex.c: Likewise.
252 * libbfd.c: Likewise.
253 * pdp11.c: Likewise.
254 * pe-mips.c: Likewise.
255 * peicode.h: Likewise.
256 * srec.c: Likewise.
257 * xcofflink.c: Likewise.
258
259 * elf32-arm.h: Make _bfd_error_handler calls K&R compatible.
260
261 * elflink.c (_bfd_elf_create_linker_section): Better grammar for
262 error message.
263
264 * coff-mcore.c (coff_mcore_relocate_section): Internalionalise
265 error message.
266
267 * elf64-sparc.c (sparc64_elf_add_symbol_hook): Constify stt_types.
268 Consolidate error messages, and split long messages to two lines.
269
671bae9c 2702001-09-20 John Reiser <jreiser@BitWagon.com>
83c81bfe 271
f51e552e
AM
272 * elf32-i386.c (elf_i386_relocate_section): Coordinate info->symbolic
273 and info->allow_shlib_undefined.
274 * elf32-cris.c: Likewise.
275 * elf32-hppa.c: Likewise.
276 * elf32-m68k.c: Likewise.
277 * elf32-mips.c: Likewise.
278 * elf32-ppc.c: Likewise.
279 * elf32-s390.c: Likewise.
280 * elf32-sh.c: Likewise.
281 * elf32-sparc.c: Likewise.
282 * elf64-alpha.c: Likewise.
283 * elf64-hppa.c: Likewise.
284 * elf64-ppc.c: Likewise.
285 * elf64-s390.c: Likewise.
286 * elf64-sparc.c: Likewise.
287 * elf64-x86-64.c: Likewise.
288 * elfxx-ia64.c: Likewise.
671bae9c 289
3882b010
L
2902001-09-18 Bruno Haible <haible@clisp.cons.org>
291
292 * aoutx.h: Include "safe-ctype.h" instead of <ctype.h>.
293 (aout_link_write_symbols): Use ISDIGIT instead of isdigit.
294 * archive.c: Include "safe-ctype.h" instead of <ctype.h>.
295 (_bfd_generic_read_ar_hdr_mag): Use ISDIGIT instead of isdigit.
296 * archures.c: Include "safe-ctype.h" instead of <ctype.h>.
297 (bfd_default_scan): Use ISDIGIT instead of isdigit.
298 * bfd.c: Include "safe-ctype.h" instead of <ctype.h>.
299 (bfd_scan_vma): Use ISXDIGIT/ISDIGIT/ISLOWER instead of
300 isxdigit/isdigit/islower.
301 * binary.c: Include "safe-ctype.h" instead of <ctype.h>.
302 (mangle_name): Use ISALNUM instead of isalnum.
303 * cpu-v850.c: Include "safe-ctype.h" instead of <ctype.h>.
304 (scan): Use ISDIGIT instead of isdigit.
305 * hosts/alphavms.h: Don't include <ctype.h>.
306 * ieee.c: Include "safe-ctype.h" instead of <ctype.h>.
307 (ieee_object_p): Use TOUPPER instead of toupper.
308 * ihex.c: Include "safe-ctype.h" instead of <ctype.h>.
309 (ihex_bad_byte): Use ISPRINT instead of isprint.
310 * merge.c: Don't include <ctype.h>.
311 * oasys.c: Include "safe-ctype.h" instead of <ctype.h>.
312 (oasys_write_sections): Use ISDIGIT instead of isdigit.
313 * pdp11.c: Include "safe-ctype.h" instead of <ctype.h>.
314 (aout_link_write_symbols): Use ISDIGIT instead of isdigit.
315 * ppcboot.c: Include "safe-ctype.h" instead of <ctype.h>.
316 (mangle_name): Use ISALNUM instead of isalnum.
317 * som.c: Include "safe-ctype.h" instead of <ctype.h>.
318 (som_set_reloc_info): Use ISUPPER/ISLOWER/ISDIGIT instead of
319 isupper/islower/isdigit.
320 (som_decode_symclass): Use TOUPPER instead of toupper.
321 * srec.c: Include "safe-ctype.h" instead of <ctype.h>.
322 (srec_bad_byte): Use ISPRINT instead of isprint.
323 (srec_scan): Use ISSPACE instead of isspace.
324 * stabs.c: Include "safe-ctype.h" instead of <ctype.h>.
325 (_bfd_link_section_stabs): Use ISDIGIT instead of isdigit.
326 * syms.c: Include "safe-ctype.h"
327 (islower, toupper): Remove macro definitions.
328 (bfd_decode_symclass): Use TOUPPER instead of toupper.
329 * vms-gsd.c: Don't include <ctype.h>.
330 * vms-hdr.c: Include "safe-ctype.h" instead of <ctype.h>.
331 (_bfd_vms_write_hdr): Use ISLOWER/TOUPPER instead of
332 islower/toupper.
333 * vms-tir.c: Don't include <ctype.h>.
334
dc810e39
AM
3352001-09-18 Alan Modra <amodra@bigpond.net.au>
336
337 * libbfd.c (bfd_bread): New function replacing bfd_read without
338 redundant params. Allow reads up to (size_t) -2 in length.
339 (bfd_bwrite): Similarly for bfd_write.
340 (real_read): Return a size_t.
341 (bfd_read): Call bfd_bread.
342 (bfd_write): Call bfd_bwrite.
343 (warn_deprecated): New function to annoy everybody.
344 (bfd_get_file_window): Don't call bfd_set_error unnecessarily.
345 * bfd-in.h (bfd_bread, bfd_bwrite, warn_deprecated): Declare.
346 (bfd_read, bfd_write): Define as macro.
347 * aix386-core.c: Replace calls to bfd_read with bfd_bread, and
348 likewise for bfd_write. Ensure function args are correct size by
349 using casts or local vars. In some cases, remove unnecessary
350 casts. Formatting fixes, in some cases removing a large expression
351 from function args by using a local var. Replace CONST with const.
352 Modify variable types to avoid warings. Use casts to avoid
353 warnings when using negative numbers in unsigned expressions.
354 * aout-adobe.c: Likewise.
355 * aout-arm.c: Likewise.
356 * aout-cris.c: Likewise.
357 * aout-encap.c: Likewise.
358 * aout-ns32k.c: Likewise.
359 * aout-target.h: Likewise.
360 * aout-tic30.c: Likewise.
361 * aoutf1.h: Likewise.
362 * aoutx.h: Likewise.
363 * archive.c: Likewise.
364 * archures.c: Likewise.
365 * bfd-in.h: Likewise.
366 * bfd.c: Likewise.
367 * binary.c: Likewise.
368 * bout.c: Likewise.
369 * cache.c: Likewise.
370 * cisco-core.c: Likewise.
371 * coff-a29k.c: Likewise.
372 * coff-alpha.c: Likewise.
373 * coff-arm.c: Likewise.
374 * coff-h8300.c: Likewise.
375 * coff-h8500.c: Likewise.
376 * coff-i386.c: Likewise.
377 * coff-i860.c: Likewise.
378 * coff-i960.c: Likewise.
379 * coff-ia64.c: Likewise.
380 * coff-m68k.c: Likewise.
381 * coff-m88k.c: Likewise.
382 * coff-mcore.c: Likewise.
383 * coff-mips.c: Likewise.
384 * coff-ppc.c: Likewise.
385 * coff-rs6000.c: Likewise.
386 * coff-sh.c: Likewise.
387 * coff-sparc.c: Likewise.
388 * coff-stgo32.c: Likewise.
389 * coff-tic30.c: Likewise.
390 * coff-tic54x.c: Likewise.
391 * coff-tic80.c: Likewise.
392 * coff-w65.c: Likewise.
393 * coff-z8k.c: Likewise.
394 * coff64-rs6000.c: Likewise.
395 * coffcode.h: Likewise.
396 * coffgen.c: Likewise.
397 * cofflink.c: Likewise.
398 * coffswap.h: Likewise.
399 * corefile.c: Likewise.
400 * cpu-arc.c: Likewise.
401 * cpu-h8300.c: Likewise.
402 * cpu-h8500.c: Likewise.
403 * cpu-i960.c: Likewise.
404 * cpu-ia64-opc.c: Likewise.
405 * cpu-ns32k.c: Likewise.
406 * cpu-pdp11.c: Likewise.
407 * cpu-pj.c: Likewise.
408 * cpu-sh.c: Likewise.
409 * cpu-w65.c: Likewise.
410 * cpu-z8k.c: Likewise.
411 * dwarf1.c: Likewise.
412 * dwarf2.c: Likewise.
413 * ecoff.c: Likewise.
414 * ecofflink.c: Likewise.
415 * ecoffswap.h: Likewise.
416 * elf-bfd.h: Likewise.
417 * elf-hppa.h: Likewise.
418 * elf-m10200.c: Likewise.
419 * elf-m10300.c: Likewise.
420 * elf.c: Likewise.
421 * elf32-arc.c: Likewise.
422 * elf32-arm.h: Likewise.
423 * elf32-avr.c: Likewise.
424 * elf32-cris.c: Likewise.
425 * elf32-fr30.c: Likewise.
426 * elf32-gen.c: Likewise.
427 * elf32-h8300.c: Likewise.
428 * elf32-hppa.c: Likewise.
429 * elf32-i370.c: Likewise.
430 * elf32-i386.c: Likewise.
431 * elf32-i860.c: Likewise.
432 * elf32-m32r.c: Likewise.
433 * elf32-m68k.c: Likewise.
434 * elf32-mcore.c: Likewise.
435 * elf32-mips.c: Likewise.
436 * elf32-openrisc.c: Likewise.
437 * elf32-pj.c: Likewise.
438 * elf32-ppc.c: Likewise.
439 * elf32-s390.c: Likewise.
440 * elf32-sh-lin.c: Likewise.
441 * elf32-sh.c: Likewise.
442 * elf32-sparc.c: Likewise.
443 * elf32-v850.c: Likewise.
444 * elf64-alpha.c: Likewise.
445 * elf64-hppa.c: Likewise.
446 * elf64-mips.c: Likewise.
447 * elf64-ppc.c: Likewise.
448 * elf64-s390.c: Likewise.
449 * elf64-sparc.c: Likewise.
450 * elf64-x86-64.c: Likewise.
451 * elfarm-nabi.c: Likewise.
452 * elfcode.h: Likewise.
453 * elfcore.h: Likewise.
454 * elflink.c: Likewise.
455 * elflink.h: Likewise.
456 * elfxx-ia64.c: Likewise.
457 * elfxx-target.h: Likewise.
458 * format.c: Likewise.
459 * hash.c: Likewise.
460 * hp300hpux.c: Likewise.
461 * hppabsd-core.c: Likewise.
462 * hpux-core.c: Likewise.
463 * i386aout.c: Likewise.
464 * i386dynix.c: Likewise.
465 * i386linux.c: Likewise.
466 * i386lynx.c: Likewise.
467 * i386mach3.c: Likewise.
468 * i386msdos.c: Likewise.
469 * i386os9k.c: Likewise.
470 * ieee.c: Likewise.
471 * ihex.c: Likewise.
472 * irix-core.c: Likewise.
473 * libaout.h: Likewise.
474 * libbfd-in.h: Likewise.
475 * libbfd.c: Likewise.
476 * libcoff-in.h: Likewise.
477 * libecoff.h: Likewise.
478 * libieee.h: Likewise.
479 * libnlm.h: Likewise.
480 * libpei.h: Likewise.
481 * libxcoff.h: Likewise.
482 * linker.c: Likewise.
483 * lynx-core.c: Likewise.
484 * m68klinux.c: Likewise.
485 * merge.c: Likewise.
486 * mipsbsd.c: Likewise.
487 * netbsd-core.c: Likewise.
488 * nlm.c: Likewise.
489 * nlm32-alpha.c: Likewise.
490 * nlm32-i386.c: Likewise.
491 * nlm32-ppc.c: Likewise.
492 * nlm32-sparc.c: Likewise.
493 * nlmcode.h: Likewise.
494 * nlmswap.h: Likewise.
495 * ns32k.h: Likewise.
496 * oasys.c: Likewise.
497 * opncls.c: Likewise.
498 * osf-core.c: Likewise.
499 * pc532-mach.c: Likewise.
500 * pdp11.c: Likewise.
501 * pe-mips.c: Likewise.
502 * peXXigen.c: Likewise.
503 * peicode.h: Likewise.
504 * ppcboot.c: Likewise.
505 * ptrace-core.c: Likewise.
506 * reloc.c: Likewise.
507 * reloc16.c: Likewise.
508 * riscix.c: Likewise.
509 * rs6000-core.c: Likewise.
510 * sco5-core.c: Likewise.
511 * section.c: Likewise.
512 * som.c: Likewise.
513 * sparclinux.c: Likewise.
514 * sparclynx.c: Likewise.
515 * srec.c: Likewise.
516 * stabs.c: Likewise.
517 * sunos.c: Likewise.
518 * syms.c: Likewise.
519 * targets.c: Likewise.
520 * tekhex.c: Likewise.
521 * trad-core.c: Likewise.
522 * versados.c: Likewise.
523 * vms-gsd.c: Likewise.
524 * vms-hdr.c: Likewise.
525 * vms-misc.c: Likewise.
526 * vms-tir.c: Likewise.
527 * vms.c: Likewise.
528 * vms.h: Likewise.
529 * xcofflink.c: Likewise.
530 * bfd-in2.h: Regenerate.
531 * libbfd.h: Regenerate.
532 * libcoff.h: Regenerate.
533
534 * bfd.c (struct _bfd): Make "where" and "origin" unsigned.
535 * bfd-in.h (file_ptr): Change from a long int to a bfd_signed_vma.
536 (ufile_ptr): Define.
537 (bfd_tell): Return a ufile_ptr.
538 * libbfd.c (bfd_tell): Likewise.
539 (bfd_seek): Use bfd_size_type locals. Don't call bfd_set_error
540 unnecessarily.
541 * aix386-core.c: Test != 0 for bfd_seek errors rather than < 0.
542 * aoutf1.h: Likewise.
543 * som.c: Likewise.
544 * cache.c (bfd_cache_lookup_worker): Guard against abfd->where
545 larger than unsigned long can represent.
546
547 * libbfd.c (bfd_malloc): Take a bfd_size_type arg. Error if
548 size overflows size_t.
549 (bfd_realloc): Likewise.
550 (bfd_zmalloc): Likewise.
551 * opncls.c (bfd_alloc): Likewise.
552 (bfd_zalloc): Likewise.
553 * libbfd-in.h (bfd_malloc, bfd_realloc, bfd_zmalloc): Update.
554 (bfd_alloc, bfd_zalloc): Update.
555
556 * libbfd.c (bfd_get_8): Mask with 0xff in case char is more than
557 8 bits.
558 (bfd_get_signed_8): Likewise.
559 (H_PUT_64, H_PUT_32, H_PUT_16, H_PUT_8,
560 H_PUT_S64, H_PUT_S32, H_PUT_S16, H_PUT_S8,
561 H_GET_64, H_GET_32, H_GET_16, H_GET_8,
562 H_GET_S64, H_GET_S32, H_GET_S16, H_GET_S8): Define and use.
563 * libaout.h: Likewise define and use here.
564 * aout-adobe.c: Use H_GET_* and H_PUT_* macros.
565 * aout-arm.c: Likewise.
566 * aout-encap.c: Likewise.
567 * aout-ns32k.c: Likewise.
568 * aout-tic30.c: Likewise.
569 * aoutf1.h: Likewise.
570 * aoutx.h: Likewise.
571 * bout.c: Likewise.
572 * coff-alpha.c: Likewise.
573 * coff-h8300.c: Likewise.
574 * coff-h8500.c: Likewise.
575 * coff-i960.c: Likewise.
576 * coff-ia64.c: Likewise.
577 * coff-m88k.c: Likewise.
578 * coff-mips.c: Likewise.
579 * coff-ppc.c: Likewise.
580 * coff-rs6000.c: Likewise.
581 * coff-sh.c: Likewise.
582 * coff-sparc.c: Likewise.
583 * coff-stgo32.c: Likewise.
584 * coff-tic30.c: Likewise.
585 * coff-tic80.c: Likewise.
586 * coff-w65.c: Likewise.
587 * coff-z8k.c: Likewise.
588 * coff64-rs6000.c: Likewise.
589 * coffgen.c: Likewise.
590 * cofflink.c: Likewise.
591 * coffswap.h: Likewise.
592 * ecoff.c: Likewise.
593 * ecoffswap.h: Likewise.
594 * elf.c: Likewise.
595 * elf32-mips.c: Likewise.
596 * elf64-mips.c: Likewise.
597 * hp300hpux.c: Likewise.
598 * i386dynix.c: Likewise.
599 * i386lynx.c: Likewise.
600 * i386msdos.c: Likewise.
601 * i386os9k.c: Likewise.
602 * libpei.h: Likewise.
603 * nlm32-alpha.c: Likewise.
604 * nlm32-i386.c: Likewise.
605 * nlm32-ppc.c: Likewise.
606 * nlmcode.h: Likewise.
607 * nlmswap.h: Likewise.
608 * oasys.c: Likewise.
609 * pdp11.c: Likewise.
610 * pe-mips.c: Likewise.
611 * peXXigen.c: Likewise.
612 * peicode.h: Likewise.
613 * riscix.c: Likewise.
614 * sunos.c: Likewise.
615 * xcofflink.c: Likewise.
616 * elfcode.h: (put_word, get_word, put_signed_word, get_signed_word):
617 Rename to H_PUT_WORD, H_GET_WORD, H_PUT_SIGNED_WORD, H_GET_SIGNED_WORD.
618 * coff-rs6000.c (PUTWORD, PUTHALF, PUTBYTE): Don't define. Use
619 equivalent H_PUT_* macro instead.
620 (GETWORD, GETHALF, GETBYTE): Similarly.
621 * coff64-rs6000.c (PUTWORD, PUTHALF, PUTBYTE): Likewise.
622 (GETWORD, GETHALF, GETBYTE): Likewise.
623 * coffswap.h (PUTWORD, PUTHALF, PUTBYTE): Likewise.
624
625 * bfd-in.h (struct orl): Change "pos" to a union.
626 * archive.c (_bfd_compute_and_write_armap): Use it instead of casts.
627 (bsd_write_armap): Here too.
628 (coff_write_armap): And here.
629 * coff-rs6000.c (xcoff_write_armap_old): And here.
630 (xcoff_write_one_armap_big): And here.
631 (xcoff_write_armap_big): And here.
632 * ecoff.c (_bfd_ecoff_write_armap): And here.
633 * elf64-mips.c (mips_elf64_write_armap): And here.
634
635 * aoutf1.h (sunos_set_arch_mach): Make "mach" param an enum.
636 * elf-m10300.c (elf_mn10300_mach): Return an unsigned long.
637 * elf32-h8300.c (elf32_h8_mach): Likewise.
638 * elf32-mips.c (elf_mips_mach): Likewise.
639 * sparclynx.c (NAME(lynx,set_arch_mach)): Likewise.
640
641 * aix386-core.c (aix386_core_file_p): Remove redundant bfd_release
642 calls.
643 (aix386_core_vec): Typo fix.
644
645 * aout-arm.c: Include libaout.h and aout/aout64.h after N_TXTADDR
646 etc. to avoid redefined macro warning.
647 (MY(put_reloc)): Use bfd_vma for "value" rather than long.
648 (MY(fix_pcrel_26)): Likewise.
649 * aout-ns32k.c (MY(put_reloc)): Likewise.
650 * aout-cris.c (MY(swap_ext_reloc_out)): Likewise for r_addend.
651 * aoutx.h (NAME(aout,swap_ext_reloc_out)): Likewise.
652 * coff-arm.c (coff_arm_relocate_section): Likewise for my_offset.
653
654 * aout-encap.c: Include "file", not <file> for binutils headers.
655 (encap_object_p): Half baked attempt to fix compile errors in
656 code dealing with "magic".
657
658 * aout-ns32k.c: Include "file", not <file> for binutils headers.
659 (_bfd_ns32k_relocate_contents): get_data and put_data manipulate
660 bfd_vma's rather than longs.
661 * cpu-ns32k.c (ns32k_sign_extend): Delete.
662 (_bfd_ns32k_get_displacement): Return a bfd_vma, don't pass in offset.
663 (_bfd_ns32k_get_immediate): Likewise. Add code for 8 byte values,
664 remove case 3.
665 (_bfd_ns32k_put_displacement): Accept a bfd_vma, don't pass in offset.
666 Use unsigned comparisons.
667 (bfd_ns32k_put_immediate): Likewise, and add code for 8 byte values.
668 (do_ns32k_reloc): get_data and put_data operate on bfd_vma's.
669 (_bfd_do_ns32k_reloc_contents): Likewise.
670 * ns32k.h (_bfd_ns32k_get_displacement): Update prototype.
671 (_bfd_ns32k_get_immediate): Likewise.
672 (_bfd_ns32k_put_displacement): Likewise.
673 (_bfd_ns32k_put_immediate): Likewise.
674 (bfd_reloc_status_type): Likewise.
675
676 * aoutx.h (NAME(aout,find_nearest_line)): Rename 'p' to 'colon'
677 to avoid shadowing.
678 * pdp11.c (NAME(aout,find_nearest_line)): Likewise.
679 * coff-h8300.c (h8300_reloc16_extra_cases): Remove shadowing "value".
680 * coff-ppc.c (enum ref_category): Rename "data" to "tocdata" to
681 avoid shadowing.
682 (record_toc): Use a bfd_signed_vma for our_toc_offset.
683 * coffcode.h (coff_write_relocs): Rename "i" to avoid shadowing.
684 * elf.c (bfd_elf_get_bfd_needed_list): Rename "link" var to avoid
685 shadow warning.
686 (_bfd_elfcore_strndup): Likewise for "dup".
687 * elf32-cris.c (cris_elf_relocate_section): "symname" instead of
688 "name" to avoid shadowing.
689 * elf32-hppa.c (elf32_hppa_relocate_section): Remove duplicate
690 definition of "off".
691 * elf32-i386.c (elf_i386_relocate_section): Likewise.
692 * elf32-mips.c (_bfd_mips_elf_modify_segment_map): Remove duplicate
693 definition of "s".
694 (_bfd_mips_elf_final_link): Rename "i" to "j". Remove duplicate
695 "secpp".
696 * elf64-x86-64.c (elf64_x86_64_relocate_section): Rename inner "indx"
697 to avoid shadowing.
698 * elflink.h (elf_link_add_object_symbols): Rename "link" to "shlink"
699 to avoid shadowing.
700 (elf_link_input_bfd): Likewise.
701 (elf_bfd_final_link): Remove duplicate innermost "off" var.
702 * oasys.c (oasys_write_data): Rename innermost "p" to "sym".
703 * reloc16.c (bfd_coff_reloc16_relax_section): Rename "i" param to
704 "input_section".
705 * som.c (som_prep_for_fixups): Rename inner "i" to "j".
706 * sunos.c (sunos_add_dynamic_symbols): Localise "s" var.
707 (sunos_write_dynamic_symbol): Remove unused vars.
708 * syms.c (_bfd_stab_section_find_nearest_line): Remove duplicate
709 innermost "directory_name" and "file_name" vars.
710 * tekhex.c (first_phase): Rename local var "type" to "stype".
711 (tekhex_write_object_contents): Rename innermost "s" to "sym".
712 * vms-gsd.c (vms_secflag_by_name): Change "size" param to "hassize",
713 doing comparison at caller.
714 (vms_esecflag_by_name): Likewise.
715 * vms-tir.c (etir_sto): Rename innermost "psect" to "psect1".
716 * xcofflink.c (xcoff_link_input_bfd): Delete duplicate innermost "o".
717 (xcoff_write_global_symbol): Rename "p" param to "inf".
718
719 * cisco-core.c: Add missing prototypes.
720 (cisco_core_file_failing_command): Add ATTRIBUTE_UNUSED.
721 (cisco_core_file_failing_signal): Likewise.
722 (cisco_core_file_matches_executable_p): Likewise.
723 * hpux-core.c (hpux_core_core_file_failing_signal): Likewise.
724 * netbsd-core.c (netbsd_core_file_matches_executable_p): Likewise.
725 * osf-core.c (osf_core_core_file_matches_executable_p): Likewise.
726 * sco5-core.c (sco5_core_file_matches_executable_p): Likewise.
727
728 * coff-arm.c (coff_arm_link_hash_table): Use bfd_size_type for
729 thumb_glue_size and arm_glue_size.
730 * elf32-arm.h (elf32_arm_link_hash_table): Likewise here.
731
732 * coff64-rs6000.c: Group prototypes together.
733
734 * coffcode.h (coff_set_arch_mach): Add ATTRIBUTE_UNUSED.
735 (buy_and_read): Remove "seek" param. Change "size" to bfd_size_type.
736
737 * cpu-arc.c: Add missing prototypes.
738 * cpu-h8500.c: Likewise.
739 * cpu-i960.c: Likewise.
740 * cpu-pj.c: Likewise.
741 * cpu-sh.c: Likewise.
742 * cpu-w65.c: Likewise.
743 * cpu-z8k.c: Likewise.
744 * elf32-fr30.c: Likewise.
745 * elf32-h8300.c: Likewise.
746 * elf32-i370.c: Likewise.
747 * hpux-core.c: Likewise.
748 * versados.c: Likewise.
749
750 * cpu-h8300.c (bfd_default_scan_num_mach): Don't declare.
751 * cpu-h8500.c: Likewise.
752 * cpu-i960.c: Likewise.
753 * cpu-z8k.c: Likewise.
754
755 * cpu-ia64-opc.c: Correct comment.
756
757 * dwarf2.c (_bfd_dwarf2_find_nearest_line): Remove unused var.
758
759 * elf-bfd.h (elf_size_info): Change count param of write_out_phdrs
760 to unsigned.
761 (bfd_elf32_write_out_phdrs): Likewise.
762 (bfd_elf64_write_out_phdrs): Likewise.
763 (elf_linker_section_pointers): Change addend to bfd_vma.
764 (_bfd_elf_find_pointer_linker_section): Likewise.
765 (_bfd_elfcore_make_pseudosection): Change size param to size_t and
766 filepos to unsigned file_ptr.
767 (_bfd_elfcore_strndup): Change max param to size_t.
768 * elf.c (_bfd_elfcore_make_pseudosection): As above.
769 (_bfd_elfcore_strndup): Likewise.
770 (_bfd_elf_find_pointer_linker_section): Likewise.
771
772 * elf-hppa.h (elf_hppa_relocate_insn): Return an int, and change
773 insn and sym_value to ints.
774
775 * elf.c (elf_read): Make "offset" param a file_ptr, "size" a
776 bfd_size_type.
777 (elfcore_read_notes): Likewise.
778
779 * elf32-arm.h (elf32_arm_final_link_relocate): Change sym_flags
780 param from unsigned char to int.
781 (elf32_arm_relocate_section): If USE_REL, cast "rel" appropriately
782 for info_to_howto call.
783 (add_dynamic_entry): Define macro.
784 (elf32_arm_size_dynamic_sections): Use add_dynamic_entry.
785
786 * elf32-cris.c (add_dynamic_entry): Define macro.
787 (elf_cris_size_dynamic_sections): Use add_dynamic_entry.
788
789 * elf32-h8300.c (elf32_h8_final_write_processing): Make static.
790 (elf32_h8_object_p): Likewise.
791 (elf32_h8_merge_private_bfd_data): Likewise.
792 (elf32_h8_relax_section): Cast gap to int so signed comparisons work.
793
794 * elf32-hppa.c (add_dynamic_entry): Define macro.
795 (elf32_hppa_size_dynamic_sections): Use it.
796 * elf32-i370.c (add_dynamic_entry): Define macro.
797 (i370_elf_size_dynamic_sections): Use it.
798 (i370_noop): Make static.
799 * elf32-i386.c (add_dynamic_entry): Define macro.
800 (elf_i386_size_dynamic_sections): Use it.
801 * elf32-m68k.c (add_dynamic_entry): Define macro.
802 (elf_m68k_size_dynamic_sections): Use it.
803 * elf32-ppc.c (add_dynamic_entry): Define macro.
804 (ppc_elf_size_dynamic_sections): Use it.
805 * elf32-s390.c (add_dynamic_entry): Define macro.
806 (elf_s390_size_dynamic_sections): Use it.
807 * elf64-alpha.c (add_dynamic_entry): Define macro.
808 (elf64_alpha_size_dynamic_sections): Use it.
809 * elf64-hppa.c (add_dynamic_entry): Define macro.
810 (elf64_hppa_size_dynamic_sections): Use it.
811 * elf64-ppc.c (add_dynamic_entry): Define macro.
812 (ppc64_elf_size_dynamic_sections): Use it.
813 * elf64-s390.c (add_dynamic_entry): Define macro.
814 (elf_s390_size_dynamic_sections): Use it.
815 * elf64-sparc.c (add_dynamic_entry): Define macro.
816 (sparc64_elf_size_dynamic_sections): Use it.
817 * elf64-x86-64.c (add_dynamic_entry): Define macro.
818 (elf64_x86_64_size_dynamic_sections): Use it.
819 * elfxx-ia64.c (add_dynamic_entry): Define macro.
820 (elfNN_ia64_size_dynamic_sections): Use it.
821
822 * elf32-v850.c (SEXT24): Modify to avoid signed/unsigned warning.
823 (v850_elf_perform_relocation): Make "r_type" param unsigned.
824
825 * elf64-mips.c (mips_elf64_slurp_one_reloc_table): Just return
826 false if the first malloc fails rather than going via error_return.
827
828 * elf64-sparc.c (sparc64_elf_plt_entry_offset): Use a bfd_vma for
829 "index" param.
830 (sparc64_elf_plt_ptr_offset): Likewise, and for "max" param too.
831
832 * elflink.h (elf_link_input_bfd): s/ingored/ignored/ in error message.
833
834 * elfxx-ia64.c (global_sym_index): Return a long.
835
836 * ieee.c (get_symbol): Use int rather than char param.
837 (ieee_slurp_sections): Move "section" var to inner blocks.
838 (copy_expression): Don't init "value" to zero or worry about
839 clearing to zero after using.
840 (ieee_write_debug_part): Rename "output_buffer" to "obuff" to avoid
841 shadowing.
842
843 * ihex.c (ihex_write_record): Make "count" var a size_t, "addr" an
844 unsigned int.
845
846 * libbfd-in.h (BFD_ALIGN): Add cast to avoid signed/unsigned warning.
847 (bfd_write_bigendian_4byte_int): Pass an unsigned int value param.
848
849 * mipsbsd.c (mips_fix_jmp_addr): Add "error_message" param.
850
851 * pc532-mach.c (MYNSX): Delete.
852 (ns32kaout_bfd_reloc_type_lookup): Define prototype without MYNSX.
853 (write_object_contents): Correct prototype.
854
855 * peicode.h (pe_ILF_build_a_bfd): Use an unsigned int param rather
856 than unsigned short.
857
858 * section.c (bfd_set_section_contents): Remove redundant
859 "offset < 0" test. Check that "count" doesn't overflow size_t.
860 (bfd_get_section_contents): Likewise.
861
862 * som.c (som_fixup_formats): Add missing braces.
863 (som_reloc_addend): Pass a bfd_vma for "addend".
864
865 * srec.c (srec_write_record): Pass "type" as an unsigned int.
866 (srec_write_symbols): Remove an unnecessary var.
867
868 * targets.c (_bfd_target_vector): Sort entries. Sort externs
869 to match.
870 * configure.in: Sort to match. Bump version number.
871 * configure: Regenerate.
872
873 * tekhex.c (move_section_contents): Assert offset == 0.
874
875 * versados.c (new_symbol_string): Constify arg.
876 (process_esd): Use bfd_und_section_ptr rather than &bfd_und_section.
877 (versados_get_symbol_info): Make static.
878 (versados_print_symbol): Likewise.
879 (versados_get_reloc_upper_bound): Likewise.
880 (versados_canonicalize_reloc): Likewise.
881
417412a2
NC
8822001-09-18 Nick Clifton <nickc@cambridge.redhat.com>
883
884 * elflink.h (elf_link_input_bfd): Fix typo in error message.
885
bb731fb6
L
8862001-09-17 H.J. Lu <hjl@gnu.org>
887
888 * dwarf1.c (parse_die): Take a new arg for the end of the
889 section. Return false if die is beyond the section.
890 (parse_functions_in_unit): Pass the end of the section to
891 parse_die ().
892 (_bfd_dwarf1_find_nearest_line): Likewise.
893
841989d6
NC
8942001-09-14 Michael Rauch <mrauch@netbsd.org>
895
896 * elf32-sparc.c (elf32_sparc_relocate_section): Treat R_SPARC_UA32
897 just like R_SPARC_32.
898
056a1d49
NC
8992001-09-14 Kevin Lo <kevlo@openbsd.org>
900
901 * configure.bfd: Add arm-openbsd target.
902
4008bd9b
TS
9032001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
904
905 * config.bfd: Change machine triplets from mips*el*-* to mips*el-*.
906 Add support for mips64.
907
c11cc227
AO
9082001-09-13 Alexandre Oliva <aoliva@redhat.com>
909
910 * elf32-openrisc.c (ELF_MACHINE_ALT1): Define as EM_OPENRISC_OLD.
911
aa4f99bb
AO
9122001-09-12 Alexandre Oliva <aoliva@redhat.com>
913
914 * elf.c (prep_headers): Get the machine code from the elf
915 backend data.
916 * elf-m10200.c (ELF_MACHINE_CODE): Redefine to EM_MN10200.
917 (ELF_MACHINE_ALT1): Define to EM_CYGNUS_MN10200.
918 * elf-m10300.c (ELF_MACHINE_CODE): Redefine to EM_MN10300.
919 (ELF_MACHINE_ALT1): Define to EM_CYGNUS_MN10300.
920 * elf-arc.c (arc_elf_final_write_processing): Don't override
921 e_machine, it's now properly set in prep_headers.
922 * elf32-avr.c (elf32_avr_object_p): Accept both EM_AVR and
923 EM_AVR_OLD.
924 (ELF_MACHINE_ALT1): Define to EM_AVR_OLD.
925 * elf-d10v.c (ELF_MACHINE_CODE): Redefine to EM_D10V.
926 (ELF_MACHINE_ALT1): Define to EM_CYGNUS_D10V.
927 * elf-d30v.c (ELF_MACHINE_CODE): Redefine to EM_D30V.
928 (ELF_MACHINE_ALT1): Define to EM_CYGNUS_D30V.
929 * elf-fr30.c (ELF_MACHINE_CODE): Redefine to EM_FR30.
930 (ELF_MACHINE_ALT1): Define to EM_CYGNUS_FR30.
931 * elf-m32r.c (ELF_MACHINE_CODE): Redefine to EM_M32R.
932 (ELF_MACHINE_ALT1): Define to EM_CYGNUS_M32R.
933 * elf32-pj.c (ELF_MACHINE_ALT1): DEfine to EM_PJ_OLD.
934 * elf-v850.c (ELF_MACHINE_CODE): Redefine to EM_V850.
935 (ELF_MACHINE_ALT1): Define to EM_CYGNUS_V850.
936
204692d7
RH
9372001-09-11 Richard Henderson <rth@redhat.com>
938
939 * elf64-alpha.c (elf64_alpha_section_flags): New.
940 (elf64_alpha_fake_sections): Map SEC_SMALL_DATA to SHF_ALPHA_GPREL.
941
f94952df
RH
9422001-09-11 Richard Henderson <rth@redhat.com>
943
944 * elf64-alpha.c (elf64_alpha_relocate_section): Do not
945 apply HINT relocations against dynamic symbols.
946
146f1a87
L
9472001-09-11 H.J. Lu <hjl@gnu.org>
948
f94952df 949 * linker.c (link_action): Change COMMON_ROW\defw from CREF to COM.
146f1a87 950
1cd6895c
RH
9512001-09-09 Richard Henderson <rth@redhat.com>
952
96e2734b
RH
953 * elf64-alpha.c: Delete all unused ERIC_neverdef and rth_notdef code.
954
1cd6895c
RH
955 * elf64-alpha.c (elf64_alpha_relax_with_lituse): Nop out gpdisp
956 following a call to a near function.
957
f16fbd61
RH
9582001-09-08 Richard Henderson <rth@redhat.com>
959
960 * elf64-alpha.c (elf64_alpha_relocate_section): Soft fail
961 relocation errors. Fail gp-relative relocations against
962 dynamic symbols.
963
56882138
AM
9642001-09-08 Alan Modra <amodra@bigpond.net.au>
965
966 * elf32-i386.c (elf_i386_relocate_section): Check !DEF_REGULAR
967 as well as DEF_DYNAMIC in test for avoided copy relocs.
968 (allocate_plt_and_got_and_discard_relocs): Likewise.
969 * elf32-hppa.c (elf_i386_relocate_section): Likewise.
970 (allocate_plt_and_got_and_discard_relocs): Likewise.
971
cb56d3d3
TS
9722001-09-07 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
973
974 * elf32-mips.c (mips_elf_calculate_relocation): Fix overflow handling
975 of R_MIPS_PC16.
56882138
AM
976
9772001-09-06 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
978
979 * elf64-mips.c (mips_elf64_howto_table_rel): Fix relocation HOWTO
980 definitions.
981 (mips_elf64_howto_table_rel): Likewise.
982
9832001-09-05 Tom Rix <trix@redhat.com>
984
985 * xcofflink.c (bfd_xcoff_import_symbol): Handle import file XMC_XO
986 and syscall symbols.
987 (write_global_symbol) : Same.
988 (bfd_xcoff_export_symbol): Remove unused syscall param.
989 * libxcoff.h: Change prototype of bfd_xcoff_export symbol and
990 bfd_xcoff_import_symbol.
991 * bfd-in.h: Same.
992 * bfd-in2.h : Regenerate.
993
9942001-09-04 Richard Henderson <rth@redhat.com>
995
996 * elf64-alpha.c (SKIP_HOWTO): New.
997 (elf64_alpha_howto_table): Use it to remove dead ECOFF relocs.
998 Fix sizes of 16-bit mem format relocs.
999 (elf64_alpha_reloc_map): Update to match.
1000 (elf64_alpha_relax_with_lituse): Use GPREL16 as appropriate.
1001 (elf64_alpha_relax_without_lituse): Likewise.
1002 (elf64_alpha_check_relocs): Handle GPREL16.
1003 (elf64_alpha_relocate_section): Likewise.
1004 * reloc.c (BFD_RELOC_ALPHA_USER_*): Remove.
1005 (BFD_RELOC_ALPHA_GPREL_HI16, BFD_RELOC_ALPHA_GPREL_LO16): New.
1006 * bfd-in2.h, libbfd.h: Rebuild.
1007
10082001-09-04 Jeff Law <law@redhat.com>
1009
1010 * elf32-h8300.c (elf32_h8_relax_section): New function.
1011 (elf32_h8_relax_delete_bytes): Likewise.
1012 (elf32_h8_symbol_address_p): Likewise.
1013 (elf32_h8_get_relocated_section_contents): Likewise.
1014 (bfd_elf32_bfd_relax_section): Define.
1015 (bfd_elf32_bfd_get_relocated_section_contents): Likewise.
1016
1017 * elf32-h8300.c (special): New function.
1018 (h8_elf_howto_table): Use it for SPECIAL_FUNCTION field in
1019 all relocations.
1020 (elf32_h8_final_link_relocate): Treat R_H8_DIR24A8 like 32bit
1021 relocations. Fix problems with the true 24bit reloc R_H8_DIR24R8.
1022 Fix minor problems with 8bit and 16bit PC relative relocations.
1023
10242001-09-01 Andreas Jaeger <aj@suse.de>
1025
1026 * vms-tir.c: Add missing prototypes.
1027 * vms-hdr.c: Likewise.
1028 * vms-gsd.c: Likewise.
1029 * vms-misc.c: Likewise.
1030
10312001-08-31 H.J. Lu <hjl@gnu.org>
1032
1033 * elf32-mips.c (_bfd_mips_elf_check_relocs): Report filename
1034 with bad relocation.
1035
10362001-08-31 Eric Christopher <echristo@redhat.com>
1037 Jason Eckhardt <jle@redhat.com>
1038
1039 * bfd/archures.c: Add mipsisa32 and mipsisa64. Remove mips32,
1040 mips32_4k and mips64.
1041 * bfd/aoutx.h: Remove bfd_mach_mips32, bfd_mach_mips32_4k,
1042 bfd_mach_mips64. Add bfd_mach_mipsisa32, bfd_mach_mipsisa64.
1043 * bfd/cpu-mips.c: Ditto.
1044 * bfd/elf32-mips.c (_bfd_mips_elf_final_write_processing): Ditto.
1045 * bfd/bfd-in2.h: Regenerate.
1046
10472001-08-31 Jakub Jelinek <jakub@redhat.com>
1048
1049 * elf64-alpha.c (elf64_alpha_relocate_section): Duplicate memory
1050 value into R_ALPHA_RELATIVE's addend.
1051 (elf64_alpha_finish_dynamic_symbol): Likewise.
1052
10532001-08-31 Nick Clifton <nickc@cambridge.redhat.com>
1054
1055 * elf32-arm.h (elf32_arm_relocate_section): Do not rightshift
1056 recomputed addend during relocatable link if not USE_REL.
1057
1058 * elflink.h (elf_gc_propagate_vtable_entries_used): Fix off-by-one
1059 error.
1060
10612001-08-30 H.J. Lu <hjl@gnu.org>
1062
1063 * elf32-mips.c (mips_elf_calculate_relocation): Revert the last
1064 2 changes.
1065 (_bfd_mips_elf_adjust_dynamic_symbol): Allocate dynamic
1066 relocations for weak definitions.
1067
10682001-08-30 H.J. Lu <hjl@gnu.org>
1069
1070 * Makefile.am (BFD32_BACKENDS): Add elf32-h8300.lo.
1071 (BFD32_BACKENDS_CFILES): Add elf32-h8300.c.
1072 * Makefile.in: Rebuild.
1073
10742001-08-30 H.J. Lu <hjl@gnu.org>
1075
1076 * elf32-mips.c (mips_elf_calculate_relocation): Don't create
1077 dynamic relocation for undefined weak symbols when creating
1078 executables. Check h->root.root.type, instead of h->root.type.
1079
10802001-08-29 Joel Sherrill <joel@OARcorp.com>
1081
1082 * config.bfd (i[3456]86-*-rtems*, m68*-*-rtems*): Change
1083 default from coff to elf.
1084
10852001-08-29 Jeff Law <law@redhat.com>
1086
1087 * elf32-h8300.c (h8_elf_howto_table): Add new PC relative
1088 relocations.
1089 (h8_reloc_map): Similarly.
1090 (elf32_h8_final_link_relocate): Remove incorrect overflow tests.
1091 Add support for PC relative relocations.
1092
1093 * elf32-h8300.c: Put all prototypes together.
1094 (elf32_h8_info_to_howto): Parameter elf_reloc is used.
1095 (elf32_h8_final_link_relocate): New function for linker.
1096 (elf32_h8_relocate_section): Similarly.
1097 (elf_backend_relocate_section): Define.
1098
1099 * cpu-h8300.c (h8300_scan, compatible): Prototype.
1100 (h8300_scan): Handle architecture:machine encodings typically
1101 found in linker scripts.
1102 * elf.c (prep_headers): Do not try to do H8 machine recognition
1103 here.
1104 * elf32-h8300.c: Add some missing prototypes.
1105 (elf32_h8_mach, elf32_h8_final_write_processing): New functions.
1106 (elf32_h8_object_p): Similarly.
1107
11082001-08-29 Tom Rix <trix@redhat.com>
1109
1110 * xcofflink.c (xcoff_link_add_symbols): Fix XTY_LD symbol that
1111 does not follow a XTY_SD.
1112
11132001-08-29 Alan Modra <amodra@bigpond.net.au>
1114
1115 * targmatch.sed: Delete case statements.
1116 * config.bfd <powerpc-*-aix* entry>: Select 64 bit xcoff for
1117 aix4.3 and above.
1118
1119Wed Aug 29 02:27:36 2001 J"orn Rennecke <amylaar@redhat.com>
1120
1121 * Makefile.am (elf32-h8300.lo): New target.
1122 * config.bfd (h8300*-*-elf): New case.
1123 * configure.in (bfd_elf32_h8300_vec): New case.
1124 * elf.c (prep_headers): Add case for bfd_arch_h8300.
1125 * reloc.c (BFD_RELOC_H8_DIR16A8): New relocation.
1126 (BFD_RELOC_H8_DIR16R8, BFD_RELOC_H8_DIR24A8): Likewise.
1127 (BFD_RELOC_H8_DIR24R8, BFD_RELOC_H8_DIR32A16): Likewise.
1128 * targets.c (bfd_target bfd_elf32_h8300_vec): New extern declaration.
1129 * elf32-h8300.c: New file.
1130 * Makefile.in, bfd-in2.h, libbfd.h, configure: Regenerated.
1131
11322001-08-28 Nick Clifton <nickc@cambridge.redhat.com>
1133
1134 * sparclynx.c: Add missing prototypes.
1135 * coff-mcore.c: Add missing prototypes.
1136 * elf32-pj.c: Add missing prototypes.
1137 * nlm32-sparc.c: Add missing prototypes.
1138 * oasys.c: Add missing prototypes.
1139 * pdp11.c: Add missing prototypes.
1140 * pe-mips.c: Add missing prototypes.
1141 * riscix.c: Add missing prototypes.
1142
11432001-08-27 Daniel Jacobowitz <drow@mvista.com>
1144
1145 * elf32-i386.c: Add missing prototypes.
1146 * elf32-ppc.c: Likewise.
1147 * elf32-sh-lin.c: Likewise.
1148 * elfarm-nabi.c: Likewise.
1149
11502001-08-27 Daniel Jacobowitz <drow@mvista.com>
1151
1152 * elf32-i386.c (elf_i386_grok_prstatus): New function.
1153 (elf_i386_grok_psinfo): New function.
1154 (elf_backend_grok_prstatus): Define.
1155 (elf_backend_grok_psinfo): Likewise.
1156 * elf32-ppc.c (ppc_elf_grok_prstatus): New function.
1157 (ppc_elf_grok_psinfo): New function.
1158 (elf_backend_grok_prstatus): Define.
1159 (elf_backend_grok_psinfo): Likewise.
1160 * elf32-sh-lin.c (elf32_shlin_grok_prstatus): New function.
1161 (elf32_shlin_grok_psinfo): New function.
1162 (elf_backend_grok_prstatus): Define.
1163 (elf_backend_grok_psinfo): Likewise.
1164 * elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): New function.
1165 (elf32_arm_nabi_grok_psinfo): New function.
1166 (elf_backend_grok_prstatus): Define.
1167 (elf_backend_grok_psinfo): Likewise.
1168
11692001-08-27 H.J. Lu <hjl@gnu.org>
1170
1171 * elf32-mips.c (mips_elf_create_dynamic_relocation): Add more
1172 sanity check.
1173 (mips_elf_calculate_relocation): Create dynamic relocation for
1174 symbols with weak definition or the ELF_LINK_HASH_DEF_REGULAR
1175 bit is not set.
1176
11772001-08-27 H.J. Lu <hjl@gnu.org>
1178
1179 * elf32-mips.c (_bfd_mips_elf_hide_symbol): Add prototype.
1180 (_bfd_mips_elf_copy_indirect_symbol): Likewise.
1181 (_bfd_elf32_mips_grok_prstatus): Likewise.
1182 (_bfd_elf32_mips_grok_psinfo): Likewise.
1183 (_bfd_mips_elf_hide_symbol): Make it static and cast to
1184 `struct mips_elf_link_hash_entry *'.
1185 (_bfd_mips_elf_copy_indirect_symbol): Make it static.
1186
11872001-08-27 Nick Clifton <nickc@cambridge.redhat.com>
1188
1189 * mipsbsd.c: Add missing prototypes.
1190 * hp300hpux.c: Add missing prototypes.
1191 * i386aout.c: Add missing prototypes.
1192 * i386lynx.c: Add missing prototypes.
1193 * i386mach3.c: Add missing prototypes.
1194 * i386msdos.c: Add missing prototypes.
1195 * i386os9k.c: Add missing prototypes.
1196
11972001-08-27 Linus Nordberg <linus@swox.se>
1198 Torbjorn Granlund <tege@swox.com>
1199 Staffan Ulfberg <staffanu@swox.se>
1200 Alan Modra <amodra@bigpond.net.au>
1201
1202 * config.bfd: Add powerpc64 target. Add powerpc64 vectors to
1203 targ64_selvecs for 32 bit powerpc targets.
1204 * Makefile.am (BFD64_BACKENDS): Add elf64-ppc.lo.
1205 (BFD64_BACKENDS_CFILES): Add elf64-ppc.c.
1206 Run "make dep-am".
1207 * Makefile.in: Regenerate.
1208 * configure.in: Add elf64_powerpc vecs.
1209 * configure: Regenerate.
1210 * cpu-powerpc.c: Default to bfd_mach_ppc_620 entry for 64 bit.
1211 * elf.c (prep_headers): EM_PPC64 for 64 bit ppc elf target.
1212 * targets.c: Add bfd_elf64_powerpc_vec and bfd_elf64_powerpcle_vec.
1213 * elf64-ppc.c: New file.
1214 * reloc.c: Add powerpc64 relocs.
1215 * libbfd.h: Regenerate.
1216 * bfd-in2.h: Regenerate.
1217
12182001-08-27 Andreas Schwab <schwab@suse.de>
1219
1220 * elf32-m68k.c (elf32_m68k_check_relocs): Set DF_TEXTREL if the
1221 reloc is against read-only section.
1222 (elf32_m68k_size_dynamic_sections): Use DF_TEXTREL flag instead of
1223 looking up section names for DT_TEXTREL.
1224 (elf32_m68k_reloc_type_class): New function.
1225 (elf_backend_reloc_type_class): Define.
1226
12272001-08-27 Andreas Jaeger <aj@suse.de>
1228
1229 * elf64-s390.c (elf_s390_check_relocs): Set DF_TEXTREL if the
1230 reloc is against read-only section.
1231 (elf_s390_size_dynamic_sections): Use DF_TEXTREL flag instead of
1232 looking up section names for DT_TEXTREL.
1233 (elf_s390_reloc_type_class): New.
1234 (elf_backend_reloc_type_class): Define.
1235
1236 * elf32-s390.c (elf_s390_check_relocs): Set DF_TEXTREL if the
1237 reloc is against read-only section.
1238 (elf_s390_size_dynamic_sections): Use DF_TEXTREL flag instead of
1239 looking up section names for DT_TEXTREL.
1240 (elf_s390_reloc_type_class): New.
1241 (elf_backend_reloc_type_class): Define.
1242
1243 * elf32-ppc.c (ppc_elf_check_relocs): Set DF_TEXTREL if the reloc
1244 is against read-only section.
1245 (ppc_elf_size_dynamic_sections): Use DF_TEXTREL flag instead of
1246 looking up section names for DT_TEXTREL.
1247 (ppc_elf_reloc_type_class): New.
1248 (elf_backend_reloc_type_class): Define.
1249
12502001-08-26 Andreas Jaeger <aj@suse.de>
1251
1252 * elf32-cris.c (cris_elf_check_relocs): Set DF_TEXTREL if the
1253 reloc is against read-only section.
1254 (elf_cris_size_dynamic_sections): Use DF_TEXTREL flag instead of
1255 looking up section names for DT_TEXTREL.
1256 (elf_cris_reloc_type_class): New.
1257 (elf_backend_reloc_type_class): Define.
1258
1259 * elf32-sh.c (sh_elf_check_relocs): Set DF_TEXTREL if the reloc is
1260 against read-only section.
1261 (elf_backend_reloc_type_class): Define.
1262 (sh_elf_reloc_type_class): New.
1263 (sh_elf_size_dynamic_sections): Use DF_TEXTREL flag instead of
1264 looking up section names for DT_TEXTREL.
1265
1266 * elf32-arm.h (elf32_arm_check_relocs): Set DF_TEXTREL if the
1267 reloc is against read-only section.
1268 (elf32_arm_size_dynamic_sections): Use DF_TEXTREL flag instead of
1269 looking up section names for DT_TEXTREL.
1270 (elf32_arm_reloc_type_class): New.
1271 (elf_backend_reloc_type_class): Define.
1272
12732001-08-25 Andreas Jaeger <aj@suse.de>
1274
1275 * oasys.c: Add missing prototypes.
1276
1277 * elf64-alpha.c (elf64_alpha_size_dynamic_sections): Add unused
1278 attribute for parameter.
1279 * elf.c (_bfd_elf_reloc_type_class): Likewise.
1280
1281 * versados.c (get_4): Make static.
1282 (get_10): Make static.
1283 Add missing prototypes.
1284 (process_esd): Fix call to versados_new_symbol.
1285
12862001-08-25 Nick Clifton <nickc@cambridge.redhat.com>
1287
1288 * coff-a29k.c: Add missing prototypes.
1289 * coff-apollo.c: Add missing prototypes.
1290 * coff-arm.c: Add missing prototypes.
1291 * coff-i860.c: Add missing prototypes.
1292 * coff-rs6000.c: Add missing prototypes.
1293 * coff-tic80.c: Add missing prototypes.
1294 * elf-m10200.c: Add missing prototypes.
1295 * elf-m10300.c: Add missing prototypes.
1296 * elf32-arm.h: Add missing prototypes.
1297 * elf32-d10v.c: Add missing prototypes.
1298 * elf32-m32r.c: Add missing prototypes.
1299 * elf32-mcore.c: Add missing prototypes.
1300 * elf32-openrisc.c: Add missing prototypes.
1301 * elf32-sh.c: Add missing prototypes.
1302 * elf32-sparc.c: Add missing prototypes.
1303 * elf32-v850.c: Add missing prototypes.
1304 * elfarm-nabi.c: Add missing prototypes.
1305 * elfarm-oabi.c: Add missing prototypes.
1306
13072001-08-25 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
1308
1309 * elf32-mips.c (elf_mips_abi_name): Return the right ABI string for
1310 E_MIPS_ABI_O64 and E_MIPS_ABI_EABI64
1311
13122001-08-24 H.J. Lu <hjl@gnu.org>
1313
1314 * elf.c (_bfd_elf_merge_sections): Fail if not using an ELF
1315 hash structure.
1316
13172001-08-24 Nick Clifton <nickc@cambridge.redhat.com>
1318
1319 * elf-bfd.h (elf_hash_table): Revert definition.
1320 (is_elf_hash_table): New macro.
1321 * elflink.h (elf_link_add_object_symbols): Test
1322 is_elf_hash_table before accessing ELF only fields in hash
1323 structure.
1324 (elf_link_create_dynamic_sections): Fail if not using an ELF
1325 hash structure.
1326 (elf_add_dynamic_entry): Fail if not using an ELF hash
1327 structure.
1328 (elf_link_record_local_dynamic_symbol): Fail if not using an
1329 ELF hash structure.
1330 (size_dynamic_sections): Fail if not using an ELF hash
1331 structure.
1332 (elf_adjust_dynamic_symbol): Fail if not using an ELF
1333 hash structure.
1334 (elf_bfd_final_link): Fail if not using an ELF hash
1335 structure.
1336
13372001-08-24 H.J. Lu <hjl@gnu.org>
1338
1339 * elf-bfd.h (elf_hash_table): Return NULL if the linker hash
1340 table is not an ELF linker hash table.
1341
1342 * elf.c (_bfd_elf_link_hash_table_init): Set the linker hash
1343 table type to bfd_link_elf_hash_table.
1344
1345 * elfxx-target.h (bfd_elfNN_bfd_link_hash_table_create): Revert
1346 the last change.
1347
1348 * linker.c (_bfd_link_hash_table_init): Set the linker hash
1349 table type to bfd_link_generic_hash_table.
1350
13512001-08-24 Alexandre Oliva <aoliva@redhat.com>
1352
1353 * bfd.c (bfd_alt_mach_code): New function.
1354 * bfd-in2.h: Rebuilt.
1355
13562001-08-24 Alexandre Oliva <aoliva@redhat.com>
1357
1358 * elf-m10300.c (mn10300_elf_relocate_section): Test the right
1359 `type' field in the hash entry when deciding whether to follow a
1360 link.
1361
13622001-08-24 Jakub Jelinek <jakub@redhat.com>
1363
1364 * elflink.h (elf_link_sort_cmp1): Sort RELATIVE relocs first, not
1365 last.
1366 (elf_link_sort_relocs): Adjust accordingly.
1367
1368 * elf64-alpha.c (struct alpha_elf_link_hash_entry): Add reltext flag.
1369 (elf64_alpha_check_relocs): Set it if section this reloc is against
1370 is read-only. Set DF_TEXTREL if a RELATIVE reloc is needed against
1371 read-only section.
1372 (elf64_alpha_calc_dynrel_sizes): Set DF_TEXTREL flag if relocation
1373 is is against read-only section.
1374 (elf64_alpha_size_dynamic_sections): Use DF_TEXTREL flag, don't
1375 check section names.
1376 (elf64_alpha_reloc_type_class): New.
1377 (elf_backend_reloc_type_class): Define.
1378
13792001-08-24 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
1380
1381 * linker.c (_bfd_generic_link_add_archive_symbols): Replace alloca()
1382 by bfd_malloc().
1383
13842001-08-23 Andreas Jaeger <aj@suse.de>
1385
1386 * elf64-x86-64.c (elf64_x86_64_check_relocs): Set DF_TEXTREL if
1387 the reloc is against read-only section.
1388 (elf64_x86_64_size_dynamic_sections): Use DF_TEXTREL flag instead
1389 of looking up section names for DT_TEXTREL.
1390 (elf64_x86_64_reloc_type_class): New.
1391 (elf_backend_reloc_type_class): Define.
1392
13932001-08-23 H.J. Lu <hjl@gnu.org>
1394
1395 * syms.c (bfd_print_symbol_vandf): Add abfd to arg.
1396 * bfd-in2.h (bfd_print_symbol_vandf): Regenerated.
1397
1398 * aoutx.h (NAME(aout,print_symbol)): Pass abfd to
1399 bfd_print_symbol_vandf.
1400 * coffgen.c (coff_print_symbol): Likewise.
1401 * elf.c (bfd_elf_print_symbol): Likewise.
1402 * ieee.c (ieee_print_symbol): Likewise.
1403 * nlmcode.h (nlm_print_symbol): Likewise.
1404 * oasys.c (oasys_print_symbol): Likewise.
1405 * pdp11.c (NAME(aout,print_symbol)): Likewise.
1406 * som.c (som_print_symbol): Likewise.
1407 * srec.c (srec_print_symbol): Likewise.
1408 * tekhex.c (tekhex_print_symbol): Likewise.
1409 * versados.c (versados_print_symbol): Likewise.
1410 * vms.c (vms_print_symbol): Likewise.
1411
1412 * elf.c (_bfd_elf_print_private_bfd_data): Replace fprintf_vma
1413 with bfd_fprintf_vma.
1414 (bfd_elf_print_symbol): Likewise.
1415 * syms.c (bfd_print_symbol_vandf): Likewise.
1416
14172001-08-23 Nick Clifton <nickc@cambridge.redhat.com>
1418
1419 * aoutf1.h (sunos_write_object_contents): Silence compile time
1420 warning.
1421 * libaout.h (N_SET_DYNAMIC): Silence compile time warning.
1422
1423 * bout.c: Add missing function prototypes. Fix formatting.
1424 * coff-z8k.c: Add missing function prototypes. Fix formatting.
1425 * coff-w65.c: Add missing function prototypes. Fix formatting.
1426 * coff-h8500.c: Add missing function prototypes. Fix formatting.
1427 * coff-h8300.c: Add missing function prototypes. Fix formatting.
1428 * coff-tic54x.c: Add missing function prototypes. Fix formatting.
1429 * coff-tic30.c: Add missing function prototypes. Fix formatting.
1430 * coff-m68k.c: Add missing function prototypes. Fix formatting.
1431 * coff-rs6000.c: Add missing function prototypes. Fix formatting.
1432 * coff-sh.c: Add missing function prototypes. Fix formatting.
1433
14342001-08-23 Jakub Jelinek <jakub@redhat.com>
1435
1436 * elf-bfd.h (enum elf_reloc_type_class): New.
1437 (struct elf_backend_data): Add elf_backend_reloc_type_class.
1438 (_bfd_elf_reloc_type_class): New.
1439 * elfxx-target.h (elf_backend_reloc_type_class): Define.
1440 (elfNN_bed): Add elf_backend_reloc_type_class.
1441 * elf.c (_bfd_elf_reloc_type_class): New.
1442 * elf32-i386.c (elf_i386_check_relocs): Set DF_TEXTREL if the reloc
1443 is against read-only section.
1444 (elf_i386_size_dynamic_sections): Use DF_TEXTREL flag instead of
1445 looking up section names for DT_TEXTREL.
1446 (elf_i386_reloc_type_class): New.
1447 (elf_backend_reloc_type_class): Define.
1448 * elf32-sparc.c (elf32_sparc_check_relocs): Set DF_TEXTREL if the
1449 reloc is against read-only section.
1450 (elf32_sparc_size_dynamic_sections): Use DF_TEXTREL flag instead of
1451 looking up section names for DT_TEXTREL.
1452 (elf32_sparc_reloc_type_class): New.
1453 (elf_backend_reloc_type_class): Define.
1454 * elf64-sparc.c (sparc64_elf_check_relocs): Set DF_TEXTREL if the
1455 reloc is against read-only section.
1456 (sparc64_elf_size_dynamic_sections): Use DF_TEXTREL flag instead of
1457 looking up section names for DT_TEXTREL.
1458 (sparc64_elf_reloc_type_class): New.
1459 (elf_backend_reloc_type_class): Define.
1460 * elfxx-ia64.c (struct elfNN_ia64_link_hash_table): Add reltext field.
1461 (elfNN_ia64_hash_table_create): Clear ia64_info.
1462 (get_reloc_section): Set DF_TEXTREL if the reloc is against read-only
1463 section.
1464 (elfNN_ia64_size_dynamic_sections): Use ia64_info->reltext flag
1465 instead of looking up section names for DT_TEXTREL.
1466 (elfNN_ia64_reloc_type_class): New.
1467 (elf_backend_reloc_type_class): Define.
1468 * elflink.h (size_dynamic_sections): Add spare DT_NULL tags.
1469 (struct elf_link_sort_rela): New.
1470 (elf_link_sort_cmp1, elf_link_sort_cmp2, elf_link_sort_relocs): New.
1471 (elf_bfd_final_link): Call elf_link_sort_relocs.
1472 Convert one spare DT_NULL into DT_RELCOUNT resp. DT_RELACOUNT if
1473 necessary.
1474
14752001-08-23 Nick Clifton <nickc@cambridge.redhat.com>
1476
1477 * configure.in (x86-bsdi): No corefile support.
1478 * configure: Regenerate.
1479
14802001-08-22 Nick Clifton <nickc@cambridge.redhat.com>
1481
1482 * coff-stgo32.c (COFF_SECTION_ALIGNMENT_ENTRIES): Add missing
1483 comma.
1484
14852001-08-21 Mark Elbrecht <snowball3@bigfoot.com>
1486
1487 * coff-go32.c: Make DWARF2 sections use an alignment of 0. Set
1488 the alignment of dwarf2 linkonce sections to 0.
1489 * coff-sto32.c: Likewise.
1490
14912001-08-20 Andreas Jaeger <aj@suse.de>
1492
1493 * coff-sparc.c: Add missing prototypes.
1494 * elf32-s390.c: Likewise.
1495 * elf32-i960.c: Likewise.
1496 * aout-target.h: Likewise.
1497
14982001-08-20 H.J. Lu <hjl@gnu.org>
1499
1500 * elf-bfd.h (elf_obj_tdata): Add num_section_syms.
1501 (elf_num_section_syms): New for num_section_syms.
1502
1503 * elf.c (elf_map_symbols): Set num_section_syms.
1504 (_bfd_elf_symbol_from_bfd_symbol): Check num_section_syms for
1505 the section symbol index.
1506
15072001-08-20 Nick Clifton <nickc@cambridge.redhat.com>
1508
1509 * elfxx-target.h (bfd_elfNN_bfd_link_hash_table_create): Never
1510 select the generic has table creator. All elf backends need elf
1511 specific fields in the hash table.
1512
15132001-08-20 Alan Modra <amodra@bigpond.net.au>
1514
1515 * archive.c (offsetof): Remove define.
1516 * elf.c: Likewise.
1517 * oasys.c: Likewise
1518 * sysdep.h (offsetof): Define.
1519
15202001-08-17 Alan Modra <amodra@bigpond.net.au>
1521
1522 * bfd.c (bfd_get_gp_size): Return an unsigned int.
1523 (bfd_set_gp_size): Make param unsigned.
1524 * bfd-in2.h: Regenerate.
1525 * elf32-ppc.c (ppc_elf_add_symbol_hook): Use elf_gp_size rather
1526 than calling bfd_get_gp_size.
1527 * elf64-alpha.c (elf64_alpha_add_symbol_hook): Likewise.
1528 * elfxx-ia64.c (elfNN_ia64_add_symbol_hook): Likewise.
1529
15302001-08-17 Alan Modra <amodra@bigpond.net.au>
1531
1532 * linker.c (default_fill_link_order): Handle four byte fill value.
1533
15342001-08-17 Alan Modra <amodra@bigpond.net.au>
1535
1536 * elf64-sparc.c (sparc64_elf_output_arch_syms): Add missing
1537 prototype.
1538 * nlm32-alpha.c (nlm_alpha_write_external): Fix warning.
1539
1540 * elf64-mips.c (UNUSED_RELOC): Define.
1541 (mips_elf64_howto_table_rel): Use it.
1542 (mips_elf64_howto_table_rela): Here too.
1543 (mips_elf64_write_relocs): Fix signed/unsigned warning.
1544
1545 * coffcode.h (coff_write_object_contents): Add ATTRIBUTE_UNUSED to
1546 silence warning.
1547 * coffgen.c (coff_print_symbol): Fix warnings.
1548 (coff_find_nearest_line): Likewise.
1549 * cofflink.c (_bfd_coff_link_input_bfd): Likewise.
1550 * coff-alpha.c (alpha_convert_external_reloc): Likewise.
1551 * format.c (bfd_check_format_matches): Likewise.
1552 (bfd_set_format): Likewise.
1553 * coff-ia64.c: Add missing prototypes.
1554 * elf64-alpha.c (struct alpha_elf_link_hash_entry): Make addend
1555 signed to silence warnings.
1556 (elf64_alpha_relocate_section): Likewise.
1557 (elf64_alpha_find_reloc_at_ofs): Fix warnings.
1558 (elf64_alpha_add_symbol_hook): Likewise.
1559 (elf64_alpha_final_link): Likewise.
1560 (elf64_alpha_relax_section): Remove redundant assign to info.gotent.
1561 (elf64_alpha_merge_gots): Add ATTRIBUTE_UNUSED to unused args.
1562 (elf64_alpha_size_got_sections): Likewise.
1563 * elfxx-ia64.c: Add missing prototypes.
1564 (elfNN_ia64_relocate_section): Fix warning.
1565 (elfNN_ia64_unwind_entry_compare): Make params const.
1566
15672001-08-17 Alan Modra <amodra@bigpond.net.au>
1568
1569 * config.bfd (targ64_selvecs): New.
1570 <powerpc-*-aix* entry>: Use it here instead of ineffectual #ifdef.
1571
1572 * bfd-in.h (BFD_VERSION): Remove wrong comment.
1573 (BFD_DEFAULT_TARGET_SIZE): New.
1574 (BFD_ARCH_SIZE): Comment.
1575 * configure.in (target_size): New. Set instead of target64 in
1576 selvecs case statement. Set target64 from it.
1577 (bfd_default_target_size): New. Set from taget_size. AC_SUBST.
1578 * bfd-in2.h: Regenerate.
1579 * configure: Regenerate.
1580
15812001-08-17 Alan Modra <amodra@bigpond.net.au>
1582
1583 * bfd.c (enum bfd_error): Add bfd_error_wrong_object_format.
1584 (bfd_errmsgs): Add corresponding message.
1585 * archive.c (bfd_generic_archive_p): Don't release bfd_ardata when
1586 finding an archive that contains different format object files.
1587 Return bfd_error_wrong_object_format for this case.
1588 * format.c: Formatting fixes. s/CONST/const/.
1589 (bfd_check_format_matches): Accept archives that give
1590 bfd_error_wrong_object_format if no full match is found. Tidy
1591 code handling matching_vector. Don't return a pointer to freed
1592 memory in `matching'. Handle ambiguous matches as for partial
1593 archive matches.
1594 * bfd-in2.h: Regenerate.
1595
15962001-08-15 Alan Modra <amodra@bigpond.net.au>
1597
1598 * libieee.h (common_header_type): Add last_byte field.
1599
1600 * ieee.c: Add missing prototypes. Some format fixes.
1601 (struct output_buffer_struct): Move for availability to prototypes.
1602 (ieee_part_after): New function.
1603 (ieee_slurp_debug): Use it here.
1604 (ieee_seek): Pass in ieee_data_struct rather than bfd. Use
1605 ieee_part_after to set last_byte to one past end of current part.
1606 Update callers.
1607 (ieee_pos): Pass in ieee_data_struct rather than bfd.
1608 Update callers.
1609 (parse_expression): Don't go beyond the end of the current part.
1610 (ieee_slurp_external_symbols): Correct type passed to read_2bytes.
1611 (ieee_get_symtab_upper_bound, ieee_get_symtab,
1612 ieee_get_symbol_info, ieee_print_symbol, ieee_new_section_hook,
1613 ieee_get_reloc_upper_bound, ieee_canonicalize_reloc, block,
1614 ieee_set_section_contents, ieee_write_object_contents,
1615 ieee_make_empty_symbol): Make static.
1616 (ieee_archive_p): Correct comments regarding bfd_read.
1617 (ieee_object_p): Similarly.
1618 (ieee_mkobject): Move it. Clear output_ptr_start, output_ptr,
1619 output_ptr_end, input_ptr_start, input_ptr, input_ptr_end,
1620 input_bfd, output_bfd, output_buffer.
1621 (do_as_repeat): Write out ieee_set_current_pc_enum value as for
1622 do_with_relocs, ie. as a symbol for relocatable files.
1623 (ieee_vec): Add comments showing functions referenced by macros.
1624
16252001-08-14 Nick Clifton <nickc@cambridge.redhat.com>
1626
1627 * aout-tic30.c: Add missing prototypes. Fix formatting.
1628 * aout-ns32k.c: Add missing prototypes. Fix formatting.
1629 * peXXigen.c: Add missining prototypes. Fix formatting.
1630 * aout-adobe.c: Add missining prototypes. Fix formatting.
1631
16322001-08-13 Nick Clifton <nickc@cambridge.redhat.com>
1633
1634 * elf32-v850.c: Add missing function prototypes.
1635 Fix some formatting.
1636
1637 * cpu-v850.c: Add missing function prototype.
1638 Fix some formatting.
1639
16402001-08-11 Nick Clifton <nickc@cambridge.redhat.com>
1641
1642 * elf-bfd.h (struct elf_backend_data): Add new fields
1643 'elf_backend_sprintf_vma' and 'elf_backend_fprintf_vma'.
1644 (bfd_elf_sprintf_vma): Rename function prototype to
1645 '_bfd_elf_sprintf_vma'.
1646 (bfd_elf_fprintf_vma): Rename function prototype to
1647 '_bfd_elf_fprintf_vma'.
1648 * bfd.c (bfd_sprintf_vma): Do not invoke bfd_elf_sprintf_vma
1649 directly, instead indirect via the elf_backend_data structure.
1650 (bfd_fprintf_vma): Do not invoke bfd_elf_fprintf_vma directly,
1651 instead indirect via the elf_backend_data structure.
1652 * elf.c (bfd_elf_sprintf_vma): Rename to _bfd_elf_sprintf_vma.
1653 (bfd_elf_fprintf_vma): Rename to _bfd_elf_fprintf_vma.
1654 * elfxx-target.h (elf_backend_sprintf_vma): Initialise if not
1655 already defined.
1656 (elf_backend_fprintf_vma): Initialise if not already defined.
1657 (struct elf_backend_data): Initialise the
1658 elf_backend_sprintf_vma and elf_backend_fprintf_vma fields.
1659
16602001-08-10 Andreas Jaeger <aj@suse.de>
1661
1662 * elf64-sparc.c: Add missing prototypes.
1663 * elf32-cris.c: Likewise.
1664 * elf32-i370.c: Likewise.
1665 * elf64-hppa.c: Likewise.
1666 * elf64-s390.c: Likewise.
1667
16682001-08-10 Andreas Jaeger <aj@suse.de>
1669
1670 * elf64-x86-64.c (elf64_x86_64_elf_object_p): Make static.
1671 Add prototypes where needed.
1672
16732001-08-10 H.J. Lu <hjl@gnu.org>
1674
1675 * bfd.c (bfd_sprintf_vma): Fix a typo in the last change.
1676 (bfd_fprintf_vma): Likewise.
1677
16782001-08-10 H.J. Lu <hjl@gnu.org>
1679
1680 * bfd.c (bfd_sprintf_vma): Don't return void.
1681 (bfd_fprintf_vma): Likewise.
1682
16832001-08-10 Andreas Jaeger <aj@suse.de>
1684
1685 * configure.in: Add -Wstrict-prototypes and -Wmissing-prototypes
1686 to build warnings.
1687 * configure: Regenerate.
1688
16892001-08-10 Alan Modra <amodra@bigpond.net.au>
1690
1691 * elf.c (bfd_elf_sprintf_vma): Add ATTRIBUTE_UNUSED to quiet
1692 warning if not BFD64. Add braces so emacs auto format works.
1693 (bfd_elf_fprintf_vma): Likewise.
1694
1695 * libxcoff.h (struct xcoff_backend_data_rec): Constify src param
1696 of _xcoff_swap_ld*.
1697 * coff-rs6000.c (xcoff_swap_ldhdr_in): Modify type of external
1698 param to agree with libxcoff.h.
1699 (xcoff_swap_ldhdr_out): Likewise.
1700 (xcoff_swap_ldsym_in): Likewise.
1701 (xcoff_swap_ldsym_out): Likewise.
1702 (xcoff_swap_ldrel_in): Likewise.
1703 (xcoff_swap_ldrel_out): Likewise.
1704 (xcoff_create_csect_from_smclas): Likewise.
1705 * coff64-rs6000.c: Add missing prototypes.
1706 (xcoff64_swap_ldhdr_in): Modify type of external param to agree
1707 with libxcoff.h.
1708 (xcoff64_swap_ldhdr_out): Likewise.
1709 (xcoff64_swap_ldsym_in): Likewise.
1710 (xcoff64_swap_ldsym_out): Likewise.
1711 (xcoff64_swap_ldrel_in): Likewise.
1712 (xcoff64_swap_ldrel_out): Likewise.
1713 (xcoff64_ppc_relocate_section): Make static.
1714 (xcoff64_slurp_armap): Likewise.
1715 (xcoff64_archive_p): Likewise.
1716 (xcoff64_openr_next_archived_file): Likewise.
1717 (xcoff64_sizeof_headers): Likewise.
1718 (xcoff64_is_lineno_count_overflow): Likewise.
1719 (xcoff64_is_reloc_count_overflow): Likewise.
1720 (xcoff64_loader_symbol_offset): Likewise.
1721 (xcoff64_loader_reloc_offset): Likewise.
1722 * elf64-gen.c: Add missing prototypes.
1723
17242001-08-09 H.J. Lu <hjl@gnu.org>
1725
1726 * elf.c (bfd_elf_sprintf_vma): Check ELFCLASS64 only in BFD64.
1727 (bfd_elf_fprintf_vma): Likewise.
1728
17292001-08-09 H.J. Lu <hjl@gnu.org>
1730
1731 * bfd-in.h (bfd_elf_sprintf_vma, bfd_elf_fprintf_vma): Moved
1732 to ...
1733 * elf-bfd.h: Here.
1734 * bfd-in2.h: Regenerated.
1735
17362001-08-09 H.J. Lu <hjl@gnu.org>
1737
1738 * bfd-in.h (bfd_sprintf_vma): New prototype.
1739 (bfd_fprintf_vma): Likewise.
1740 (bfd_elf_sprintf_vma): Likewise.
1741 (bfd_elf_fprintf_vma): Likewise.
1742 (bfd_printf_vma): New. Defined with bfd_fprintf_vma.
1743 * bfd-in2.h: Regenerated.
1744
1745 * bfd.c (bfd_sprintf_vma): New. Defined.
1746 (bfd_fprintf_vma): Likewise.
1747
1748 * elf.c (bfd_elf_sprintf_vma): New. Defined.
1749 (bfd_elf_fprintf_vma): Likewise.
1750
17512001-08-09 Alan Modra <amodra@bigpond.net.au>
1752
1753 * coff-rs6000.c: Add missing prototypes.
1754 (xcoff_ppc_relocate_section, xcoff_is_lineno_count_overflow,
1755 xcoff_is_reloc_count_overflow, xcoff_loader_symbol_offset,
1756 xcoff_loader_reloc_offset): Make static.
1757 * dwarf1.c: Add missing prototypes.
1758 * dwarf2.c: Add missing prototypes.
1759 (struct abbrev_info): Move definition.
1760 (struct attr_abbrev, ABBREV_HASH_SIZE, ATTR_ALLOC_CHUNK): Likewise.
1761 * elf.c: Add missing prototypes.
1762 * elf32-gen.c: Likewise.
1763 * elf32-i386.c: Likewise.
1764 * elf32-ppc.c: Likewise.
1765 (ppc_elf_sort_rela): Use PTR instead of "void *".
1766 * elflink.h: Add missing prototypes. Formatting fixes.
1767 * merge.c: Add missing prototypes.
1768 (last4_eq): Use PTR instead of "void *".
1769 (last_eq): Likewise.
1770 * syms.c: Add missing prototypes.
1771
17722001-08-09 Nick Clifton <nickc@cambridge.redhat.com>
1773
1774 * bfd.c: Fix formatting.
1775 * bfd-in2.h: Regenerate.
1776
17772001-08-09 Nick Clifton <nickc@cambridge.redhat.com>
1778
1779 * elf32-arc.c (R_ARC_B22_PCREL): Change 'partial_inplace' to
1780 true (this target uses REL relocations) and 'pcrel_offset' to
1781 false (the PC is implied, not stored in the offset).
1782
17832001-08-08 Alan Modra <amodra@bigpond.net.au>
1784
1785 1999-10-19 Linus Nordberg <linus@swox.se>
1786 * elf-bfd.h (struct elf_backend_data): Add want_got_sym.
1787 * elfxx-target.h (elf_backend_want_got_sym): Define.
1788 (elfNN_bed): Add elf_backend_want_got_sym.
1789 * elflink.c (_bfd_elf_create_got_section): Define
1790 _GLOBAL_OFFSET_TABLE_ only if bed->want_got_sym.
1791
17922001-08-08 Alexandre Oliva <aoliva@redhat.com>
1793
1794 * dwarf2.c (struct dwarf2_debug): Add sec, sec_info_ptr and syms.
1795 (find_rela_addend): New function.
1796 (parse_comp_unit): Call it to find the abbrev offset addend.
1797 (_bfd_dwarf2_find_nearest_line): Initialize and maintain the new
1798 members of dwarf2_debug as debugging information is read.
1799
18002001-08-07 Nick Clifton <nickc@cambridge.redhat.com>
1801
1802 * coff-sh.c (sh_coff_reloc_type_lookup): Provide for sh-coff
1803 targets as well as sh-pe.
1804
18052001-08-03 Ben Harris <bjh21@netbsd.org>
1806
1807 * elf32-arm.h (elf32_arm_final_link_relocate): Include offset of
1808 reloc from start of section when computing value for R_ARM_REL32
1809 reloc.
1810
18112001-08-03 Alan Modra <amodra@bigpond.net.au>
1812
1813 From H.J. Lu <hjl@gnu.org>
1814 * elf32-i386.c (allocate_plt_and_got_and_discard_relocs): Don't
1815 keep relocs for undefined syms if there are no dynamic sections in
1816 executable.
1817 * elf32-hppa.c (allocate_plt_and_got_and_discard_relocs): Likewise.
1818
18192001-08-02 Paul Sokolovsky <paul.sokolovsky@technologist.com>
1820
1821 * cofflink.c (coff_link_check_ar_symbols): also search for
1822 __imp__symbol as well as _symbol.
1823 * linker.c (_bfd_generic_link_add_archive_symbols): also
1824 search for __imp__symbol as well as _symbol.
1825
18262001-08-01 Adam Nemet <anemet@lnxw.com>
1827
1828 * elf.c (elf_sort_sections): Return zero only as the last step.
1829
18302001-08-01 Nick Clifton <nickc@cambridge.redhat.com>
1831
1832 * config.bfd (arm-vxworks): Change name of define from VXWORKS to
1833 ARM_COFF_BUGFIX.
1834 (arm-epoc-pe): Define ARM_COFF_BUGFIX.
1835 coff-arm.c (coff_arm_relocate_section): Replace VXWORKS with
1836 ARM_COFF_BUGFIX.
1837
18382001-07-30 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1839
1840 * libecoff.h (_bfd_ecoff_styp_to_sec_flags): Changed return type
1841 to match corresponding bfd_coff_backend data member.
1842
18432001-07-24 Alan Modra <amodra@bigpond.net.au>
1844
1845 * Makefile.am: Update dependencies with "make dep-am".
1846 * Makefile.in: Regenerate
1847
18482001-07-15 H.J. Lu <hjl@gnu.org>
1849
1850 * Makefile.am (po/SRC-POTFILES.in): Use tmp.src instead of tmp.
1851 (po/BLD-POTFILES.in): Use tmp.bld instead of tmp.
1852 * Makefile.in: Regenerate.
1853
18542001-07-11 H.J. Lu <hjl@gnu.org>
1855
1856 * elf64-alpha.c (elf64_alpha_check_relocs): Set the ALLOC|LOAD
1857 flags when creating the reloc section if the ALLOC flag in the
1858 source section is set.
1859
18602001-07-11 Steve Ellcey <sje@cup.hp.com>
1861
1862 * reloc.c (bfd_reloc_code_type): Add IA64 relocs
1863 BFD_RELOC_IA64_LTOFF_FPTR32MSB and BFD_RELOC_IA64_LTOFF_FPTR32LSB
1864 * bfd-in2.h: Regenerate.
1865 * libbfd.h: Regenerate.
1866 * elfxx-ia64.c (ia64_howto_table): Define how to handle
1867 new relocations.
1868 (elfNN_ia64_reloc_type_lookup): Handle new relocations.
1869 (elfNN_ia64_check_relocs): Likewise.
1870 (elfNN_ia64_install_value): Likewise.
1871 (elfNN_ia64_relocate_section): Likewise.
1872
18732001-07-11 Jakub Jelinek <jakub@redhat.com>
1874
1875 * elf32-sparc.c (_bfd_sparc_elf_howto_table): Remove support for
1876 R_SPARC_UA64.
1877 (elf32_sparc_check_relocs): Likewise.
1878 Only create .rela section for alloced sections in shared libraries.
1879 (elf32_sparc_relocate_section): Likewise.
1880 Remove redundant check.
1881 Optimize unaligned reloc usage.
1882 * elf64-sparc.c (sparc64_elf_relocate_section): Remove redundant
1883 check.
1884
18852001-07-11 H.J. Lu <hjl@gnu.org>
1886
1887 * elf64-alpha.c (elf64_alpha_check_relocs): Only use the same
1888 ALLOC|LOAD flags as the source section for debugging sections
1889 when creating the reloc section.
1890
18912001-07-05 Jim Wilson <wilson@redhat.com>
1892
1893 * linker.c (_bfd_generic_link_add_one_symbol, case BIG): Use
1894 the section of the bigger symbol.
1895
1896 * syms.c (bfd_is_local_label): Return false if BSF_SECTION_SYM.
1897
18982001-07-05 Nick Clifton <nickc@cambridge.redhat.com>
1899
1900 * peicode.h (coff_swap_scnhdr_in): For sections containing
1901 uninitialised data, only set their size to s_paddr if this does
1902 not reset their size to zero. MS's latest compilers will set
1903 s_paddr to zero.
1904
19052001-07-04 H.J. Lu <hjl@gnu.org>
1906
1907 * bfd/elf32-mips.c (_bfd_mips_elf_final_write_processing):
1908 Handle bfd_mach_mips4400, bfd_mach_mips4600 and
1909 bfd_mach_mips5000.
1910
19112001-07-03 Mark Elbrecht <snowball3@softhome.net>
1912
1913 * bfd.c (bfd_get_sign_extend_vma): Support DJGPP COFF targets.
1914
1915 * cofflink.c (_bfd_coff_link_input_bfd): Skip section symbols from
1916 sections being discarded.
1917
19182001-06-30 Alan Modra <amodra@bigpond.net.au>
1919
1920 * elfcore.h (elf_core_file_p): Call bfd_section_from_phdr directly
1921 instead of _bfd_elfcore_section_from_phdr.
1922 * elf-bfd.h (_bfd_elfcore_section_from_phdr): Remove.
1923 * elf.c (_bfd_elfcore_section_from_phdr): Remove.
1924 (_bfd_elfcore_make_pseudosection): Expedite tail-call.
1925 (elfcore_grok_prstatus): Likewise.
1926 (elfcore_grok_lwpstatus): Likewise.
1927 (bfd_get_elf_phdr_upper_bound): Likewise.
1928 (elfcore_make_note_pseudosection): Formatting.
1929 (_bfd_elfcore_strndup): Formatting.
1930 * elf32-mips.c (mips_elf_sym_is_global): Formatting.
1931 (_bfd_elf32_mips_grok_prstatus): Expedite tail-call.
1932
19332001-06-29 Daniel Jacobowitz <drow@mvista.com>
1934
1935 * elf-bfd.h: Add prototypes for _bfd_elfcore_make_pseudosection
1936 and _bfd_elfcore_strndup.
1937 (struct elf_backend_data): Add elf_backend_grok_prstatus
1938 and elf_backend_grok_psinfo.
1939 * elf.c (_bfd_elfcore_make_pseudosection): New function.
1940 (elfcore_grok_prstatus): Use it.
1941 (elfcore_make_note_pseudosection): Likewise.
1942 (elfcore_strndup): Rename to...
1943 (_bfd_elfcore_strndup): Here, and make global.
1944 (elfcore_grok_psinfo): Use _bfd_elfcore_strndup.
1945 (elfcore_grok_note): Call elf_backend_grok_prstatus
1946 and elf_backend_grok_psinfo if available.
1947 * elf32-mips.c (_bfd_elf32_mips_grok_prstatus): New function.
1948 (_bfd_elf32_mips_grok_psinfo): New function.
1949 (elf_backend_grok_prstatus): Define.
1950 (elf_backend_grok_psinfo): Define.
1951 * elfxx-target.h (elf_backend_grok_prstatus): Default to NULL.
1952 (elf_backend_grok_psinfo): Likewise.
1953 (elfNN_bed): Include elf_backend_grok_prstatus and
1954 elf_backend_grok_psinfo.
1955
19562001-06-29 H.J. Lu <hjl@gnu.org>
1957
1958 * elf32-hppa.c (elf32_hppa_finish_dynamic_sections): Check if
1959 hplink->sgot is NULL before filling GOT. Check if hplink->splt
1960 is NULL before filling PLT.
1961
19622001-06-29 Alan Modra <amodra@bigpond.net.au>
1963
1964 * elflink.h (elf_link_output_extsym): Revert 1999-04-10.
1965
19662001-06-27 Alan Modra <amodra@bigpond.net.au>
1967
1968 * elf32-hppa.c (elf32_hppa_check_relocs): Don't make syms dynamic
1969 here..
1970 (elf32_hppa_adjust_dynamic_symbol): ..nor here..
1971 (allocate_plt_and_got_and_discard_relocs): .. instead do so here
1972 after gc has run.
1973
1974 * elf32-hppa.c (RELATIVE_DYNAMIC_RELOCS): Delete.
1975 (IS_ABSOLUTE_RELOC): Define.
1976 (elf32_hppa_link_hash_entry): Always include reloc_entries field.
1977 (hppa_link_hash_newfunc): Always init it.
1978 (elf32_hppa_check_relocs): Mark symbols as ELF_LINK_NON_GOT_REF to
1979 create COPY relocs only when the reloc is in a read-only section.
1980 Instead, allocate space for a dynamic reloc to reference the
1981 library symbol directly. Keep track of space we allocate using
1982 relocs_entries.
1983 (hppa_discard_copies): Delete, and move code to..
1984 (allocate_plt_and_got): ..here. Rename to
1985 allocate_plt_and_got_and_discard_relocs. Remove unneeded dynamic
1986 relocs for non-shared link.
1987 (elf32_hppa_size_dynamic_sections): Update calls to above.
1988 (elf32_hppa_relocate_section): Write out the dynamic relocs used
1989 in lieu of COPY relocs.
1990
1991 * elf32-i386.c (elf_i386_check_relocs): Don't make syms dynamic
1992 here..
1993 (elf_i386_adjust_dynamic_symbol): ..nor here..
1994 (allocate_plt_and_got_and_discard_relocs): .. instead do so here
1995 after gc has run.
1996 (elf_i386_size_dynamic_sections): Fix a comment.
1997 (elf_i386_relocate_section <R_386_32, R_386_PC32>): Rearrange code
1998 involved in writing reloc out.
1999
20002001-06-25 Alan Modra <amodra@bigpond.net.au>
2001
2002 * elf32-i386.c (elf_i386_check_relocs <R_386_32, R_386_PC32>):
2003 Ensure syms are dynamic if we might be emitting a reloc.
2004 (allocate_plt_and_got_and_discard_relocs): Don't discard relocs
2005 for undefweak or undefined syms..
2006 (elf_i386_relocate_section <R_386_32, R_386_PC32>): .. and emit.
2007
2008 * elf32-i386.c (allocate_plt_and_got_and_discard_relocs): Discard
2009 relocs without ELF_LINK_HASH_DEF_DYNAMIC set.
2010 (elf_i386_relocate_section <R_386_32, R_386_PC32>): Remove
2011 redundant bfd_link_hash_defined, bfd_link_hash_defweak test.
2012
20132001-06-24 H.J. Lu <hjl@gnu.org>
2014
2015 * cpu-i960.c (scan_960_mach): Don't modify const char *. Use
2016 strncasecmp/strcasecmp instead of strncmp/strcmp.
2017
20182001-06-23 H.J. Lu <hjl@gnu.org>
2019
2020 * elf32-i386.c (elf_i386_relocate_section <R_386_32, R_386_PC32>):
2021 Check ELF_LINK_HASH_DEF_DYNAMIC to see if a symbol is not defined
2022 in the regular object file and treat the weak definition as
2023 the normal one.
2024
20252001-06-23 Alan Modra <amodra@bigpond.net.au>
2026
2027 * elf32-i386.c (elf_i386_relocate_section <R_386_GOT32>): Tighten
2028 unresolved_reloc test to exclude cases where we use "relocation"
2029 before setting it to point into the .got. Reinstate fudge for
2030 unresolved relocs in debugging sections.
2031
2032 * elf32-i386.c (elf_i386_relocate_section): Replace ugly
2033 complicated tests for unresolvable relocs with a simple direct
2034 scheme using "unresolved_reloc" var.
2035
2036 * elf32-i386.c (struct elf_i386_pcrel_relocs_copied): Rename to
2037 elf_i386_dyn_relocs. Update comment.
2038 (struct elf_i386_link_hash_entry): Rename pcrel_relocs_copied to
2039 dyn_relocs.
2040 (elf_i386_adjust_dynamic_symbol): Remove a BFD_ASSERT, change
2041 others to aborts.
2042 (allocate_plt_and_got_and_discard_relocs): Replace BFD_ASSERT with
2043 abort.
2044 (elf_i386_size_dynamic_sections): Likewise.
2045 (elf_i386_finish_dynamic_symbol): Likewise.
2046 (elf_i386_finish_dynamic_sections): Likewise.
2047 (elf_i386_relocate_section): Likewise. Tidy R_386_GOT32 and error
2048 handling code.
2049
2050 Avoid creating COPY relocs if possible.
2051 * elf32-i386.c (elf_i386_check_relocs): Tweak condition under
2052 which .got created. Mark symbols used by R_386_32 and R_386_PC32
2053 relocs as ELF_LINK_NON_GOT_REF to create COPY relocs only when the
2054 reloc is in a read-only section. Instead, allocate space for a
2055 dynamic reloc to reference the library symbol directly. Keep
2056 track of space we allocate using pcrel_relocs_copied.
2057 (discard_copies): Delete, and move code to ..
2058 (allocate_plt_and_got): ..here. Rename to
2059 allocate_plt_and_got_and_discard_relocs. Remove unneeded dynamic
2060 relocs for non-shared link.
2061 (elf_i386_size_dynamic_sections): Update calls to above functions.
2062 (elf_i386_relocate_section): Write out the dynamic relocs. Add
2063 more ugly logic to avoid "unresolvable relocation" error. Use
2064 htab shortcut in place of elf_hash_table macro.
2065 (elf_i386_finish_dynamic_sections): Allow that dynamic .got may
2066 not always be created now.
2067
20682001-06-20 Bo Thorsen <bo@suse.co.uk>
2069
2070 * elf64-x86-64.c (elf64_x86_64_relocate_section): Fix linking of
2071 shared libraries.
2072
20732001-06-18 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
2074
2075 * configure.host (mips64-*-linux): Reformat.
2076
20772001-06-21 Alan Modra <amodra@bigpond.net.au>
2078
2079 * elf32-hppa.c (elf32_hppa_size_dynamic_sections): Always
2080 allocate local .got space. Use shortcuts from hash table for .got
2081 and .plt rather than comparing section names.
2082 (elf32_hppa_check_relocs): Use local_plt_refcounts var rather than
2083 adjusting index into local_got_refcounts to document what we are
2084 really doing.
2085 (elf32_hppa_relocate_section): Similarly for local_plt_offsets.
2086 Tidy .got and .plt error checking.
2087
20882001-06-20 Catherine Moore <clm@redhat.com>
2089
2090 * elf-bfd.h (struct elf_backend_data):
2091 elf_backend_emit_relocs: New field: Function for emitting
2092 relocs.
2093 elf_backend_count_relocs: New field: Function for determining
2094 the number of relocs to be emitted.
2095 * elfxx-target.h: Provide default (NULL) values for
2096 elf_backend_emit_relocs and elf_backend_count_relocs.
2097 * elflink.h (elf_link_size_reloc_section): Make the hash table
2098 big enough to hold the relocs counted by either reloc_count or
2099 o->reloc_count.
2100 (elf_bfd_final_link) emit_relocs: New boolean, set if relocs
2101 should be emitted, either because of a command line option
2102 stored in the info structure or because the target provides a
2103 special reloc emitting function.
2104 If the target provides a reloc counting function use it,
2105 unless performing a relocatable link or emitting all relocs.
2106 Also set the SEC_RELOC flag on any output section which will
2107 contain relocs.
2108 (elf_link_input_bfd): emit_relocs: New boolean, set if relocs
2109 should be emitted, either because of a command line option
2110 stored in the info structure or because the target provides a
2111 special reloc emitting function.
2112 If the target provides a reloc emitting function, use it,
2113 unless performing a relocatable link or emitting all relocs.
2114
21152001-06-20 H.J. Lu <hjl@gnu.org>
2116
2117 * elf32-i386.c (elf_i386_size_dynamic_sections): Always
2118 allocate local .got space.
2119
21202001-06-19 Andreas Jaeger <aj@suse.de>
2121
2122 * elf64-x86-64.c (elf64_x86_64_relocate_section): Fix creation of
2123 dynamic symbols.
2124
21252001-06-18 Hans-Peter Nilsson <hp@axis.com>
2126
2127 * elflink.h (struct elf_assign_sym_version_info): Remove member
2128 export_dynamic. All users changed to use info member.
2129 NAME(bfd_elf,size_dynamic_sections)): Remove parameter
2130 export_dynamic, instead use member in parameter info.
2131 * bfd-in.h (bfd_elf32_size_dynamic_sections,
2132 bfd_elf64_size_dynamic_sections): Update prototype.
2133 * bfd-in2.h: Regenerate.
2134
21352001-06-18 H.J. Lu <hjl@gnu.org>
2136
2137 * elflink.h (elf_info_failed): Add a new field, verdefs.
2138 (NAME(bfd_elf,size_dynamic_sections): Pass verdefs to
2139 elf_export_symbol.
2140 (elf_export_symbol): Check eif->verdefs to decide if a symbol
2141 should be exported.
2142
21432001-06-17 H.J. Lu <hjl@gnu.org>
2144
2145 * elf32-mips.c (mips_elf_link_hash_entry): Add a new field,
2146 readonly_reloc, to record if a relocation in the .rel.dyn
2147 section is against a read-only section.
2148 (mips_elf_link_hash_newfunc): Initialize the readonly_reloc
2149 field to false.
2150 (_bfd_mips_elf_check_relocs): Record if there is a relocation
2151 in the .rel.dyn section against a read-only section by setting
2152 DF_TEXTREL or readonly_reloc.
2153 (_bfd_mips_elf_copy_indirect_symbol): Copy readonly_reloc if
2154 it is true.
2155 (_bfd_mips_elf_adjust_dynamic_symbol): Record DF_TEXTREL if
2156 there is a relocation in the .rel.dyn section against a
2157 read-only section.
2158 (_bfd_mips_elf_size_dynamic_sections): Set DT_TEXTREL if
2159 DF_TEXTREL is set.
2160
21612001-06-12 Nick Clifton <nickc@cambridge.redhat.com>
2162
2163 * coffcode.h (styp_flags_to_sec_flags): Change to a boolean
2164 function. Move flagword result into parameter list. Remove
2165 comment about setting bfd_error_handler to intercept failure
2166 results.
2167 * coffgen.c (make_a_section_from_file): Examine result of
2168 calling bfd_coff_styp_to_sec_flags and pass a failure back to
2169 caller.
2170 * ecoff.h (styp_flags_to_sec_flags): Change to a boolean
2171 function. Move flagword result into parameter list.
2172 * libcoff.h: Regenerate.
2173 * libecoff.h: Regenerate.
2174
21752001-06-13 Nick Clifton <nickc@cambridge.redhat.com>
2176
2177 * aoutx.h (adjust_z_magic): Only pad the tesxt section if the data
2178 section is going to follow it.
2179
21802001-06-12 Catherine Moore <clm@redhat.com>
2181
2182 * elflink.h (elf_gc_propagate_vtable_entries): Replace FILE_ALIGN
2183 with the file_align entry from elf_backend_data.
2184 (elf_gc_smash_unused_vtentry_relocs): Likewise.
2185 (elf_gc_record_vtentry): Likewise.
2186
21872001-06-10 Alan Modra <amodra@bigpond.net.au>
2188
2189 * elflink.h: Whitespace changes.
2190 (elf_link_read_relocs_from_section): Use "unsigned int" iterator
2191 rather than "unsigned char".
2192 (elf_link_output_relocs): Likewise.
2193 (elf_link_input_bfd): Likewise.
2194 (elf_reloc_link_order): LIkewise.
2195 * elf.c: s/CONST/const/. Whitespace changes.
2196 * elf32-mips.c: Formatting fix.
2197
2198 * Makefile.am (SOURCE_HFILES): Include xcoff-target.h, remove xcoff.h.
2199 * Makefile.in: Regenerate.
2200 * po/Make-in: Remove trailing tab.
2201
22022001-06-09 Philip Blundell <philb@gnu.org>
2203
2204 * elf32-arm.h (elf32_arm_plt0_entry): Correct error in last
2205 change.
2206 (elf32_arm_plt_entry): Likewise.
2207
22082001-06-08 H.J. Lu <hjl@gnu.org>
2209
2210 * elf.c (swap_out_syms): Keep names for global section symbols.
2211
22122001-06-07 H.J. Lu <hjl@gnu.org>
2213
2214 * config.bfd: Put back ecoff for Linux/mips. Firmwares on some
2215 MIPS-based machines need it.
2216
22172001-06-07 H.J. Lu <hjl@gnu.org>
2218
2219 * elf32-mips.c (_bfd_mips_elf_object_p): Set the bad symtab
2220 for SGI only.
2221
2222 * config.bfd: Remove ecoff from Linux/mips.
2223
22242001-06-07 Andreas Jaeger <aj@suse.de>
2225
2226 * elf64-x86-64.c (elf64_x86_64_finish_dynamic_symbol): Add an
2227 assertion.
2228 (elf64_x86_64_check_relocs): Fix VTENTRY relocation; set an
2229 alignment of 8 for .rela sections; handle further relocations.
2230
22312001-06-06 Christian Groessler <cpg@aladdin.de>
2232
2233 * coff-z8k.c: Fix formatting.
2234 Fix howtos: howto->size was always 1.
2235
22362001-06-05 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
2237
2238 * configure.host (mips64*-*-linux*): Define.
2239
22402001-06-05 Alan Modra <amodra@bigpond.net.au>
2241
2242 * elf32-i386.c (elf_i386_discard_copies): Rename to
2243 discard_copies, and use elf_link_hash_entry arg rather than
2244 elf_i386_link_hash_entry.
2245 (elf_i386_link_hash_traverse): Delete.
2246 (elf_i386_size_dynamic_sections): Adjust call to discard_copies.
2247 Tidy sizing of dynamic sections.
2248 (elf_i386_check_relocs <R_386_32, R_386_PC32>): Reference count
2249 possible .plt entries.
2250 (elf_i386_gc_sweep_hook): Likewise.
2251 (elf_i386_adjust_dynamic_symbol): Discard .plt entries for
2252 everything with plt.refcount <= 0.
2253
2254 * elf32-i386.c (elf_i386_check_relocs): Don't allocate .got and
2255 .relgot space here.
2256 (elf_i386_gc_sweep_hook): ..and no need to deallocate here..
2257 (elf_i386_adjust_dynamic_symbol): ..and don't allocate .plt and
2258 .rel.plt here..
2259 (allocate_plt_and_got): ..instead do it all here. New function.
2260 (elf_i386_size_dynamic_sections): Allocate local .got space and
2261 call allocate_plt_and_got. No need to zap .relgot if not dynamic.
2262 (bfd_elf32_bfd_final_link): Delete. (ie. use regular final link
2263 rather than gc variety).
2264 (WILL_CALL_FINISH_DYNAMIC_SYMBOL): Define.
2265 (elf_i386_relocate_section): Use it here and correct handling of
2266 R_386_GOT32. Provide section and offset for "unresolvable
2267 relocation" error message.
2268 (elf_i386_finish_dynamic_symbol): Correct handling of R_386_GOT32.
2269
2270 * elf32-i386.c (struct elf_i386_link_hash_table): Add sgot,
2271 sgotplt, srelgot, splt, srelplt, sdynbss, srelbss fields.
2272 (elf_i386_link_hash_table_create): Init them.
2273 (create_got_section): New function.
2274 (elf_i386_create_dynamic_sections): New function.
2275 (elf_backend_create_dynamic_sections): Set to above.
2276 (elf_i386_check_relocs): Use shortcuts from hash table rather than
2277 calling bfd_get_section_by_name.
2278 (elf_i386_gc_sweep_hook): Likewise.
2279 (elf_i386_adjust_dynamic_symbol): Likewise.
2280 (elf_i386_size_dynamic_sections): Likewise.
2281 (elf_i386_relocate_section): Likewise.
2282 (elf_i386_finish_dynamic_sections): Likewise.
2283
2284 * elf32-hppa.c (allocate_plt_and_got): Skip indirect and warning syms.
2285
22862001-06-02 H.J. Lu <hjl@gnu.org>
2287
2288 * elf32-hppa.c (elf32_hppa_object_p): Check ELFOSABI_LINUX
2289 and ELFOSABI_HPUX.
2290 * elf64-hppa.c (elf64_hppa_object_p): Likewise.
2291
22922001-06-02 H.J. Lu <hjl@gnu.org>
2293
2294 * aout-cris.c (MACHTYPE_OK): New. Defined.
2295
22962001-06-02 Hans-Peter Nilsson <hp@axis.com>
2297
2298 * section.c (_bfd_strip_section_from_output): Handle NULL
2299 output_section.
2300
23012001-06-02 H.J. Lu <hjl@gnu.org>
2302
2303 * config.bfd (powerpc-*-aix*, powerpc-*-beos*, rs6000-*-*): Add
2304 rs6000coff64_vec only if BFD64 is defined.
2305 (powerpc64-*-aix*): Enable only if BFD64 is defined.
2306
23072001-06-02 H.J. Lu <hjl@gnu.org>
2308
2309 * coff-ia64.c (ia64coff_object_p): Rewrite with
2310 external_PEI_DOS_hdr and external_PEI_IMAGE_hdr.
2311
23122001-06-01 Andreas Jaeger <aj@suse.de>
2313
2314 * elf64-x86-64.c (elf64_x86_64_relocate_section): Add PC8
2315 relocation, small reformatting.
2316
23172001-05-29 Andreas Jaeger <aj@suse.de>
2318
2319 * elf64-x86-64.c (elf64_x86_64_check_relocs): Handle R_X86_64_64.
2320 (elf64_x86_64_relocate_section): Likewise.
2321
23222001-05-30 Alan Modra <amodra@one.net.au>
2323
2324 * elf32-hppa.c (elf32_hppa_check_relocs): Don't NEED_PLT for
2325 millicode. Don't allocate .got and .rela.got space here..
2326 (elf32_hppa_gc_sweep_hook): ..and no need to deallocate here..
2327 (elf32_hppa_adjust_dynamic_symbol): ..and don't allocate .plt and
2328 .rela.plt here..
2329 (hppa_handle_PIC_calls): ..nor here..
2330 (allocate_plt_and_got): ..instead do it all here. New function.
2331 (elf32_hppa_size_dynamic_sections): Allocate local .got space and
2332 call allocate_plt_and_got. No need to zap .got if not dynamic.
2333 (elf32_hppa_final_link): Call regular bfd_final_link instead of
2334 gc_common_final_link.
2335 (WILL_CALL_FINISH_DYNAMIC_SYMBOL): Define.
2336 (elf32_hppa_relocate_section): Use it here.
2337 (elf32_hppa_finish_dynamic_symbol): Remove superfluous test of
2338 dynamic_sections_created.
2339 (hppa_type_of_stub): Don't LONG_BRANCH_VIA_PLT if millicode sym.
2340
23412001-05-28 Andreas Jaeger <aj@suse.de>
2342
2343 * elf64-x86-64.c (elf64_86_64_size_info): Remove, we can use the
2344 generic version since we want a hashsize of 4.
2345 (elf_backend_size_info): Likewise.
2346
23472001-05-28 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
2348
2349 * elflink.h (elf_link_size_reloc_section): Use bfd_zmalloc instead of
2350 a zeroing loop.
2351 (elf_link_output_relocs): Handle MIPS ELF64 relocations correctly.
2352 (elf_link_input_bfd): Likewise.
2353 (elf_reloc_link_order): Likewise.
2354 (elf_finish_pointer_linker_section): Typo. Handle MIPS ELF64
2355 relocations correctly.
2356
23572001-05-28 Nicolas Pitre <nico@cam.org>
2358
2359 * elf32-arm.h: fix PLT generation for big endian ARM
2360
23612001-05-28 Alan Modra <amodra@one.net.au>
2362
2363 * elf32-hppa.c (elf32_hppa_relocate_section): Set up .plt entries
2364 for symbols forced local that need plabels.
2365 (elf32_hppa_adjust_dynamic_symbol): Don't allocate space in
2366 .plt.rela for local syms if non-shared.
2367 (hppa_build_one_stub): Mask lsb of plt.offset.
2368 (elf32_hppa_finish_dynamic_symbol): Abort if lsb of plt.offset set.
2369 (clobber_millicode_symbols): Correct comment.
2370 (elf32_hppa_relocate_section): Likewise.
2371 (elf32_hppa_finish_dynamic_symbol): Likewise.
2372
23732001-05-28 Jeff Sturm <jsturm@one-point.com>
2374
2375 * reloc.c: Add BFD_RELOC_SPARC_UA16 and BFD_RELOC_SPARC_UA64.
2376 * bfd-in2.h: Regenerate.
2377 * libbfd.h: Regenerate.
2378 * elf32-sparc.c: Enable BFD_RELOC_SPARC_UA16, BFD_RELOC_SPARC_UA32
2379 and BFD_RELOC_SPARC_UA64 mapping
2380 * elf64-sparc.c: Likewise.
2381
23822001-05-25 H.J. Lu <hjl@gnu.org>
2383
2384 * Makefile.am (BFD32_BACKENDS): Remove coff-pmac.lo.
2385 (BFD32_BACKENDS_CFILES): Remove coff-pmac.c.
2386 (coff-rs6000.lo): Remove the old dependency.
2387 * Makefile.in: Rebuild.
2388
2389 * configure.in (pmac_xcoff_vec): Replace coff-pmac.lo with
2390 coff-rs6000.lo.
2391
23922001-05-25 H.J. Lu <hjl@gnu.org>
2393
2394 * coff-rs6000.c (rs6000coff_vec): Use rs6000coff_core_p,
2395 rs6000coff_core_file_matches_executable_p,
2396 rs6000coff_core_file_failing_command and
2397 rs6000coff_core_file_failing_signal only if AIX_CORE is
2398 defined.
2399 (pmac_xcoff_vec): Likewise.
2400 * coff64-rs6000.c (rs6000coff64_vec): Likewise.
2401
24022001-05-25 Timothy Wall <twall@redhat.com>
2403
2404 * elfxx-ia64.c (allocate_dynrel_entries): Don't allocate an entry
2405 for __GLOB_DATA_PTR on AIX5. Clean up some relocation bugs.
2406
24072001-05-25 H.J. Lu <hjl@gnu.org>
2408
2409 * bfd-in2.h: Regenerated.
2410 * libcoff.h: Likewise.
2411
24122001-05-25 Alan Modra <amodra@one.net.au>
2413
2414 * elf32-hppa.c (elf32_hppa_relocate_section): Don't allow
2415 undefined millicode syms in shared libs.
2416 (hppa_build_one_stub): Turn BFD_ASSERTs into aborts.
2417 (elf32_hppa_check_relocs): Likewise.
2418 (elf32_hppa_adjust_dynamic_symbol): Likewise.
2419 (elf32_hppa_size_dynamic_sections): Likewise.
2420 (elf32_hppa_relocate_section): Likewise.
2421 (elf32_hppa_finish_dynamic_symbol): Likewise.
2422 (elf32_hppa_finish_dynamic_sections): Likewise.
2423
24242001-05-24 Tom Rix <trix@redhat.com>
2425
2426 * Makefile.am coff-pmac bfd now defined in coff-rs6000.c
2427 xcoff-target.h not used to define rs6000 or ppc bfd.
2428 * Makefile.in same
2429
2430 * bfd-in.h : (struct lineno_cache_entry) promote element "offset"
2431 to 64 bit.
2432
2433 * coff-rs6000.c : Many changes for 64 bit support. Move common
2434 32/64 code to xcofflink.c. Explictly define the rs6000coff_vec
2435 and pmac_xcoff_vec
2436
2437 * coff64-rs6000.c : Many changes for 64 bit support. 64 bit
2438 linker now supported. Explictly define the rs6000coff64_vec.
2439
2440 * coffcode.h : (coff_set_arch_mach_hook) xcoff 64 bit support
2441 (coff_print_aux) same
2442 (coff_write_object_contents) same
2443 (coff_slurp_line_table) same
2444
2445 * coffgen.c : (coff_fix_symbol_name) formatting
2446 (coff_mangle_symbols) xcoff 64 bit support
2447 (coff_write_symbol) same
2448 (coff_write_alien_symbol) same
2449 (coff_write_native_symbol) same
2450 (coff_write_symbols) same
2451 (coff_get_symbol_info) same
2452 (bfd_coff_get_syment) same
2453 (coff_print_symbol) same
2454
2455 * config.bfd : add powerpc64-*-aix* target
2456
2457 * libcoff-in.h : formatting
2458
2459 * libcoff.h : move xcoff extern declarations to libxcoff.h
2460
2461 * libxcoff.h : New file
2462
2463 * xcofflink.c : Many changes for xcoff64 support. Move common
2464 structures to include/coff/xcoff.h. Move specific structure to
2465 backends coff-rs6000.c and coff64-rs6000.c. Use new backend
2466 functions, defined in libxcoff.h, to isolate 32/64 dependencies.
2467
2468 (bfd_xcoff_size_dynamic_sections) : special __rtinit symbol for
2469 aix4.2+ -binitfini.
2470
2471 (xcoff_build_ldsyms) : handle special __rtinit symbol.
2472
24732001-05-23 Alexandre Oliva <aoliva@redhat.com>
2474
2475 * elf64-sparc.c (sparc64_elf_slurp_reloc_table): Fix typo
2476 s/ENTIRES/ENTRIES/.
2477
24782001-05-23 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
2479
2480 * reloc.c (bfd_reloc_code_real): Add MIPS ELF64 relocations.
2481 * libbfd.h: Regenerate.
2482 * bfd-in2.h: Regenerate.
2483
2484 * aoutx.h (aout_@var{size}_machine_type): Add MIPS r12k support.
2485 * archures.c (bfd_mach_mips12000): Define.
2486 * cpu-mips.c (arch_info_struct): Add MIPS r12k support.
2487 * elf32-mips.c (_bfd_mips_elf_final_write_processing): Add MIPS r12k
2488 support.
2489 (_bfd_mips_elf_size_dynamic_sections): Use official bfd typedef.
2490 * bfd-in2.h: Regenerate.
2491 * elfxx-target.h: Do not redefine bfd_elfNN_bfd_make_debug_symbol.
2492
24932001-05-23 kaz Kojima <kkojima@rr.iij4u.or.jp>
2494
2495 * elf32-sh.c (elf_sh_plt0_entry_be, elf_sh_plt0_entry,
2496 elf_sh_plt_entry_be, elf_sh_plt_entry, elf_sh_pic_plt_entry_be,
2497 elf_sh_pic_plt_entry): New PLT code, that does not use r2, since
2498 that is used by GCC.
2499
25002001-05-23 Nick Clifton <nickc@cambridge.redhat.com>
2501
2502 * elf-bfd.h (NUM_SHDR_ENTRIES): New macro: compute the number
2503 of entries in a structured section.
2504 * elf.c: Use new macro.
2505 * elf32-i386.c: Use new macro.
2506 * elf32-mips.c: Use new macro.
2507 * elf64-alpha.c: Use new macro.
2508 * elf64-sparc.c: Use new macro.
2509 * elfcode.h: Use new macro.
2510 * elflink.h: Use new macro.
2511
25122001-05-23 Nick Clifton <nickc@cambridge.redhat.com>
2513
2514 * bfdint.texi: Replace -oformat with --oformat.
2515
25162001-05-21 Andreas Jaeger <aj@suse.de>
2517
2518 * dwarf2.c (decode_line_info): Fix error message.
2519 (read_abbrevs): Fix test for offset as suggested by Alan Modra and
2520 adjust error message.
2521
25222001-05-18 H.J. Lu <hjl@gnu.org>
2523
2524 * elflink.h (elf_link_add_object_symbols): Revert the last
2525 change.
2526
25272001-05-17 Alan Modra <amodra@one.net.au>
2528
2529 * elf32-hppa.c (clobber_millicode_symbols): Temporarily set
2530 ELF_LINK_FORCED_LOCAL to suit 2001-04-30 change.
2531 (hppa_build_one_stub): Add an assert to check plt.offset.
2532
25332001-05-17 H.J. Lu <hjl@gnu.org>
2534
2535 * elflink.h (NAME(bfd_elf,size_dynamic_sections)): Set the
2536 version definition to basename of the output filename.
2537
25382001-05-17 H.J. Lu <hjl@gnu.org>
2539
2540 * elflink.h (elf_link_add_object_symbols): Set DT_NEEDED to
2541 basename of the bfd filename.
2542
25432001-05-16 Alan Modra <amodra@one.net.au>
2544
2545 * section.c (asection): Add linker_has_input field.
2546 (STD_SECTION): Adjust initialization to suit.
2547 * ecoff.c (bfd_debug_section): Likewise.
2548 * bfd-in2.h: Regenerate.
2549
25502001-05-15 Alexandre Oliva <aoliva@redhat.com>
2551
2552 * elf-m10300.c (mn10300_elf_relax_section): Don't relax
2553 negative 32-bit operands to 16 operands when the operand is
2554 going to be zero-extended by the modified opcode.
2555
25562001-05-12 Peter Targett <peter.targett@arccores.com>
2557
2558 * cpu-arc.c (arch_info_struct): Add entry 'base' representing old
2559 name for 'arc5' core versions.
2560 (bfd_arc_arch): Make bfd_mach_arc_6 default.
2561
2562 * elf32-arc.c (arc_elf_object_p): Make E_ARC_MACH_ARC6 default
2563 architecture.
2564 (arc_elf_final_write_processing): Make bfd_mach_arc_6 default.
2565
25662001-05-11 Jakub Jelinek <jakub@redhat.com>
2567
2568 * elfxx-ia64.c (is_unwind_section_name): Consider linkonce unwind
2569 sections as well.
2570 (elfNN_ia64_final_write_processing): Map .gnu.linkonce.ia64unw.FOO
2571 to .gnu.linkonce.t.FOO text section.
2572
25732001-05-11 Jakub Jelinek <jakub@redhat.com>
2574
2575 * merge.c (struct sec_merge_hash_entry): Add u.entsize and u.suffix
2576 fields, change sec into secinfo.
2577 (struct sec_merge_info): Add chain, remove last fields.
2578 (struct sec_merge_sec_info): Add next, sec, psecinfo fields.
2579 (sec_merge_hash_lookup): If lookup could not use a string only
2580 because it has bad alignment, mark the old string for deletion.
2581 (sec_merge_add): Add secinfo argument. Don't compute entry's
2582 position, instead record the section.
2583 (sec_merge_emit): Update for the sec into secinfo change in
2584 struct sec_merge_hash_entry.
2585 (_bfd_merge_section): Only record the section for merging, defer
2586 putting strings into the hash table.
2587 (cmplengthentry, last4_eq, last_eq, record_section, merge_strings,
2588 _bfd_merge_sections): New functions.
2589 (_bfd_merged_section_offset): Update for the sec_merge_hash_entry
2590 changes.
2591 * libbfd-in.h (_bfd_merge_sections): Add prototype.
2592 (_bfd_nolink_bfd_merge_sections): Define.
2593 * libbfd.h: Likewise.
2594 (bfd_generic_merge_sections): Add prototype.
2595 * targets.c (BFD_JUMP_TABLE_LINK): Add _bfd_merge_sections.
2596 (struct bfd_target): Likewise.
2597 * bfd.c (bfd_merge_sections): Define.
2598 * bfd-in2.h: Rebuilt.
2599 * elf.c (_bfd_elf_merge_sections): New function.
2600 * elf-bfd.h (_bfd_elf_merge_sections): Add prototype.
2601 * elfxx-target.h (bfd_elfNN_bfd_merge_sections): Define.
2602 * reloc.c (bfd_generic_merge_sections): New function.
2603 * vms.c (vms_bfd_merge_sections): New function.
2604 * aout-adobe.c (aout_32_bfd_merge_sections): Define.
2605 * aout-target.h (MY_bfd_merge_sections): Define.
2606 * aout-tic30.c (MY_bfd_merge_sections): Define.
2607 * binary.c (binary_bfd_merge_sections): Define.
2608 * bout.c (b_out_bfd_merge_sections): Define.
2609 * coff-alpha.c (_bfd_ecoff_bfd_merge_sections): Define.
2610 * coffcode.c (coff_bfd_merge_sections): Define.
2611 * coff-mips.c (_bfd_ecoff_bfd_merge_sections): Define.
2612 * i386msdos.c (msdos_bfd_merge_sections): Define.
2613 * i386os9k.c (os9k_bfd_merge_sections): Define.
2614 * ieee.c (ieee_bfd_merge_sections): Define.
2615 * ihex.c (ihex_bfd_merge_sections): Define.
2616 * nlm-target.h (nlm_bfd_merge_sections): Define.
2617 * oasys.c (oasys_bfd_merge_sections): Define.
2618 * ppcboot.c (ppcboot_bfd_merge_sections): Define.
2619 * som.c (som_bfd_merge_sections): Define.
2620 * srec.c (srec_bfd_merge_sections): Define.
2621 * tekhex.c (tekhex_bfd_merge_sections): Define.
2622 * versados.c (versados_bfd_merge_sections): Define.
2623 * xcoff-target.h (_bfd_xcoff_bfd_merge_sections): Define.
2624
26252001-05-11 Nick Clifton <nickc@cambridge.redhat.com>
2626
2627 * dwarf1.c (_bfd_dwarf1_find_nearest_line): Change type of 'addr'
2628 to be unsigned long, in order to match its use.
2629
26302001-05-10 H.J. Lu <hjl@gnu.org>
2631
2632 * linker.c (_bfd_generic_link_add_one_symbol): Check loop on
2633 indirect symbols.
2634
26352001-05-09 H.J. Lu <hjl@gnu.org>
2636
2637 * elflink.h (elf_link_add_object_symbols): Fix a typo. Allocate
2638 versymhdr->sh_size bytes for extversym instead of hdr->sh_size.
2639 Remove the unused veriable `dynver'.
2640
26412001-05-08 Ian Lance Taylor <ian@zembu.com>
2642
2643 * coff-i386.c (coff_i386_reloc): Don't dump core if output_bfd is
2644 NULL or is not COFF.
2645 (coff_i386_rtype_to_howto): Don't dump core if output section
2646 owner is not COFF.
2647
26482001-05-07 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
2649
2650 * ecoff.c (bfd_debug_section): Fix initialization.
2651 * elf.c (_bfd_elf_slurp_version_tables): Change maxidx to unsigned, it
2652 is always a positive integer. Cast away sign mismatch.
2653 * elf32-mips.c: Fix misleading comment and typo.
2654 (_bfd_mips_elf_section_from_bfd_section): Remove unused attribute, use
2655 correct data type.
2656 * elflink.c: Fix typo.
2657 (_bfd_elf_create_dynamic_sections): Remove superfluous initialization.
2658 * ecoffswap.h (ecoff_swap_fdr_in): Cast away sign mismatch.
2659
26602001-05-04 Richard Henderson <rth@redhat.com>
2661
2662 * elf64-alpha.c (SREL16, SREL32, SREL64): Set pcrel_offset true.
2663
26642001-05-04 Nick Clifton <nickc@cambridge.redhat.com>
2665
2666 * elf32-arm.h (elf32_arm_final_link_relocate): Set
2667 EF_ARM_HASENTRY if the start address is set.
2668
26692001-05-03 Nick Clifton <nickc@cambridge.redhat.com>
2670
2671 * targets.c (_bfd_target_vector_entries): Compute value based on
2672 the size of the _bfd_target_vector and not bfd_target_vector.
2673
26742001-05-03 H.J. Lu <hjl@gnu.org>
2675
2676 * elfcode.h: Include "libiberty.h".
2677
2678 * elflink.h (elf_link_add_object_symbols): Set
2679 elf_dt_name (abfd) to basename of the bfd filename.
2680 (NAME(bfd_elf,size_dynamic_sections)): Set vn_file to basename
2681 of the bfd filename.
2682
26832001-05-03 Andreas Jaeger <aj@suse.de>
2684
2685 * elf64-gen.c (elf_generic_info_to_howto): Add unused attribute.
2686 (elf_generic_info_to_howto_rel): Likewise.
2687 * coff-alpha.c (reloc_nil): Likewise.
2688 (alpha_ecoff_bad_format_hook): Likewise.
2689 (alpha_adjust_reloc_out): Likewise.
2690 (alpha_bfd_reloc_type_lookup): Likewise.
2691 (alpha_convert_external_reloc): Likewise.
2692 * elf64-alpha.c (elf64_alpha_reloc_nil): Likewise.
2693 (elf64_alpha_reloc_bad): Likewise.
2694 (elf64_alpha_reloc_gpdisp): Likewise.
2695 (elf64_alpha_bfd_reloc_type_lookup): Likewise.
2696 (elf64_alpha_info_to_howto): Likewise.
2697 (elf64_alpha_add_symbol_hook): Likewise.
2698 (elf64_alpha_create_got_section): Likewise.
2699 (elf64_alpha_is_local_label_name): Likewise.
2700 (elf64_alpha_merge_ind_symbols): Likewise.
2701 * elf64-mips.c (mips_elf64_reloc_type_lookup): Likewise.
2702 (mips_elf64_get_reloc_upper_bound): Likewise.
2703 * nlm32-alpha.c (nlm_alpha_mangle_relocs): Likewise.
2704 (nlm_alpha_get_public_offset): Likewise.
2705
27062001-05-02 Johan Rydberg <jrydberg@opencores.org>
2707
2708 * elf32-openrisc.c (openrisc_elf_howto_table): Do not complain
2709 about overflow in R_OPENRISC_LO_16_IN_INSN and
2710 R_OPENRISC_HI_16_IN_INSN.Index: bfd/elf32-openrisc.c
2711
27122001-04-30 H.J. Lu <hjl@gnu.org>
2713
2714 * elf.c (_bfd_elf_link_hash_hide_symbol): Set dynindx to -1
2715 only for ELF_LINK_FORCED_LOCAL.
2716 * elf32-hppa.c (elf32_hppa_hide_symbol): Likewise.
2717 * elf32-mips.c (_bfd_mips_elf_hide_symbol): Likewise.
2718 * elfxx-ia64.c (elfNN_ia64_hash_hide_symbol): Likewise.
2719
2720 * elflink.h (elf_fix_symbol_flags): Set ELF_LINK_FORCED_LOCAL
2721 if the symbol has hidden or internal visibility.
2722
27232001-04-30 Alan Modra <amodra@one.net.au>
2724
2725 * elf32-hppa.c (final_link_relocate): Branch to .+8 for
2726 calls to undefined weak symbols.
2727
27282001-04-30 Andreas Jaeger <aj@suse.de>, Andreas Schwab <schwab@suse.de>
2729
2730 * elf64-x86-64.c (elf64_x86_64_relocate_section): Correct test for
2731 R_X86_64_GOTPCREL, don't use assignments instead of comparisons.
2732
27332001-04-27 Andreas Jaeger <aj@suse.de>
2734
2735 * elf64-x86-64.c (elf64_x86_64_finish_dynamic_sections): Only swap
2736 out handled entries.
2737 (elf64_x86_64_finish_dynamic_symbol): Set up GOT entries.
2738 (elf64_x86_64_relocate_section): Fix GOTPCREL calculation.
2739 (elf64_x86_64_relocate_section): Merge entries for GOTPCREL and
2740 GOT32.
2741
27422001-04-27 Sean McNeil <sean@mcneil.com>
2743
2744 * config.bfd: Add arm-vxworks target.
2745 * coff-arm (coff_arm_relocate_section): Add in symbol value to
2746 addend (fro VXworks targets).
2747
27482001-04-26 H.J. Lu <hjl@gnu.org>
2749
2750 * elf32-i386.c (elf_i386_check_relocs): Verify if r_symndx is
2751 valid.
2752
27532001-04-25 Frank Ch. Eigler <fche@redhat.com>
2754
2755 * bfd-in.h (bfd_cache_close): Declare newly exported function.
2756 * bfd-in2.h: Regenerated.
2757
27582001-04-24 Jakub Jelinek <jakub@redhat.com>
2759
2760 * merge.c (struct sec_merge_hash_entry): Add alignment field.
2761 (struct sec_merge_hash): Remove alignment_power.
2762 (sec_merge_hash_newfunc): Clear alignment.
2763 (sec_merge_hash_lookup): Pass alignment as argument.
2764 Use hashp->root.next, not hashp->next to walk the hash chain.
2765 If a string already in the hashtable does not have required
2766 alignment, create a new hashtable entry.
2767 (sec_merge_init): Remove alignment_power argument.
2768 (sec_merge_add): Add alignment argument.
2769 (sec_merge_emit): Alignment is now a per-entity thing, not per
2770 section.
2771 (_bfd_merge_section): Sanity check even non-SEC_STRINGS sections
2772 for proper alignment.
2773 Pass alignment information to sec_merge_add.
2774
27752001-04-24 Christian Groessler <cpg@aladdin.de>
2776
2777 * coff-z8k.c (extra_case): added handler for R_DISP7, R_CALLR
2778 and R_REL16 reloc types; accept odd values for R_REL16 type
2779
27802001-04-24 Johan Rydberg <jrydberg@opencores.org>
2781
2782 * cpu-openrisc.c: New file.
2783 * elf32-openrisc.c: Likewise.
2784
2785 * Makefile.am (ALL_MACHINES): Add cpu-openrisc.lo.
2786 (ALL_MACHINES_CFILES): Add cpu-openrisc.c.
2787 (BFD32_BACKENDS): Add elf32-openrisc.lo.
2788 (BFD32_BACKENDS_CFILES): Add elf32-openrisc.c.
2789 (cpu-openrisc.lo, elf32-openrisc.lo): New rules.
2790 * Makefile.in: Regenerated.
2791 * config.bfd: (openrisc-*-elf): New target.
2792 * configure.in (bfd_elf32_openrisc_vec): New vector.
2793 * configure: Regenerated.
2794 * libbfd.h: Regenerated.
2795 * bfd-in2.h: Regenerated.
2796 * reloc.c: Add OpenRISC relocations.
2797 * targets.c (bfd_elf32_openrisc_vec): Declare.
2798 (bfd_target_vect): Add bfd_elf32_openrisc_vec.
2799 * archures.c (enum bfd_architecture): Add bfd_arch_openrisc.
2800 (bfd_openrisc_arch): Declare.
2801 (bfd_archures_list): Add bfd_openrisc_arch.
2802 * elf.c (prep_headers): Add bfd_arch_openrisc.
2803
28042001-04-23 Bo Thorsen <bo@suse.de>
2805
2806 * elf64-x86-64.c: Add c++ vtable hack.
2807 Small whitespace and comment changes.
2808
28092001-04-19 Andreas Jaeger <aj@suse.de>
2810
2811 * elf64-x86-64.c (elf64_x86_64_plt0_entry): Fix instructions.
2812 (elf64_x86_64_plt_entry): Likewise.
2813 (elf64_x86_64_finish_dynamic_sections): Fix PLT0 generation.
2814 (elf64_x86_64_finish_dynamic_symbol): Fix PLT generation.
2815
28162001-04-17 Hans-Peter Nilsson <hp@axis.com>
2817
2818 * elf32-cris.c: Tweak comments related to dynamic linking.
2819 (cris_elf_relocate_section): When not creating shared object, fill
2820 in the .got table for any symbol not in the dynamic symbol table.
2821 (elf_cris_finish_dynamic_symbol): When not creating shared object,
2822 only emit a .got.rela reloc if the symbol is in the dynamic symbol
2823 table.
2824 (cris_elf_check_relocs): Use variable r_type in all places rather
2825 than the original expression. Add default case in switch for
2826 reloc types.
2827 (elf_cris_size_dynamic_sections): Iterate over
2828 elf_cris_discard_excess_program_dynamics when not creating shared
2829 library.
2830 (elf_cris_discard_excess_dso_dynamics): Renamed from
2831 elf_cris_discard_copies. Correct typo, s/Rel/Rela/.
2832 (elf_cris_discard_excess_program_dynamics): New.
2833
28342001-04-14 Mark Elbrecht <snowball3@bigfoot.com>
2835
2836 * coffcode.h (coff_write_object_contents): Use
2837 bfd_coff_swap_filehdr_out instead of coff_swap_filehdr_out.
2838
28392001-04-14 H.J. Lu <hjl@gnu.org>
2840
2841 * bfd-in2.h: Regenerate.
2842
28432001-04-14 Jakub Jelinek <jakub@redhat.com>
2844
2845 * section.c (STD_SECTION): Add entsize.
2846
28472001-04-13 H.J. Lu <hjl@gnu.org>
2848
2849 * section.c (SEC_MERGE): Define new flag for merging.
2850 (SEC_STRINGS): Likewise.
2851 (entsize): New field.
2852
28532001-04-13 Roger Sayle <roger@metaphorics.com>
2854
2855 * coff-i386.c (TARGET_SYM): SEC_READONLY is an applicable section
2856 flag on pe-i386 targets.
2857
28582001-04-13 Jakub Jelinek <jakub@redhat.com>
2859
2860 * libbfd-in.h (_bfd_merge_section): New.
2861 (_bfd_write_merged_section): New.
2862 (_bfd_merged_section_offset): New.
2863 * libbfd.h: Rebuilt.
2864 * linker.c (_bfd_generic_link_output_symbols): Handle
2865 discard_sec_merge.
2866 * aoutx.h (aout_link_write_symbols): Likewise.
2867 * pdp11.c (aout_link_write_symbols): Likewise.
2868 * elflink.h (elf_link_add_object_symbols): Call _bfd_merge_section.
2869 (elf_bfd_final_link): Adjust global symbols pointing into SEC_MERGE
2870 sections.
2871 (elf_link_sec_merge_syms): New.
2872 (elf_link_input_bfd): Call _bfd_merged_section_offset
2873 and _bfd_write_merged_section.
2874 Handle discard_sec_merge.
2875 * elf-bfd.h (struct elf_link_hash_table): Add merge_info
2876 field.
2877 (struct bfd_elf_section_data): Likewise.
2878 * elf.c (_bfd_elf_make_section_from_shdr): Set SEC_MERGE and
2879 SEC_STRINGS section flags and entsize from their ELF counterparts.
2880 (_bfd_elf_link_hash_table_init): Initialize merge_info.
2881 (elf_fake_sections): Set SHF_MERGE, SHF_STRINGS and sh_entsize
2882 from their BFD counterparts.
2883 * merge.c: New file.
2884 * Makefile.am: Add strtab.lo.
2885 * Makefile.in: Rebuilt.
2886
28872001-04-09 Hans-Peter Nilsson <hp@axis.com>
2888
2889 * elflink.h (elf_fix_symbol_flags): For non-default visibilities,
2890 only hide symbols marked STV_INTERNAL or STV_HIDDEN.
2891
28922001-04-05 Steven J. Hill <sjhill@cotw.com>
2893
2894 * config.bfd (mips*el*-*-linux-gnu*): Use traditional little
2895 endian MIPS ELF target.
2896 * config.bfd (mips*-*-linux-gnu*): Use traditional big endian
2897 MIPS ELF target.
2898
2899 * configure.in (bfd_elf64_tradbigmips_vec): New. Traditional
2900 64bit big endian MIPS ELF target.
2901 (bfd_elf64_tradlittlemips_vec): New. Traditional 64bit little
2902 endian MIPS ELF target.
2903 * configure: Regenerated.
2904
2905 * elf32-mips.c (IRIX_COMPAT): Handle traditional 64bit and
2906 little endian targets.
2907 (mips_elf_sym_is_global): Handle traditional targets.
2908
2909 * elf64-mips.c (bfd_elf64_tradbigmips_vec): New. Traditional
2910 64bit big endian MIPS ELF target.
2911 (bfd_elf64_tradlittlemips_vec): New. Traditional 64bit little
2912 endian MIPS ELF target.
2913
2914 * targets.c: (_bfd_target_vector): Add bfd_elf64_tradbigmips_vec
2915 and bfd_elf64_tradlittlemips_vec.
2916
29172001-04-05 David Mosberger <davidm@hpl.hp.com>
2918
2919 * elf32-i386.c (elf_i386_fake_sections): Treat ".reloc" as an
2920 ordinary "progbits" section.
2921
29222001-04-04 Alan Modra <alan@linuxcare.com.au>
2923
2924 * elflink.h (elf_fix_symbol_flags): Call elf_backend_hide_symbol
2925 when -Bsymbolic causes a symbol to no longer need a .plt entry.
2926
29272001-04-03 David Mosberger <davidm@hpl.hp.com>
2928
2929 * efi-app-ia32.c (ALIGN_SECTIONS_IN_FILE): Deleted.
2930
29312001-03-30 H.J. Lu <hjl@gnu.org>
2932
2933 * efi-app-ia32.c (PEI_TARGET_SUBSYSTEM): Rename from ...
2934 (PEI_DEFAULT_TARGET_SUBSYSTEM): This.
2935
29362001-03-26 H.J. Lu <hjl@gnu.org>
2937
2938 * elf32-gen.c (elf32_generic_link_add_symbols): New. Check
2939 if there are any relocations for generic ELF.
2940 (bfd_elf32_bfd_link_add_symbols): Defined to
2941 elf32_generic_link_add_symbols.
2942 * elf64-gen.c (elf64_generic_link_add_symbols): New. Check
2943 if there are any relocations for generic ELF.
2944 (bfd_elf64_bfd_link_add_symbols): Defined to
2945 elf64_generic_link_add_symbols.
2946
29472001-03-23 Nick Clifton <nickc@redhat.com>
2948
2949 * Makefile.am (BUILD_CFILES): New variable: List of C source
2950 files created in build directory.
2951 (BUILD_HFILES): New variable: List of header files created in
2952 build directory.
2953 (POTFILES): Delete.
2954 (po/POTFILES.in): Replace rule with empty entry.
2955 (po/SRC-POTFILES.in): New rule: Create a list of source files
2956 in the source directory.
2957 (po/BLD-POTFILES.in): New rule: Create a list of source files
2958 in the build directory.
2959 (MOSTLYCLEAN): Do not delete source files created in build
2960 directory.
2961 * Makefile.in: Regenerate.
2962 * configure.in: Insert SRC-POTFILES.in and BLD-POTFILES.in
2963 into po/Makefile.
2964 * configure: Regenerate.
2965
2966 * po/Make-in: Replace occurrences of POTFILES with SRC-POTFILES
2967 and BLD_POTFILES.
2968 Add .. to the search path when building bfd.pot.
2969 Delete POTFILES when performing distclean.
2970 Add comment describing why distclean is broken in maintainer mode.
2971 * po/POTFILES.in: Delete.
2972 * po/SRC-POTFILES.in: New file.
2973 * po/BLD-POTFILES.in: New file.
2974 * po/bfd.pot: Regenerate.
2975
29762001-03-22 Hans-Peter Nilsson <hp@axis.com>
2977
2978 * elf32-cris.c: Shlib and PIC support. PCREL tweaks.
2979 (elf_cris_discard_copies, elf_cris_adjust_gotplt_to_got,
2980 elf_cris_try_fold_plt_to_got, elf_cris_link_hash_newfunc,
2981 elf_cris_link_hash_table_create, elf_cris_adjust_dynamic_symbol,
2982 elf_cris_size_dynamic_sections, elf_cris_finish_dynamic_symbol,
2983 elf_cris_finish_dynamic_sections,elf_cris_hide_symbol): New
2984 functions.
2985 (cris_elf_howto_table) <R_CRIS_8_PCREL, R_CRIS_16_PCREL,
2986 R_CRIS_32_PCREL>: Correct comments. Set pcrel_offset to false.
2987 <R_CRIS_COPY, R_CRIS_GLOB_DAT, R_CRIS_JUMP_SLOT, R_CRIS_RELATIVE,
2988 R_CRIS_16_GOT, R_CRIS_32_GOT, R_CRIS_16_GOTPLT, R_CRIS_32_GOTPLT,
2989 R_CRIS_32_GOTREL, R_CRIS_32_PLT_GOTREL, R_CRIS_32_PLT_PCREL>:
2990 New HOWTO members for new relocs.
2991 (cris_reloc_map): Map new relocs.
2992 (ELF_DYNAMIC_INTERPRETER): Define.
2993 (PLT_ENTRY_SIZE): Define.
2994 (elf_cris_plt0_entry, elf_cris_plt_entry, elf_cris_pic_plt0_entry,
2995 elf_cris_pic_plt_entry): New, PLT templates.
2996 (struct elf_cris_pcrel_relocs_copied, struct
2997 elf_cris_link_hash_entry, struct elf_cris_link_hash_table): New.
2998 (elf_cris_link_hash_traverse, elf_cris_hash_table): Define.
2999 (cris_final_link_relocate): Check that 16-bit GOT relocs have
3000 positive values. Adjust PCREL relocs to be relative to location
3001 after relocation.
3002 (cris_elf_relocate_section): Handle relocations to dynamic
3003 objects. Handle new relocations. Call error handler when seeing
3004 non-PIC relocation for read-only sections while generating shared
3005 object.
3006 (cris_elf_check_relocs): Set reference counts for GOT and PLT
3007 entries.
3008 (bfd_elf32_bfd_link_hash_table_create,
3009 elf_backend_adjust_dynamic_symbol,
3010 elf_backend_size_dynamic_sections,
3011 elf_backend_finish_dynamic_symbol,
3012 elf_backend_finish_dynamic_sections,
3013 elf_backend_create_dynamic_sections, bfd_elf32_bfd_final_link,
3014 elf_backend_hide_symbol, elf_backend_want_got_plt,
3015 elf_backend_plt_readonly, elf_backend_want_plt_sym,
3016 elf_backend_got_header_size, elf_backend_plt_header_size):
3017 Define.
3018
3019 * reloc.c: (BFD_RELOC_CRIS_COPY, BFD_RELOC_CRIS_GLOB_DAT,
3020 BFD_RELOC_CRIS_JUMP_SLOT, BFD_RELOC_CRIS_RELATIVE,
3021 BFD_RELOC_CRIS_32_GOT, BFD_RELOC_CRIS_16_GOT,
3022 BFD_RELOC_CRIS_32_GOTPLT, BFD_RELOC_CRIS_16_GOTPLT,
3023 BFD_RELOC_CRIS_32_GOTREL, BFD_RELOC_CRIS_32_PLT_GOTREL,
3024 BFD_RELOC_CRIS_32_PLT_PCREL): New relocs.
3025 * bfd-in2.h, libbfd.h: Regenerate.
3026
30272001-03-21 Diego Novillo <dnovillo@redhat.com>
3028
3029 (_bfd_mips_elf_relocate_section): Give a better error message when
3030 a relocation is not recognized.
3031
30322001-03-21 Alan Modra <alan@linuxcare.com.au>
3033
3034 * elf32-hppa.c (elf32_hppa_set_gp): Check sec->output_section
3035 non-NULL before attempting to dereference.
3036
30372001-03-20 H.J. Lu <hjl@gnu.org>
3038
3039 * configure.in: Remove the redundent AC_ARG_PROGRAM.
3040 * configure: Rebuild.
3041
30422001-03-20 Andreas Schwab <schwab@suse.de>
3043
3044 * elf32-m68k.c (elf_m68k_relocate_section): Don't need the
3045 relocation value when resolving a reference from a debugging
3046 section.
3047
30482001-03-16 Scott Thomason <SThomaso@hii.com>
3049
3050 * coff64-rs6000.c (xcoff64_swap_sym_out): Fix syntax errors.
3051 (xcoff64_swap_sym_out): Fix syntax errors.
3052
30532001-03-16 Richard Sandiford <rsandifo@redhat.com>
3054
3055 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Fix warning.
3056
30572001-03-15 Alan Modra <alan@linuxcare.com.au>
3058
3059 * elf32-hppa.c (elf32_hppa_link_hash_entry): Add maybe_pic_call.
3060 (hppa_link_hash_newfunc): Init it.
3061 (hppa_type_of_stub): Only use non-PIC to PIC call stub if caller
3062 section appears to be non-PIC.
3063 (final_link_relocate): Likewise.
3064 (elf32_hppa_adjust_dynamic_symbol): Set maybe_pic_call for any
3065 possible candidate function, and set pic_call for those that will
3066 only have a .plt entry for the PIC call stub.
3067 (hppa_handle_PIC_calls): Set maybe_pic_call.
3068
30692001-03-12 DJ Delorie <dj@redhat.com>
3070
3071 * elf32-sh.c (sh_elf_relocate_section): Only relocation
3072 R_SH_DIR8WP* relocs if they're against external symbols, else
3073 they're just for relaxing. Validate the reloc values.
3074
30752001-03-12 Stefan Geuken <mail@stefan-geuken.de>
3076
3077 * binary.c (bfd_external_binary_architecture): Declare.
3078 (binary_object_p): If bfd_external_binary_architecture is defined,
3079 set the architecture to this string.
3080
30812001-03-11 Philip Blundell <philb@gnu.org>
3082
3083 * elf32-arm.h (elf32_arm_finish_dynamic_symbol): Don't make PLT
3084 entries that could serve as a definition for a weak symbol.
3085
30862001-03-08 Nick Clifton <nickc@redhat.com>
3087
3088 * Most files: Update copyright notices using Perl script created
3089 by Kevin Buettner <kevinb@redhat.com>.
3090
30912001-03-07 Nick Clifton <nickc@redhat.com>
3092
3093 * elf32-arm.h (elf32_arm_final_link_relocate): Conditionalise
3094 prior patch on ! defined OLD_ARM_ABI.
3095
30962001-03-07 Andreas Jaeger <aj@suse.de>
3097
3098 * elf64-x86-64.c (elf64_x86_64_relocate_section): Fix handling of
3099 some relocation values.
3100
31012001-03-06 Nick Clifton <nickc@redhat.com>
3102
3103 * elf32-arm.h (elf32_arm_final_link_relocate): Clear bit zero
3104 of offset in BLX(1) instruction.
3105 * coff-arm.c (coff_arm_relocate_section): Clear bit zero of
3106 offset in BLX(1) instruction.
3107 Fix formatting.
3108
31092001-03-06 Nick Clifton <nickc@redhat.com>
3110
3111 * coff-arm.c (coff_arm_reloc_type_lookup): Add
3112 BFD_RELOC_THUMB_PCREL_BLX.
3113
31142001-03-06 Igor Shevlyakov <igor@windriver.com>
3115
3116 * archures.c (bfd_default_scan): Add Coldfire CPUs.
3117 * bfd-in2.h: Regenerate.
3118 * cpu-m68k.c: Add Coldfire CPUs for arch table.
3119 * ieee.c (ieee_write_processor): Set proper id for
3120 Coldfire CPUs.
3121
31222001-03-01 D.J. Barrow <djbarrow@de.ibm.com,barrow_dj@yahoo.com>
3123
3124 * configure.in: Add s390 target.
3125 * configure: Regenerate.
3126
31272001-02-28 Andreas Jaeger <aj@suse.de>
3128
3129 * elf64-x86-64.c (elf64_x86_64_relocate_section): Add relocation
3130 to addend.
3131
31322001-02-28 Philip Blundell <pb@futuretv.com>
3133
3134 * elf32-arm.h: Update mentions of renamed EF_xx constants.
3135 (elf32_arm_print_private_bfd_data): Handle ARM EABI version 2.
3136
31372001-02-27 H.J. Lu <hjl@gnu.org>
3138
3139 * aoutx.h (NAME(aout,bfd_free_cached_info)): Return true if
3140 abfd->tdata.aout_data == NULL.
3141
31422001-02-27 Alan Modra <alan@linuxcare.com.au>
3143
3144 * elf32-hppa.c: Correct field selector in stub comments.
3145 (clobber_millicode_symbols): Formatting fix.
3146
3147 * configure.in: Bump version to 2.11.90.
3148 * configure: Regenerate.
3149 * Makefile.am (CFILES): Rename to SOURCE_CFILES.
3150 (CFILES): $SOURCE_CFILES + generated C files.
3151 (POTFILES): Include $HFILES not $SOURCE_HFILES.
3152 Run "make dep-am"
3153 * Makefile.in: Regenerate.
3154 * doc/Makefile.in: This too.
3155
31562001-02-26 Timothy Wall <twall@cygnus.com>
3157
3158 * elfxx-ia64.c (elfNN_ia64_aix_add_symbol_hook): Remove obsolete
3159 comments.
3160
31612001-02-26 Nick Clifton <nickc@redhat.com>
3162
3163 * coffcode.h (styp_to_sec_flags) [COFF_WITH_PE version]: Tidy
3164 up, replacing multiple if statements with a switch.
3165 (handle_COMDAT): New function.
3166
31672001-02-26 H.J. Lu <hjl@gnu.org>
3168
3169 * coffcode.h (styp_to_sec_flags) [COFF_WITH_PE version]: Issue
3170 a warning for section flags we do not handle instead of
3171 aborting.
3172
31732001-02-26 Andreas Jaeger <aj@suse.de>
3174
3175 * elf64-x86-64.c (x86_64_elf_howto_table): Fix order of entries.
3176
31772001-02-22 Timothy Wall <twall@cygnus.com>
3178
3179 * config.bfd (targ_cpu): Add vectors for ia64-*-aix* (aka Monterey).
3180 * configure.in: Add objects for elf64_ia64_aix vectors.
3181 * configure: Regenerated.
3182 * configure.host: Recognize ia64-*-aix*.
3183 * elfxx-ia64.c: Add hooks for ELF64 on AIX5. Define new vectors
3184 for AIX. AIX5 requires most relocations to be dynamic (*all*
3185 binaries are somewhat similar to shared libraries).
3186 * targets.c: Add elf64_ia64_aix vectors.
3187
31882001-02-21 David Mosberger <davidm@hpl.hp.com>
3189
3190 * cpu-ia64-opc.c (elf64_ia64_operands}: Fix typo: error string for
3191 C8 said "1" instead of "8". Clarify error string for IMM22:
3192 "signed integer" instead of just "integer".
3193
31942001-02-20 Andreas Jaeger <aj@suse.de>
3195
3196 * elf64-x86-64.c (elf64_x86_64_finish_dynamic_symbol): Don't make
3197 PLT entries that could serve as a definition for a weak symbol.
3198
31992001-02-19 Jakub Jelinek <jakub@redhat.com>
3200
3201 * elf32-sparc.c (elf32_sparc_finish_dynamic_symbol): Don't make PLT
3202 entries that could serve as a definition for a weak symbol.
3203 * elf64-sparc.c (sparc64_elf_finish_dynamic_symbol): Likewise.
3204
32052001-02-18 David O'Brien <obrien@FreeBSD>
3206
3207 * configure.in: Recognize FreeBSD/arm, FreeBSD/PowerPC, and treat
3208 FreeBSD/i386-CURRENT differently until I can figure out the needed
3209 corefile changes.
3210 * configure: Regenerate.
3211 * config.bfd: Recognize FreeBSD/x86-64, FreeBSD/ia64, FreeBSD/arm,
3212 FreeBSD/PowerPC, and FreeBSD/sparc64.
3213
32142001-02-18 lars brinkhoff <lars@nocrew.org>
3215
3216 * Makefile.am: Add PDP-11 a.out target.
3217 * config.bfd: Likewise.
3218 * configure.in: Likewise.
3219 * targets.c: Likewise.
3220 * archures.c: Likewise.
3221 * bfd-in2.h: Likewise. Add PDP-11 relocations.
3222 * libbfd.h: Add PDP-11 relocations.
3223 * reloc.c: Likewise.
3224 * cpu-pdp11.c: New file.
3225 * pdp11.c: New file.
3226
3227 * libaout.h (GET_WORD) [ARCH_SIZE==16]: Define.
3228 (GET_SWORD) [ARCH_SIZE==16]: Likewise.
3229 (GET_SWORD) [ARCH_SIZE==16]: Likewise.
3230 (PUT_WORD) [ARCH_SIZE==16]: Likewise.
3231 (GET_MAGIC): New macro.
3232 (PUT_MAGIC): Likewise.
3233 * aout-target.h (MY(object_p)): Use GET_MAGIC to read magic word.
3234
32352001-02-18 Jim Kingdon <jkingdon@engr.sgi.com>
3236
3237 * irix-core.c (irix_core_core_file_p): Set the architecture (GDB
3238 multiarch needs it).
3239
32402001-02-18 H.J. Lu <hjl@gnu.org>
3241
3242 * elflink.h (elf_link_input_bfd): Ignore invalid section symbol
3243 index.
3244
32452001-02-18 Kazu Hirata <kazu@hxi.com>
3246
3247 * vms-misc.c: Fix formatting.
3248
32492001-02-16 Kazu Hirata <kazu@hxi.com>
3250
3251 * vms.c: Fix formatting.
3252
32532001-02-14 H.J. Lu <hjl@gnu.org>
3254
3255 * elf.c (elf_find_function): New function.
3256 (_bfd_elf_find_nearest_line): Call elf_find_function () to find
3257 the file name and function name.
3258
32592001-02-14 Nick Clifton <nickc@redhat.com>
3260
3261 * ecoff.c (bfd_debug_section): Update to initialise new fields in
3262 asection structure.
3263
3264 * Makefile.am (BFD32_BACKENDS_CFILES): Remove peigen.c
3265 (BFD64_BACKENDS): Add pepigen.c
3266 Add rules to create peigen.c and pepigen.c from peXXigen.c.
3267
3268 * Makefile.in: Regenerate.
3269 * configure: Regenerate.
3270 * po/POTFILES.in: Regenerate.
3271 * po/bfd.pot: Regenerate.
3272
32732001-02-14 H.J. Lu <hjl@gnu.org>
3274
3275 * libcoff-in.h (pe_tdata): Add members target_subsystem and
3276 force_minimum_alignment.
3277
32782001-02-14 Bo Thorsen <bo@suse.de>
3279
3280 * elf64-x86-64.c: Small formatting fixes and rearrangements of code.
3281 (elf64_86_64_size_info): Struct added to fix a problem
3282 with the hashtable string entries.
3283 (elf64_x86_64_adjust_dynamic_symbol): Add generation of .got.plt.
3284 (elf64_x86_64_size_dynamic_sections): A FIXME removed.
3285 (elf64_x86_64_size_dynamic_sections): Fix a dynamic entry and
3286 remove the FIXME for this.
3287 (elf64_x86_64_adjust_dynamic_symbol): Fix check for unneeded .plt
3288 section. Also removed the FIXME for it.
3289 (x86_64_elf_howto_table): Use bfd_elf_generic_reloc.
3290 (ELF_DYNAMIC_INTERPRETER): Fix the name of the dynamic linker.
3291 (elf64_x86_64_finish_dynamic_sections): Enable .got.plt writing.
3292
32932001-02-13 Richard Henderson <rth@redhat.com>
3294
3295 * elfxx-ia64.c (elfNN_ia64_final_link): Set __gp if required
3296 and not user provided.
3297
32982001-02-13 Kazu Hirata <kazu@hxi.com>
3299
3300 * vms.c (vms_print_symbol): Remove unreachable code.
3301
3302 * rs6000-core.c: Fix formatting.
3303
33042001-02-13 David Mosberger <davidm@hpl.hp.com>
3305
3306 * peicode.h (coff_swap_filehdr_out) [COFF_IMAGE_WITH_PE]: Define
3307 as _bfd_XXi_only_swap_filehdr_out.
3308 (pe_mkobject) [PEI_FORCE_MINIMUM_ALIGNMENT]: Set
3309 pe->force_minimum_alignment to TRUE.
3310 (pe_mkobject) [PEI_TARGET_SUBSYSTEM]: Set pe->target_subsystem to
3311 PEI_TARGET_SUBSYSTEM.
3312 (pe_print_private_bfd_data): Call
3313 _bfd_XX_print_private_bfd_data_common() instead of
3314 _bfd_pe_print_private_bfd_data_common().
3315 (pe_bfd_copy_private_bfd_data): Call
3316 _bfd_XX_bfd_copy_private_bfd_data_common() instead of
3317 _bfd_pe_bfd_copy_private_bfd_data_common().
3318 (coff_bfd_copy_private_section_data): Define as
3319 _bfd_XX_bfd_copy_private_section_data instead of
3320 _bfd_pe_bfd_copy_private_section_data.
3321 (coff_get_symbol_info): Define as _bfd_XX_get_symbol_info instead
3322 of a _bfd_pe_get_symbol_info.
3323
3324 * peigen.c: Delete.
3325
3326 * peXXigen.c: Renamed from peigen.c.
3327 (COFF_WITH_XX): Define this macro (will get expanded into
3328 COFF_WITH_pep or COFF_WITH_pe, depending on whether this is being
3329 compiled as peigen.c or pepigen.c.
3330 [COFF_WITH_pep]: Include "coff/ia64.h" instead of "coff/i386.h" to
3331 define the canonical PEP structures and definitions.
3332 (_bfd_XXi_swap_aouthdr_out): If pe->force_minimum_alignment is in
3333 effect, enforce minimum file and section alignments. If
3334 extra->Subsystem is IMAGE_SUBSYSTEM_UNKNOWN, set it to
3335 pe->target_subsystem (this defaults to IMAGE_SUBSYSTEM_UNKNOWN,
3336 so, by default, this is a no-op).
3337
3338 * libpei.h: Rename COFF_WITH_PEP to COFF_WITH_pep.
3339 (_bfd_XX_bfd_copy_private_bfd_data_common): Add macros to map
3340 _bfd_XXfoo to _bfd_pepfoo if COFF_WIT_PEP is defined and to
3341 _bfd_pefoo if it's not defined. Use these macros to define
3342 coff swap macros.
3343
3344 * libcoff.h (pe_tdata): Add members target_subsystem and
3345 force_minimum_alignment.
3346
3347 * efi-app-ia64.c (COFF_WITH_pep): Rename COFF_WITH_PEP to
3348 COFF_WITH_pep.
3349 (PEI_TARGET_SUBSYSTEM): Rename from PEI_DEFAULT_TARGET_SUBSYSTEM.
3350
3351 * configure.in (bfd_efi_app_ia64_vec): Use pepigen.lo instead of
3352 peigen.lo.
3353
3354 * coff-ia64.c: Rename COFF_WITH_PEP to COFF_WITH_pep.
3355 (AOUTSZ): Rename PEP64AOUTSZ and PEP64AOUTHDR to PEPAOUTSZ and
3356 PEPAOUTHDR.
3357
3358 * Makefile.in (BFD64_BACKENDS): Mention pepigen.lo.
3359 (BFD64_BACKENDS_CFILES): Mention pepigen.c
3360 (peigen.c): Add rule to generate from peXXigen.c.
3361 (pepigen.c): Ditto.
3362 (pepigen.lo): List dependencies for pepigen.lo.
3363
33642001-02-13 Alan Modra <alan@linuxcare.com.au>
3365
3366 * elf32-hppa.c (elf32_hppa_set_gp): Handle weak $global$. If
3367 $global$ referenced but not defined, set its value here.
3368
33692001-02-09 Bo Thorsen <bo@suse.de>
3370
3371 * elf64-x86-64.c (elf64_x86_64_check_relocs): Set .rela.got section
3372 alignment to 3.
3373 (elf64_x86_64_check_relocs): Write R_X86_64_GOTPCREL GOT entry
3374 and relocation.
3375 (elf64_x86_64_relocate_section): Fix formatting.
3376 (elf64_x86_64_relocate_section): Fix addend for relocation of
3377 R_X86_64_(8|16|32|PC8|PC16|PC32).
3378
33792001-02-12 Jan Hubicka <jh@suse.cz>
3380
3381 * elf64-x86-64.c (x86_64_elf_howto): Fix name of R_X86_64_GOTPCREL.
3382
33832001-02-11 H.J. Lu <hjl@gnu.org>
3384
3385 * elflink.h (elf_bfd_final_link): Use file_align for SYMTAB
3386 alignment.
3387
33882001-02-11 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
3389
3390 * elf32-mips.c (mips_elf_create_dynamic_relocation): Undo patch
3391 from 2000-10-13. Do not add the symbol's value for R_MIPS_REL32
3392 relocations against dynsym symbols.
3393
3394 * elf32-mips.c (elf_mips_howto_table): Fix the comment on
3395 the R_MIPS_26 relocation.
3396 (mips_elf_calculate_relocation): Use (p + 4) instead of p for
3397 the R_MIPS_26 relocation.
3398 (mips_elf_perform_relocation): Fix the comment on the R_MIPS16_26
3399 relocation.
3400 * elf64-mips.c (mips_elf64_howto_table_rel): Fix the comment on
3401 the R_MIPS_26 relocation.
3402 (mips_elf64_howto_table_rela): Likewise.
3403
3404 * elf32-mips.c (struct mips_elf_link_hash_entry): Added no_fn_stub
3405 member to mark symbols that have non-CALL relocations against
3406 them.
3407 (mips_elf_link_hash_newfunc): Initialize no_fn_stub.
3408 (mips_elf_calculate_relocation): Handle R_MIPS_CALL16 like
3409 R_MIPS_GOT16.
3410 (_bfd_mips_elf_check_relocs): Set no_fn_stub for a symbol if a
3411 non-CALL relocation against it is encountered.
3412 (_bfd_mips_elf_copy_indirect_symbol): Merge no_fn_stub as well.
3413 (_bfd_mips_elf_adjust_dynamic_symbol): Only create a stub if
3414 no_fn_stub is not set.
3415
3416 * elf32-mips.c (mips_elf_output_extsym): Get the output section
3417 information from the real symbol for indirect ones.
3418 Check no_fn_stub to find out if a symbol has a function stub
3419 indeed.
3420
34212001-02-11 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3422
3423 * Makefile.am (stamp-lib): ranlib the libbfd.a in the build directory.
3424 * Makefile.in: Regenerate.
3425
34262001-02-09 David Mosberger <davidm@hpl.hp.com>
3427
3428 * elfxx-ia64.c (is_unwind_section_name): New function. Returns
3429 true if section name is an unwind table section name.
3430 (elfNN_ia64_additional_program_headers): Count each unwind section
3431 separately.
3432 (elfNN_ia64_modify_segment_map): Install one unwind program header
3433 for each unwind separate section. Note: normally the linker
3434 script merges the unwind sections that go into a single segment,
3435 so this still generates at most one unwind program header per
3436 segment.
3437
3438 * elfxx-ia64.c (elfNN_ia64_section_from_shdr): Accept any section
3439 name for SHT_IA_64_UNWIND, not just .IA_64.unwind.
3440 (elfNN_ia64_fake_sections): Mark sections with names that start
3441 with .IA_64.unwind but not with .IA_64.unwind_info as an IA-64
3442 unwind section.
3443
3444 * elfxx-ia64.c (elfNN_ia64_final_write_processing): New function.
3445 Use it to make sh_info in unwind section point to the text section
3446 it applies to.
3447
34482001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
3449
3450 * Makefile.am: Add linux target for S/390.
3451 * archures.c: Likewise.
3452 * bfd-in2.h: Likewise.
3453 * config.bfd: Likewise.
3454 * configure.in: Likewise.
3455 * elf.c: Likewise.
3456 * libbfd.h: Likewise.
3457 * targets.c: Likewise.
3458 * cpu-s390.c: New file.
3459 * elf32-s390.c: New file.
3460 * elf64-s390.c: New file.
3461
34622001-02-09 Nick Clifton <nickc@redhat.com>
3463
3464 * peigen.c (_bfd_pe_get_symbol_info): Suppress addition of
3465 ImageBase. This has already been done by coff_swap_hdr_in.
3466
34672001-02-09 Jakub Jelinek <jakub@redhat.com>
3468
3469 * elf64-sparc.c (sparc64_elf_copy_private_bfd_data): New function.
3470
34712001-02-09 Jakub Jelinek <jakub@redhat.com>
3472
3473 * elf64-sparc.c (sparc64_elf_check_relocs): Don't trust reloc_count.
3474 (sparc64_elf_relocate_section): Likewise.
3475
34762001-02-09 Mark Kettenis <kettenis@gnu.org>
3477
3478 * elf32-sparc.c (_bfd_sparc_elf_howto_table): Treat R_SPARC_UA32
3479 similar to R_SPARC_32.
3480 * elf64-sparc.c (sparc64_elf_howto_table): Likewise.
3481
34822001-02-08 H.J. Lu <hjl@gnu.org>
3483
3484 * elf32-i386.c (elf_i386_check_relocs): Reserve R_386_PC32
3485 relocation entries for weak definitions when building DSO with
3486 -Bsymbolic.
3487
34882001-02-08 Richard Henderson <rth@redhat.com>
3489
3490 * elf64-alpha.c (alpha_elf_dynamic_symbol_p): Respect weakness
3491 before visibility. Locally defined protected symbols are not
3492 dynamic.
3493
34942001-02-08 Geoffrey Keating <geoffk@redhat.com>
3495
3496 * config.bfd: Enable coff64 for rs6000-*. Patch from
3497 <hzoli@austin.ibm.com>.
3498
34992001-02-07 Mark Elbrecht <snowball3@bigfoot.com>
3500
3501 * coffgen.c (coff_find_nearest_line): If stabs info is successfully
3502 found, do not attempt to find dwarf2 info before returning.
3503
35042001-02-07 Jakub Jelinek <jakub@redhat.com>
3505
3506 * elflink.h (is_global_symbol_definition): Rename to
3507 is_global_data_symbol_definition and have it reject function
3508 symbols.
3509 (elf_link_is_defined_archive_symbol): Use renamed function.
3510
35112001-02-07 Todd Vierling <tv@wasabisystems.com>
3512
3513 * libbfd-in.h (bfd_target_vector): Change extern array to pointer.
3514 * libbfd.h (bfd_target_vector): Likewise.
3515 * targets.c (bfd_target_vector): Rename to _bfd_target_vector and
3516 make static; create pointer reference named bfd_target_vector.
3517 (_bfd_target_vector_entries): Calculate this based on the array
3518 typed _bfd_target_vector.
3519
35202001-02-06 H.J. Lu <hjl@gnu.org>
3521
3522 * elfxx-ia64.c (elfNN_ia64_dynamic_symbol_p): Only hidden and
3523 internal symbols are not dynamic.
3524 * elf64-alpha.c (alpha_elf_dynamic_symbol_p): Likewise.
3525
35262001-02-06 Nick Clifton <nickc@redhat.com>
3527
3528 * Makefile.am (BFD64_BACKENDS_CFILES): Remove elf64-ia64.c, so
3529 that it will not be pulled into the list of files that make up
3530 po/POTFILES.in.
3531 * Makefile.in: Regenerate.
3532 * po/bfd.pot: Regenerate.
3533
35342001-02-06 H.J. Lu <hjl@gnu.org>
3535
3536 * peicode.h (coff_swap_filehdr_in): Remove the e_magic
3537 checking.
3538 (pe_bfd_object_p): Rewrite with external_PEI_DOS_hdr and
3539 external_PEI_IMAGE_hdr.
3540
35412001-02-06 Kazu Hirata <kazu@hxi.com>
3542
3543 * elf-m10200.c: Fix formatting.
3544
35452001-02-04 Nick Clifton <nickc@redhat.com>
3546
3547 * elf32-v850.c (v850_elf_reloc): Do not convert reloc addend to PC
3548 rel, it will be handled later on.
3549
35502001-02-02 Fred Fish <fnf@ninemoons.com>
3551
3552 * Makefile.in: Fix typo.
3553
35542001-02-01 Kazu Hirata <kazu@hxi.com>
3555
3556 * elf-m10300.c: Fix formatting.
3557
35582001-01-30 Alan Modra <alan@linuxcare.com.au>
3559
3560 * elf64-hppa.c (elf64_hppa_elf_get_symbol_type): New function.
3561 (elf_backend_get_symbol_type): Define.
3562 (elf64_hppa_object_p): Set architecture and machine from elf
3563 header flags.
3564
35652001-01-30 Curtis L. Janssen <cljanss@ca.sandia.gov>
3566
3567 * elf64-alpha.c (elf64_alpha_find_nearest_line): Query dwarf2
3568 before mdebug.
3569
35702001-01-26 Richard Henderson <rth@redhat.com>
3571
3572 * elfxx-ia64.c (elfNN_ia64_dynamic_symbol_p): Return false
3573 for non-default visibility.
3574 * elf64-alpha.c (alpha_elf_dynamic_symbol_p): Likewise, but
3575 delete ugly macro and replace with pretty function.
3576
35772001-01-25 Mark Elbrecht <snowball3@bigfoot.com>
3578
3579 * coff-go32.c: Update copyright.
3580 * coff-stgo32.c: Likewise.
3581 * coff-go32.c (COFF_LONG_FILENAMES): Define.
3582 * coff-stgo32.c (COFF_LONG_FILENAMES): Likewise.
3583 * coff-go32.c (COFF_SECTION_ALIGNMENT_ENTRIES): Remove .bss entry.
3584 * coff-stgo32.c (COFF_SECTION_ALIGNMENT_ENTRIES): Likewise.
3585
35862001-01-25 Kazu Hirata <kazu@hxi.com>
3587
3588 * bfd-in2.h: Rebuild.
3589 * libbfd.h: Likewise.
3590
35912001-01-23 H.J. Lu <hjl@gnu.org>
3592
3593 * bfd-in2.h: Rebuild.
3594
35952001-01-23 H.J. Lu <hjl@gnu.org>
3596
3597 * vms-misc.c (_bfd_vms_next_record): Return -1 if PRIV(vms_buf)
3598 is NULL or PRIV(vms_rec) is outside of the buffer.
3599
36002001-01-23 Kazu Hirata <kazu@hxi.com>
3601
3602 * coff64-rs6000.c: Fix formatting.
3603 * coff-arm.c: Likewise.
3604 * coffgen.c: Likewise.
3605 * cofflink.c: Likewise.
3606 * coff-mcore.c: Likewise.
3607 * coff-mips.c: Likewise.
3608 * coff-pmac.c: Likewise.
3609 * coff-ppc.c: Likewise.
3610 * coff-rs6000.c: Likewise.
3611 * elf32.c: Likewise.
3612 * elf32-fr30.c: Likewise.
3613 * elf32-i370.c: Likewise.
3614 * elf32-i860.c: Likewise.
3615 * elf32-m32r.c: Likewise.
3616 * elf32-m68k.c: Likewise.
3617 * elf32-mcore.c: Likewise.
3618 * elf32-ppc.c: Likewise.
3619 * elf32-sh.c: Likewise.
3620 * elf32-v850.c: Likewise.
3621 * elf64-alpha.c: Likewise.
3622 * elf64-sparc.c: Likewise.
3623 * elflink.c: Likewise.
3624 * elflink.h: Likewise.
3625 * elf-m10200.c: Likewise.
3626 * elf-m10300.c: Likewise.
3627 * elfxx-ia64.c: Likewise.
3628
3629 * aoutx.h: Fix formatting.
3630 * bfd.c: Likewise.
3631 * bfd-in2.h: Likewise.
3632 * bfd-in.h: Likewise.
3633 * cpu-i386.c: Likewise.
3634 * cpu-m68hc11.c: Likewise.
3635 * dwarf2.c: Likewise.
3636 * elf64-x86-64.c: Likewise.
3637 * format.c: Likewise.
3638 * freebsd.h: Likewise.
3639 * hash.c: Likewise.
3640 * hp300hpux.c: Likewise.
3641 * hppabsd-core.c: Likewise.
3642 * hpux-core.c: Likewise.
3643
36442001-01-22 Bo Thorsen <bo@suse.de>
3645
3646 * elf64-x86-64.c: Added PIC support for X86-64.
3647 (elf64_x86_64_link_hash_newfunc): Function added.
3648 (elf64_x86_64_link_hash_table_create): Likewise.
3649 (elf64_x86_64_check_relocs): Likewise.
3650 (elf64_x86_64_gc_mark_hook): Likewise.
3651 (elf64_x86_64_gc_sweep_hook): Likewise.
3652 (elf64_x86_64_adjust_dynamic_symbol): Likewise.
3653 (elf64_x86_64_size_dynamic_sections): Likewise.
3654 (elf64_x86_64_discard_copies): Likewise.
3655 (elf64_x86_64_finish_dynamic_symbol): Likewise.
3656 (elf64_x86_64_finish_dynamic_sections): Likewise.
3657 (elf64_x86_64_relocate_section): Add relocation of PIC sections.
3658
36592001-01-21 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
3660
3661 * Makefile.am (install-data-local): Make use of $(DESTDIR).
3662 * Makefile.in: Regenerate.
3663
36642001-01-21 Kazu Hirata <kazu@hxi.com>
3665
3666 * coff-a29k.c: Fix formatting.
3667
36682001-01-19 H.J. Lu <hjl@gnu.org>
3669
3670 * elf32-i386.c (elf_i386_check_relocs): Report files with bad
3671 relocation section names.
3672 (elf_i386_relocate_section): Report files with bad relocation
3673 section names and return false.
3674
36752001-01-17 Bo Thorsen <bo@suse.de>
3676
3677 * targets.c: Alphabetize list of xvecs.
3678
36792001-01-14 Alan Modra <alan@linuxcare.com.au>
3680
3681 * config.bfd: Add linux target variant for elfxx-hppa.
3682 * configure.in: Recognize bfd_elf32_hppa_linux_vec and
3683 bfd_elf64_hppa_linux_vec.
3684 * configure: Regenerate.
3685 * elf64-hppa.c: Include elf64-target.h again to support linux
3686 target variant.
3687 (elf64_hppa_post_process_headers): Set ELFOSABI_LINUX for linux.
3688 * elf32-hppa.c: Include elf32-target.h again to support linux
3689 target variant.
3690 (elf32_hppa_post_process_headers): New function.
3691 (elf_backend_post_process_headers): Define.
3692 * targets.c (bfd_target_vector): Add bfd_elf64_hppa_linux_vec and
3693 bfd_elf32_hppa_linux_vec.
3694
3695 * elf32-hppa.c (elf32_hppa_link_hash_table): Add text_segment_base,
3696 and data_segment_base fields.
3697 (elf32_hppa_link_hash_table_create ): Init them.
3698 (elf32_hppa_check_relocs): Update comments.
3699 (hppa_record_segment_addr): New function.
3700 (elf32_hppa_relocate_section): Call it.
3701 (final_link_relocate): Handle R_PARISC_SEGREL32.
3702 (elf32_hppa_final_link): New function.
3703 (bfd_elf32_bfd_final_link): Define to call it.
3704 (hppa_unwind_entry_compare): New function.
3705 * cache.c (bfd_open_file): Create files in write+read mode.
3706
3707 * elf-hppa.h (elf_hppa_howto_table): Set bitsize value for
3708 SEGREL32 and numerous other relocs. Change duplicate
3709 R_PARISC_NONE relocs to R_PARISC_UNIMPLEMENTED.
3710
3711 * opncls.c (bfd_fdopenr): Add parens like the comment says around
3712 O_ACCMODE.
3713
3714 * elf32-hppa.c (elf32_hppa_size_dynamic_sections): Don't create
3715 .plt entries for DT_INIT and DT_FINI.
3716 (elf32_hppa_finish_dynamic_sections): Remove special handling of
3717 DT_INIT and DT_FINI.
3718
3719 * elf64-hppa.c (elf64_hppa_finish_dynamic_symbol): Use 16-bit
3720 offsets for stub .plt access if wide mode. Check offset in range.
3721
37222001-01-13 Nick Clifton <nickc@redhat.com>
3723
3724 * elf32-fr30.c (fr30_elf_howto_table): Remove spurious blank
3725 line.
3726
3727 * coffcode.h (coff_canonicalize_reloc): Remove spurious blank
3728 line.
3729
37302001-01-12 Alan Modra <alan@linuxcare.com.au>
3731
3732 * configure.in ([bfd_elf64_x86_64_vec]): Set target64.
3733 * configure: Regenerate.
3734
37352001-01-11 Peter Targett <peter.targett@arccores.com>
3736
3737 * bfd-in2.h (bfd_architecture): Add bfd_mach_arc_5,
3738 bfd_mach_arc_6, bfd_mach_arc_7, bfd_mach_arc_8 for ARC variants.
3739 * cpu-arc.c (arch_info_struct): Add entries for variants.
3740 (bfd_arc_arch) Set default to bfd_mach_arc_5.
3741 (arc_get_mach) Don't assume machine names prefixed arc- before
3742 testing.
3743 * elf32-arc.c (arc_elf_object_p): Set machine number based on new
3744 selections.
3745 (arc_elf_final_write_processing) Likewise.
3746 (ELF_MACHINE_CODE) Use EM_ARC.
3747
37482001-01-10 Nick Clifton <nickc@redhat.com>
3749
3750 * coff-arm.c (LOCAL_LABEL_PREFIX): Change definition to "".
3751
37522001-01-07 Philip Blundell <philb@gnu.org>
3753
3754 * README: Replace `bug-gnu-utils@gnu.org' with
3755 `bug-binutils@gnu.org'.
3756
37572001-01-04 Kazu Hirata <kazu@hxi.com>
3758
3759 * som.c: Fix formatting.
3760
37612001-01-03 Kazu Hirata <kazu@hxi.com>
3762
3763 * ecoffswap.h: Fix formatting.
3764 * elf-bfd.h: Likewise.
3765 * elfarm-nabi.c: Likewise.
3766 * elfarm-oabi.c: Likewise.
3767 * elfcode.h: Likewise.
3768 * elfcore.h: Likewise.
3769 * elflink.c: Likewise.
3770 * elflink.h: Likewise.
3771 * elfxx-ia64.c: Likewise.
3772 * elfxx-target.h: Likewise.
3773 * libbfd.c: Likewise
3774 * linker.c: Likewise.
3775 * lynx-core.c: Likewise.
3776
37772001-01-02 Kazu Hirata <kazu@hxi.com>
3778
3779 * pc532-mach.c: Fix formatting.
3780 * pe-arm.c: Likewise.
3781 * pe-i386.c: Likewise.
3782 * pe-mips.c: Likewise.
3783 * pe-ppc.c: Likewise.
3784 * pe-sh.c: Likewise.
3785 * pei-mips.c: Likewise.
3786 * pei-sh.c: Likewise.
3787 * peicode.h: Likewise.
3788 * ppcboot.c: Likewise.
3789 * ptrace-core.c: Likewise.
3790
37912001-01-01 Kazu Hirata <kazu@hxi.com>
3792
3793 * reloc.c: Fix formatting.
3794 * riscix.c: Likewise.
3795 * rs6000-core.c: Likewise.
3796 * xcoff-target.h: Likewise.
3797
37982000-12-29 Hans-Peter Nilsson <hp@bitrange.com>
3799
3800 * elfcode.h (elf_object_p): Also restore the bfd mach field on
3801 error, by calling bfd_default_set_arch_mach with incoming
3802 values.
3803
38042000-12-26 Kazu Hirata <kazu@hxi.com>
3805
3806 * vaxnetbsd.c: Fix formatting.
3807 * versados.c: Likewise.
3808 * vms-gsd.c: Likewise.
3809 * vms-hdr.c: Likewise.
3810 * vms-misc.c: Likewise.
3811
38122000-12-25 Alexandre Oliva <aoliva@redhat.com>
3813
3814 * archive.c (coff_write_armap): Don't write more than symbol_count
3815 `archive_member_file_ptr's.
3816
38172000-12-25 Kazu Hirata <kazu@hxi.com>
3818
3819 * vms-tir.c: Fix formatting.
3820
38212000-12-23 Kazu Hirata <kazu@hxi.com>
3822
3823 * vms.c: Fix formatting.
3824 * vms.h: Likewise.
3825
38262000-12-21 Santeri Paavolainen <santtu@ssh.com>
3827
3828 * vms-hdr.c: Include alloca.h if HAVE_ALLOCA_H is defined.
3829
3830 * peicode.h (pe_ILF_object_p): Add const to import of TARGET_LITTLE_SYM.
3831
3832 * elf32-m32r.c (m32r_elf_generic_reloc): Add cast to avoid (void *)
3833 arithmetic.
3834
3835 * elf32-fr30.c: Add casts to avoid (void *) arithmetic.
3836
3837 * coffcode.h (styp_to_sec_flags): Add empty statement after label.
3838
38392000-12-21 Richard Sandiford <rsandifo@redhat.com>
3840
3841 * libbfd.c (bfd_get_bits): Added
3842 (bfd_put_bits): Likewise
3843 * bfd-in.h: Declared the above.
3844 * bfd-in2.h: Regenerated.
3845
38462000-12-20 Kazu Hirata <kazu@hxi.com>
3847
3848 * targets.c: Fix formatting.
3849 * tekhex.c: Likewise.
3850 * trad-core.c: Likewise.
3851
38522000-12-19 Kazu Hirata <kazu@hxi.com>
3853
3854 * sco5-core.c: Fix formatting.
3855 * section.c: Likewise.
3856 * sparclinux.c: Likewise.
3857 * sparclynx.c: Likewise.
3858 * sparcnetbsd.c: Likewise.
3859 * srec.c: Likewise.
3860 * stabs.c: Likewise.
3861 * stab-syms.c: Likewise.
3862 * sunos.c: Likewise.
3863 * syms.c: Likewise.
3864 * sysdep.h: Likewise.
3865
38662000-12-18 Nick Clifton <nickc@redhat.com>
3867
3868 * coff-arm.c (EXTRA_S_FLAGS): Only define if not already
3869 defined.
3870 * epoc-pe-arm.c (EXTRA_S_FLAGS): Define.
3871 * epoc-pei-arm.c (EXTRA_S_FLAGS): Define.
3872
38732000-12-18 Nick Clifton <nickc@redhat.com>
3874
3875 * vms-misc.c (_bfd_vms_get_record): Add default case to
3876 file_format switch.
3877
38782000-12-15 Miloslav Trmac <mitr@volny.cz>
3879
3880 * elfcore.h (elf_core_file_p): Move to the start of the program
3881 headers before attempting to read them.
3882
38832000-12-14 Kazu Hirata <kazu@hxi.com>
3884
3885 * peigen.c: Fix formatting.
3886 * som.c: Likewise.
3887 * som.h: Likewise.
3888
38892000-12-13 Kazu Hirata <kazu@hxi.com>
3890
3891 * peigen.c: Fix formatting.
3892
38932000-12-12 Jim Wilson <wilson@redhat.com>
3894
3895 * elfxx-ia64.c (get_dyn_sym_info): Cast %p argument to void *.
3896
38972000-12-08 Mark Salter <msalter@redhat.com>
3898
3899 * binary.c (binary_set_section_contents): Ignore sections
3900 with zero size.
3901
39022000-12-12 Kazu Hirata <kazu@hxi.com>
3903
3904 * m68klinux.c: Fix formatting.
3905 * m68knetbsd.c: Likewise.
3906 * mipsbsd.c: Likewise.
3907 * netbsd-core.c: Likewise.
3908 * netbsd.h: Likewise.
3909 * newsos3.c: Likewise.
3910 * nlm32-alpha.c: Likewise.
3911 * nlm32-i386.c: Likewise.
3912 * nlm32-ppc.c: Likewise.
3913 * nlm32-sparc.c: Likewise.
3914 * nlmcode.h: Likewise.
3915 * nlmswap.h: Likewise.
3916 * nlm-target.h: Likewise.
3917 * ns32knetbsd.c: Likewise.
3918
39192000-12-10 Fred Fish <fnf@be.com>
3920
3921 * elflink.h (elf_link_output_extsym): Don't complain about undefined
3922 symbols in shared objects if allow_shlib_undefined is true.
3923
39242000-12-12 Nick Clifton <nickc@redhat.com>
3925
3926 * cpu-sh.c: Fix formattng.
3927 * elf.c: Fix formattng.
3928 * elf32-mips.c: Fix formattng.
3929 * elf32-sh.c: Fix formattng.
3930 * elf64-alpha.c: Fix formattng.
3931
39322000-12-09 Nick Clifton <nickc@redhat.com>
3933
3934 * elf32-mips.c (_bfd_mips_elf_find_nearest_line): Pass
3935 dwarf2_find_line_info as last parameter to invocation of
3936 _bfd_dwarf2_find_nearest_line.
3937 * elf32-arm.h (elf32_arm_find_nearest_line): Pass
3938 dwarf2_find_line_info as last parameter to invocation of
3939 _bfd_dwarf2_find_nearest_line.
3940
39412000-12-08 Mark Elbrecht <snowball3@bigfoot.com>
3942
3943 * Makefile.am (BFD32_BACKENDS): Move dwarf2.lo from here...
3944 (BFD_LIBS): ...to here.
3945 (BFD32_BACKENDS_CFILES): Move dwarf2.c from here...
3946 (BFD_LIBS_CFILES): ...to here.
3947 * Makefile.in: Regenerate.
3948 * configure.in: Remove dwarf.lo from the elf shell variable.
3949 * configure: Regenerate.
3950 * libcoff-in.h (coff_tdata): Add pointer dwarf2_find_line_info.
3951 * libcoff.h: Regenerate.
3952 * coffgen.c (coff_find_nearest_line): Call
3953 _bfd_dwarf2_find_nearest_line.
3954 * dwarf2.c (_bfd_dwarf2_find_nearest_line): Add parameter. Update
3955 accordingly.
3956 (read_abbrevs): Likewise
3957 (decode_line_info): Likewise.
3958 (parse_comp_unit): Likewise.
3959 (comp_unit_find_nearest_line): Likewise.
3960 * libbfd-in.h (_bfd_dwarf2_find_nearest_line): Update prototype.
3961 * libbfd.h: Regenerate.
3962 * elf.c (_bfd_elf_find_nearest_line): Update call.
3963 * elf-bfd.h (elf_obj_tdata): Change dwarf2_find_line_info to type PTR.
3964 * dwarf2.c (concat_filename): Use IS_ABSOLUTE_PATH.
3965 * coffcode.h (STYP_XCOFF_DEBUG, STYP_DEBUG_INFO): New macros.
3966 (sec_to_styp_flags): Use them. Handle DWARF2 sections.
3967 (styp_to_sec_flags): Handle DWARF2 sections.
3968 * elf32-arm.h (elf32_arm_find_nearest_line): Add parameter to call
3969 to _bfd_find_nearest_line.
3970 * elf32-mips.c (_bfd_mips_elf_find_nearest_line): Add parameter to
3971 call to _bfd_find_nearest_line.
3972
39732000-12-08 Kazu Hirata <kazu@hxi.com>
3974
3975 * coffgen.c: Fix formatting.
3976 * elf-m10300.c: Likewise.
3977 * elf32-i386.c: Likewise.
3978 * elf32-i960.c: Likewise.
3979 * elf32-m68k.c: Likewise.
3980 * elf32-mcore.c: Likewise.
3981 * elf32-ppc.c: Likewise.
3982 * elf32-sh.c: Likewise.
3983 * elf32-sparc.c: Likewise.
3984 * elf32-v850.c: Likewise.
3985 * elf64-alpha.c: Likewise.
3986 * elf64-hppa.c: Likewise.
3987 * elf64-mips.c: Likewise.
3988 * elf64-sparc.c: Likewise.
3989
39902000-12-07 Kazu Hirata <kazu@hxi.com>
3991
3992 * elf32-ppc.c: Fix formatting.
3993 * elf64-x86-64.c: Likewise.
3994
39952000-12-06 Ulf Carlsson <ulfc@engr.sgi.com>
3996
3997 From Ralf Baechle <ralf@gnu.org>
3998
3999 * elf32-mips.c (elf32_mips_merge_private_bfd_data): Always permit
4000 BFDs containing no sections or empty .text, .data or .bss sections
4001 to be merged, regardless of their flags.
4002
40032000-12-06 Kazu Hirata <kazu@hxi.com>
4004
4005 * elf32-m32r.c: Fix formatting.
4006 * elf32-m68hc11.c: Likewise.
4007 * elf32-m68hc12.c: Likewise.
4008 * elf32-m68k.c: Likewise.
4009 * elf32-mcore.c: Likewise.
4010 * elf32-pj.c: Likewise.
4011 * elf32-ppc.c: Likewise.
4012
40132000-12-05 Kazu Hirata <kazu@hxi.com>
4014
4015 * elf32-fr30.c: Fix formatting.
4016 * elf32-hppa.c: Likewise.
4017 * elf32-i370.c: Likewise.
4018 * elf32-i386.c: Likewise.
4019 * elf32-i860.c: Likewise.
4020 * elf32-i960.c: Likewise.
4021
40222000-12-03 Kazu Hirata <kazu@hxi.com>
4023
4024 * elf32-arm.h: Fix formatting.
4025 * elf32-avr.c: Likewise.
4026 * elf32-cris.c: Likewise.
4027 * elf32-d10v.c: Likewise.
4028 * elf32-d30v.c: Likewise.
4029 * elf-hppa.h: Likewise.
4030 * elf-m10200.c: Likewise.
4031 * elf-m10300.c: Likewise.
4032
40332000-12-01 Chris Demetriou <cgd@sibyte.com>
4034
4035 * aoutx.h (NAME(aout,machine_type)): Add bfd_mach_mips32 and
4036 bfd_mach_mips32_4k. Update FIXME comment.
4037 * archures.c (bfd_mach_mips32): New constant.
4038 (bfd_mach_mips4K, bfd_mach_mips32_4k) Rename the former to
4039 the latter, renumber it.
4040 * bfd-in2.h (bfd_mach_mips32): New constant.
4041 (bfd_mach_mips4K, bfd_mach_mips32_4k) Rename the former to
4042 the latter, renumber it.
4043 * cpu-mips.c (I_mips32): New constant.
4044 (I_mips4K, I_mips32_4k): Rename the former to the latter.
4045 (arch_info_struct): Add bfd_mach_mips32 entry, replace
4046 bfd_mach_mips4K entry with bfd_mach_mips32_4k entry.
4047 * elf32-mips.c (elf_mips_isa): Add E_MIPS_ARCH_32 case.
4048 (elf_mips_mach): Likewise. Also, replace E_MIPS_MACH_MIPS32
4049 with E_MIPS_MACH_MIPS32_4K.
4050 (_bfd_mips_elf_final_write_processing): Replace
4051 bfd_mach_mips4K with bfd_mach_mips32_4k case, add
4052 bfd_mach_mips32 case.
4053 (_bfd_mips_elf_merge_private_bfd_data): Generalize ISA mixing
4054 comparison with support for MIPS32.
4055 (_bfd_mips_elf_print_private_bfd_data): Print ISA name for
4056 MIPS32.
4057
4058 * aoutx.h (NAME(aout,machine_type)): Add cases for
4059 bfd_mach_mips5 and bfd_mach_mips64.
4060 * archures.c (bfd_mach_mips5, bfd_mach_mips64): New constants.
4061 * bfd-in2.h (bfd_mach_mips5, bfd_mach_mips64): Likewise.
4062 * cpu_mips.c (I_mips5, I_mips64): New definitions.
4063 (arch_info_struct): Add entries for bfd_mach_mips5 and
4064 bfd_mach_mips64.
4065 * elf32-mips.c (elf_mips_isa, elf_mips_mach,
4066 _bfd_mips_elf_print_private_bfd_data): Add cases for
4067 E_MIPS_ARCH_5 and E_MIPS_ARCH_64.
4068 (_bfd_mips_elf_final_write_processing): Add cases for
4069 bfd_mach_mips5 and bfd_mach_mips64.
4070
4071 * aoutx.h (NAME(aout,machine_type)): Add a
4072 bfd_mach_mips_sb1 case.
4073 * archures.c (bfd_mach_mips_sb1): New constant.
4074 * bfd-in2.h (bfd_mach_mips_sb1): New constant.
4075 * cpu-mips.c (I_sb1): New constant.
4076 (arch_info_struct): Add entry for bfd_mach_mips_sb1.
4077 * elf32-mips.c (elf_mips_mach): Add case for
4078 E_MIPS_MACH_SB1.
4079 (_bfd_mips_elf_final_write_processing): Add case for
4080 bfd_mach_mips_sb1.
4081
40822000-12-01 Joel Sherrill <joel@OARcorp.com>
4083
4084 * config.bfd (arm-*-rtems*, a29k-*rtems*): New targets.
4085 (sparc*-*-rtemself*, sparc*-*-rtemsaout*): New targets.
4086 (sparc*-*-rtems*): Switched from a.out to ELF.
4087
40882000-11-30 Jan Hubicka <jh@suse.cz>
4089
4090 * Makefile.am (BFD64_BACKENDS): Add elf64-x86-64.lo
4091 BFD64_BACKENDS_CFILES): Add elf64-x86-64.c
4092 (elf64-x86-64.lo): Add dependencies.
4093 * archures.c (DESCRIPTION): Add bfd_mach_x86_64,
4094 bfd_mach_x86_64_intel_syntax.
4095 * elf.c (prep_headers): Use EM_x86_64 for 64bit output.
4096 * config.bfd (x86_64): Add.
4097 * configure.in: Add support for bfd_elf64_x86_64_vec.
4098 * cpu-i386.c (bfd_x86_64_arch_intel_syntax, bfd_x86_64_arch): Add.
4099 (bfd_i386_arch, i8086_ar): Link in.
4100 * elf64-x86-64.c: New file.
4101 * reloc.c (ENUMDOC): Add BFD_RELOC_X86_64*.
4102 * targets.c (bfd_elf64_x86_64_vec): Add.
4103 (bfd_target_vect): Add bfd_elf64_x86_64_vec.
4104
41052000-11-30 Kazu Hirata <kazu@hxi.com>
4106
4107 * xcofflink.c: Fix formatting.
4108
41092000-11-28 Kazu Hirata <kazu@hxi.com>
4110
4111 * aoutx.h: Fix formatting.
4112 * bfd-in.h: Likewise.
4113 * bfd-in2.h: Likewise.
4114 * cache.c: Likewise.
4115 * cisco-core.c: Likewise.
4116 * coff64-rs6000.c: Likewise.
4117 * coffcode.h: Likewise.
4118 * coffswap.h: Likewise.
4119 * corefile.c: Likewise.
4120 * elf32-mips.c: Likewise.
4121
41222000-11-27 Kazu Hirata <kazu@hxi.com>
4123
4124 * aout-adobe.c: Fix formatting.
4125 * coff64-rs6000.c: Likewise.
4126 * coffgen.c: Likewise.
4127 * cofflink.c: Likewise.
4128
41292000-11-27 Philip Blundell <pb@futuretv.com>
4130
4131 * libcoff-in.h (coff_tdata): Add `strings_written' flag.
4132 (obj_coff_strings_written): New accessor macro for above.
4133 * libcoff.h: Regenerate.
4134 * cofflink.c (_bfd_coff_final_link): Say that we wrote the
4135 strings.
4136 * coffcode.h (coff_write_object_contents): No need to write out
4137 the string table if it's already been done.
4138
41392000-11-22 Philip Blundell <pb@futuretv.com>
4140
4141 * cofflink.c (_bfd_coff_generic_relocate_section): Don't object to
4142 weak undefined symbols.
4143
41442000-11-24 Nick Clifton <nickc@redhat.com>
4145
4146 * archures.c (bfd_mach_arm_5TE): Define.
4147 (bfd_mach_arm+XScale): Define.
4148 * bfd-in2.h: Regenerate.
4149
4150 * coff-arm.c (coff_arm_reloc_type_lookup): Accept
4151 BFD_RELOC_ARM_PCREL_BLX.
4152
4153 * coffcode.h (coff_set_flags): Set flags for 5t, 5te and
4154 XScale machine numbers.
4155
4156 * config.bfd (xscale-elf): Add target.
4157 (xscale-coff): Add target.
4158
4159 * cpu-arm.c: Add xscale machine name.
4160 Add v5t, v5te and XScale machine numbers.
4161
41622000-11-23 Kazu Hirata <kazu@hxi.com>
4163
4164 * aix386-core.c: Fix formatting.
4165
41662000-11-22 Jim Wilson <wilson@redhat.com>
4167
4168 * coff-ia64.c (howto_table): Use EMPTY_HOWTO.
4169 (in_reloc_p): Add ATTRIBUTE_UNUSED to unused parameters.
4170 * cpu-ia64-opc.c (ins_rsvd, ext_rsvd, ins_const, ext_const): Likewise.
4171 (ins_imms_scaled): Initialize sign_bit at function entry.
4172 (elf64_ia64_operands): Add missing initializers.
4173 * elfxx-ia64.c (elfNN_ia64_reloc, elfNN_ia64_reloc_type_lookup,
4174 elfNN_ia64_info_to_howto, elfNN_ia64_fake_sections,
4175 elfNN_ia64_add_symbol_hook, elfNN_ia64_is_local_label_name,
4176 elfNN_ia64_local_hash_table_init, get_fptr, get_pltoff,
4177 elfNN_ia64_adjust_dynamic_symbol): Add ATTRIBUTE_UNUSED for unused
4178 parameters.
4179 (elfNN_ia64_info_to_howto): Initialize free_relocs, free_contents,
4180 and free_extsyms at function entry.
4181 (elfNN_add_symbol_hook): Add unsigned cast to bfd_get_gp_size result.
4182 (elfNN_ia64_create_dynamic_sections): Delete unused local h.
4183 (get_got): Delete unused local srel.
4184 (elfNN_ia64_check_relocs): Initialize dynrel_type when declared.
4185 (elfNN_ia64_relocate_section): Delete unused local dynindx.
4186
41872000-11-21 Kazu Hirata <kazu@hxi.com>
4188
4189 * coff-a29k.c: Fix formatting.
4190 * coff-h8500.c: Likewise.
4191 * coff-i960.c: Likewise.
4192 * coff-ppc.c: Likewise.
4193 * coff-rs6000.c: Likewise.
4194 * coff-stgo32.c: Likewise.
4195 * coff-tic54x.c: Likewise.
4196 * coff-w65.c: Likewise.
4197 * cpu-h8500.c: Likewise.
4198 * cpu-hppa.c: Likewise.
4199 * cpu-ns32k.c: Likewise.
4200 * ecoff.c: Likewise.
4201 * ecofflink.c: Likewise.
4202
42032000-11-21 Nick Clifton <nickc@redhat.com>
4204
4205 * elf32-sh.c (sh_elf_reloc_loop): Fix compile time warning, and
4206 remove possibility of infinite loop.
4207
42082000-11-20 Kazu Hirata <kazu@hxi.com>
4209
4210 * aix386-core.c: Fix formatting.
4211 * aout-adobe.c: Likewise.
4212 * aout-arm.c: Likewise.
4213 * aout-encap.c: Likewise.
4214 * aout-ns32k.c: Likewise.
4215 * aout-target.h: Likewise.
4216 * aout-tic30.c: Likewise.
4217 * aoutf1.h: Likewise.
4218 * aoutx.h: Likewise.
4219 * archive.c: Likewise.
4220 * bfd-in.h: Likewise.
4221 * bfd-in2.h: Likewise.
4222 * bfd.c: Likewise.
4223 * bout.c: Likewise.
4224
42252000-11-17 H.J. Lu <hjl@gnu.org>
4226
4227 * elfxx-ia64.c (elfNN_ia64_size_dynamic_sections): Don't create
4228 pltoff entries for DT_INIT and DT_FINI.
4229 (elfNN_ia64_final_link): Don't set DT_INIT/FINI entries.
4230 (elfNN_ia64_finish_dynamic_sections): Don't fill in DT_INIT/FINI
4231 entries.
4232
42332000-11-16 Richard Henderson <rth@redhat.com>
4234
4235 * elfxx-ia64.c (elfNN_ia64_check_relocs): Handle IPLT relocs.
4236 (allocate_dynrel_entries): Likewise.
4237 (elfNN_ia64_relocate_section): Likewise. Set REL addends correctly.
4238 (set_pltoff_entry): Likewise.
4239 (ia64_howto_table): Remove R_IA64_SEGBASE, and R_IA64_EPLT[ML]SB
4240 (elfNN_ia64_reloc_type_lookup): Likewise.
4241 (elfNN_ia64_install_value): Likewise.
4242 (elfNN_ia64_relocate_section): Likewise.
4243 * reloc.c (BFD_RELOC_IA64_SEGBASE): Remove.
4244 (BFD_RELOC_IA64_EPLTMSB, BFD_RELOC_IA64_EPLTLSB): Remove.
4245
42462000-11-16 Kazu Hirata <kazu@hxi.com>
4247
4248 * cpu-a29k.c: Fix formatting.
4249 * cpu-alpha.c: Likewise.
4250 * cpu-arm.c: Likewise.
4251 * cpu-avr.c: Likewise.
4252 * cpu-d10v.c: Likewise.
4253 * cpu-h8500.c: Likewise.
4254 * cpu-hppa.c: Likewise.
4255 * cpu-i370.c: Likewise.
4256 * cpu-i386.c: Likewise.
4257 * cpu-i960.c: Likewise.
4258 * cpu-ia64-opc.c: Likewise.
4259 * cpu-ia64.c: Likewise.
4260 * cpu-m32r.c: Likewise.
4261 * cpu-m68hc11.c: Likewise.
4262 * cpu-m68hc12.c: Likewise.
4263 * cpu-m68k.c: Likewise.
4264 * cpu-m88k.c: Likewise.
4265 * cpu-mips.c: Likewise.
4266 * cpu-ns32k.c: Likewise.
4267 * cpu-pj.c: Likewise.
4268 * cpu-powerpc.c: Likewise.
4269 * cpu-sh.c: Likewise.
4270 * cpu-sparc.c: Likewise.
4271 * cpu-tic54x.c: Likewise.
4272 * cpu-v850.c: Likewise.
4273 * cpu-vax.c: Likewise.
4274 * cpu-w65.c: Likewise.
4275 * cpu-we32k.c: Likewise.
4276 * cpu-z8k.c: Likewise.
4277 * dwarf1.c: Likewise.
4278 * dwarf2.c: Likewise.
4279
42802000-11-15 Kazu Hirata <kazu@hxi.com>
4281
4282 * coff-arm.c: Fix formatting.
4283 * coff-ppc.c: Likewise.
4284 * coff-rs6000.c: Likewise.
4285 * coff-sh.c: Likewise.
4286 * coff-sparc.c: Likewise.
4287 * coff-tic30.c: Likewise.
4288 * coff-tic54x.c: Likewise.
4289 * coff-tic80.c: Likewise.
4290 * coff-w65.c: Likewise.
4291 * coff-we32k.c: Likewise.
4292 * coff-z8k.c: Likewise.
4293
42942000-11-15 Richard Henderson <rth@redhat.com>
4295
4296 * elf64-alpha.c (elf64_alpha_check_relocs): Create the reloc
4297 section with the same ALLOC|LOAD flags as the source section.
4298
42992000-11-14 Jakub Jelinek <jakub@redhat.com>
4300
4301 * elf64-alpha.c (elf64_alpha_relax_opt_call): Only check bits used
4302 by STO_ALPHA constants.
4303
43042000-11-14 Kazu Hirata <kazu@hxi.com>
4305
4306 * coff-pmac.c: Fix formatting.
4307 * coff-ppc.c: Likewise.
4308
43092000-11-13 H.J. Lu <hjl@gnu.org>
4310
4311 * elflink.h (elf_link_add_object_symbols): Also add indirect
4312 symbols for common symbols with the default version.
4313
43142000-11-09 Philip Blundell <pb@futuretv.com>
4315
4316 * section.c (STD_SECTION): Set gc_mark flag.
4317
43182000-11-11 Kazu Hirata <kazu@hxi.com>
4319
4320 * coff-i960.c: Likewise.
4321 * coff-m68k.c: Likewise.
4322 * coff-m88k.c: Likewise.
4323 * coff-mcore.c: Likewise.
4324 * coff-mips.c: Likewise.
4325
43262000-11-11 Bernd Schmidt <bernds@cygnus.co.uk>
4327
4328 * elf32-sh.c (sh_elf_relocate_section): Ignore R_SH_NONE relocs.
4329
43302000-11-10 Kazu Hirata <kazu@hxi.com>
4331
4332 * coff-h8300.c: Fix formatting.
4333 * coff-h8500.c: Likewise.
4334 * coff-i386.c: Likewise.
4335 * coff-i860.c: Likewise.
4336 * coff-i960.c: Likewise.
4337 * coff-ia64.c: Likewise.
4338
43392000-11-09 Kazu Hirata <kazu@hxi.com>
4340
4341 * archive.c: Fix formatting.
4342 * archures.c: Likewise.
4343
43442000-11-07 Richard Henderson <rth@redhat.com>
4345
4346 * elfxx-ia64.c (elf64_ia64_final_link): New local unwind_output_sec.
4347 Set it before bfd_elf64_bfd_final_link call. Use it after the call.
4348 * section.c (bfd_set_section_contents): Call memcpy if
4349 section->contents set and location not equal to contents plus offset.
4350
43512000-11-08 Kazu Hirata <kazu@hxi.com>
4352
4353 * bfd-in.h: Fix formatting.
4354 * bfd-in2.h: Likewise.
4355 * bfd.c: Likewise.
4356 * binary.c: Likewise.
4357 * bout.c: Likewise.
4358 * coff-a29k.c: Likewise.
4359 * coff-alpha.c: Likewise.
4360 * coff-apollo.c: Likewise.
4361 * coff-aux.c: Likewise.
4362
43632000-11-07 Kazu Hirata <kazu@hxi.com>
4364
4365 * aix386-core.c: Fix formatting.
4366 * aoutf1.h: Likewise.
4367 * aoutx.h: Likewise.
4368 * archures.c: Likewise.
4369 * armnetbsd.c: Likewise.
4370
43712000-11-07 Alan Modra <alan@linuxcare.com.au>
4372
4373 * coff-h8300.c (special): Adjust reloc address.
4374
43752000-11-06 Steve Ellcey <sje@cup.hp.com>
4376
4377 * archures.c (bfd_mach_ia64_elf64, bfd_mach_ia64_elf32): Add defines
4378 to differentiate elf32 and elf64 on ia64.
4379 * bfd-in2.h: Regenerate.
4380 * config.bfd: Add target for "ia64*-*-hpux*".
4381 * configure.in: Add bfd_elf32_ia64_big_vec to selvecs switch.
4382 * configure: Regenerate.
4383 * cpu-ia64.c (bfd_ia64_elf32_arch): Add elf32 arch info structure.
4384 * targets.c: Add bfd_target bfd_elf32_ia64_big_vec.
4385
4386 * Makefile.am: Make elf32-ia64.c and elf64-ia64.c derived objects
4387 from elfxx-ia64.c. Add depenency rules for making elf32-ia64.lo.
4388 * Makefile.in: Regnerate.
4389 * elf64-ia64.c: Deleted.
4390 * elfxx-ia64.c: New file, paramaterized version of elf64-ia64.c.
4391
43922000-11-06 Kazu Hirata <kazu@hxi.com>
4393
4394 * aout-adobe.c: Fix formatting.
4395 * aout-arm.c: Likewise.
4396 * aout-cris.c: Likewise.
4397 * aout-encap.c: Likewise.
4398 * aout-ns32k.c: Likewise.
4399 * aout-target.h: Likewise.
4400 * aout-tic30.c: Likewise.
4401
44022000-11-05 Philip Blundell <philb@gnu.org>
4403
4404 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Always permit
4405 BFDs containing no sections to be merged, regardless of their flags.
4406
44072000-11-04 Philip Blundell <philb@gnu.org>
4408
4409 * elf32-arm.h (elf32_arm_relocate_section): Suppress error message
4410 if a relocation for an undefined symbol also results in an
4411 overflow.
4412
44132000-11-06 Christopher Faylor <cgf@cygnus.com>
4414
4415 * config.bfd: Add support for Sun Chorus.
4416
44172000-11-05 David O'Brien <obrien@FreeBSD.org>
4418
4419 * configure.in: Recognize alpha-*-freebsd*.
4420 * configure: Regenerate.
4421
44222000-11-02 Luciano Gemme <ishitawa@yahoo.com>
4423
4424 * srec.c (CHUNK): Rename to DEFAULT_CHUNK.
4425 (Chunk): New global variable set by a parameter in objcopy.c.
4426 (S3Forced): New global variable set by a parameter in
4427 objcopy.c.
4428 (srec_set_section_contents): If S3Forced is true, always generate
4429 S3 records.
4430 (srec_write_section): Use 'Chunk' to limit maximum length of S
4431 records.
4432
44332000-11-02 Per Lundberg <plundis@chaosdev.org>
4434
4435 * config.bfd: Add support for i[3456]86-chaosdev-storm-chaos.
4436 * Makefile.in: Regenerate.
4437 * bfd-in2.h: Regenerate.
4438 * po/bfd.pot: Regenerate.
4439
44402000-10-31 Philip Blundell <philb@gnu.org>
4441
4442 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Only handle
4443 EF_SOFT_FLOAT if it is defined.
4444
44452000-10-27 Philip Blundell <philb@gnu.org>
4446
4447 * elf32-arm.h (elf32_arm_copy_private_bfd_data): Don't refuse
4448 attempts to mix PIC code with non-PIC, just mark the output as
4449 being position dependent.
4450 (elf32_arm_merge_private_bfd_data): Likewise. Print an error
4451 message for EF_SOFT_FLOAT mismatches. Display diagnostics for
4452 all mismatches, not just the first one.
4453
44542000-10-25 Chris Demetriou <cgd@sibyte.com>
4455
4456 * ieee.c (ieee_archive_p): Plug one of many possible
4457 memory leaks in error handling.
4458
44592000-10-20 Jakub Jelinek <jakub@redhat.com>
4460
4461 * elf32-sparc.c (elf32_sparc_merge_private_bfd_data,
4462 elf32_sparc_object_p, elf32_sparc_final_write_processing):
4463 Support v8plusb.
4464 * elf64-sparc.c (sparc64_elf_merge_private_bfd_data,
4465 sparc64_elf_object_p): Support v9b.
4466 * archures.c: Declare v8plusb and v9b machines.
4467 * bfd-in2.h: Ditto.
4468 * cpu-sparc.c: Ditto.
4469
44702000-10-16 Geoffrey Keating <geoffk@shoggoth.cygnus.com>
4471
4472 * elf64-sparc.c (sparc64_elf_relocate_section): Clear the location
4473 of a GOT reloc.
4474
4475 * elf32-ppc.c (SYMBOL_REFERENCES_LOCAL): New macro.
4476 (SYMBOL_CALLS_LOCAL): New macro.
4477 (ppc_elf_adjust_dynamic_symbol): Use SYMBOL_CALLS_LOCAL.
4478 (ppc_elf_check_relocs): Use SYMBOL_REFERENCES_LOCAL.
4479 (ppc_elf_finish_dynamic_symbol): Use SYMBOL_REFERENCES_LOCAL.
4480 (ppc_elf_relocate_section): Use flag variable to determine
4481 whether the relocation refers to a local symbol.
4482 Test whether a PLTREL24 reloc will produce a reloc by looking
4483 to see whether a PLT entry was made.
4484
44852000-10-14 Geoffrey Keating <geoffk@shoggoth.cygnus.com>
4486
4487 * elf32-ppc.c (ppc_elf_finish_dynamic_symbol): Don't make PLT
4488 entries that could serve as a definition for a weak symbol.
4489
44902000-10-13 Ulf Carlsson <ulfc@engr.sgi.com>
4491
4492 From Ralf Baechle <ralf@gnu.org>
4493
4494 * elf32-mips.c (mips_elf_create_dynamic_relocation): New argument
4495 local_p. Add symbol value only for non-R_MIPS_REL32 relocations
4496 against local symbols.
4497 (_bfd_mips_elf_finish_dynamic_sections): Undo patch from 2000-10-01.
4498
44992000-10-12 Alan Modra <alan@linuxcare.com.au>
4500
4501 * section.c (struct sec): Add kept_section.
4502 (struct bfd_comdat_info): Remove sec, we can use above.
4503 (STD_SECTION): Add initializer.
4504 (bfd_make_section_anyway): Init here too.
4505
4506 * bfd-in2.h: Regenerate.
4507
4508 * elflink.h (elf_link_add_object_symbols): Remove unnecessary
4509 zeroing of `flags'.
4510 (elf_link_input_bfd): Set all asection->symbol->value's here, and
4511 fudge values for discarded link-once section symbols.
4512
4513 * elf64-hppa.c: Include alloca-conf.h
4514
45152000-10-11 Alan Modra <alan@linuxcare.com.au>
4516
4517 * elf.c (swap_out_syms): Revert 2000-10-07 changes.
4518
4519 * ieee.c (ieee_make_empty_symbol): Oops, bfd_zalloc needs another arg.
4520
45212000-10-10 Alan Modra <alan@linuxcare.com.au>
4522
4523 * ieee.c (ieee_make_empty_symbol): Use bfd_zalloc, not bfd_zmalloc.
4524
45252000-10-10 Tom Rix <trix@redhat.com>
4526
4527 * section.c (bfd_make_section_anyway): Release newsect ptr when
4528 newsect->symbol fails to alloc. Use bfd_release instead of free.
4529
45302000-10-09 Richard Henderson <rth@cygnus.com
4531
4532 * elf64-ia64.c (elf64_ia64_unwind_entry_compare_bfd): New.
4533 (elf64_ia64_unwind_entry_compare): New.
4534 (elf64_ia64_final_link): Sort the .IA_64.unwind section.
4535
45362000-10-07 Alan Modra <alan@linuxcare.com.au>
4537
4538 * elflink.h (size_dynamic_sections): Don't create various tags if
4539 .dynstr is excluded from the link. Don't set first dynsym entry
4540 if dynsymcount is zero.
4541 (elf_bfd_final_link): Don't try to swap out dynamic syms if
4542 .dynsym excluded from the link. Don't try to write any dynamic
4543 sections excluded from the link.
4544
4545 * elf.c (swap_out_syms): Handle global section symbols.
4546
45472000-10-05 DJ Delorie <dj@redhat.com>
4548
4549 * peigen.c (_bfd_pei_swap_scnhdr_out): note extended relocs
4550 * coffcode.h (coff_set_alignment_hook): read extended reloc count
4551 (coff_write_relocs): write extended reloc count
4552 (coff_write_object_contents): account for extended relocs
4553
45542000-10-05 Jim Wilson <wilson@cygnus.com>
4555
4556 * elf-bfd.h (struct elf_backend_data): Add elf_backend_section_flags
4557 field.
4558 * elf.c (_bfd_elf_make_section_from_shdr): Call the
4559 elf_backend_section_flags function.
4560 * elf64-ia64.c (elf64_ia64_section_from_shdr): Delete flag conversion
4561 code.
4562 (elf64_ia64_section_flags): New function containing flag conversion
4563 code.
4564 (elf_backend_section_flags): Define to elf64_ia64_section_flags.
4565 * elfxx-target.h (elf_backend_section_flags): Define.
4566 (elfNN_bed): Initialize elf_backend_section_flags field.
4567
45682000-10-02 Alan Modra <alan@linuxcare.com.au>
4569
4570 * elf32-hppa.c (elf32_hppa_check_relocs): Correct call to
4571 _bfd_elf32_gc_record_vtable. Correct a comment.
4572
45732000-10-01 Ulf Carlsson <ulfc@engr.sgi.com>
4574
4575 From Ralf Baechle <ralf@gnu.org>
4576
4577 * elf32-mips.c (_bfd_mips_elf_finish_dynamic_sections): Mark gld
4578 produces binaries with got[1] = 0x80000001 to differenciate them
4579 for the dynamic linker from the broken binaries produced by old
4580 versions.
4581
45822000-09-30 Petr Sorfa <petrs@sco.com>
4583
4584 * elf.c (elfcore_grok_pstatus): Check for size of pxstatus_t.
4585 (elfcore_grok_lwpstatus): Check for size of lwpxstatus_t.
4586 * configure.in: Add check for pxstatus_t and lwpxstatus_t.
4587 * configure: Regenerate.
4588
45892000-09-27 Hans-Peter Nilsson <hp@axis.com>
4590
4591 Define two bfd_targets for absence and presence of leading
4592 underscore on symbols. Make sure to only link same kind.
4593 * elf32-cris.c (cris_elf_object_p,
4594 cris_elf_final_write_processing, cris_elf_print_private_bfd_data,
4595 cris_elf_merge_private_bfd_data): New.
4596 (elf_backend_object_p, elf_backend_final_write_processing,
4597 bfd_elf32_bfd_print_private_bfd_data,
4598 bfd_elf32_bfd_merge_private_bfd_data): Define.
4599 <Target vector definition>: Include elf32-target.h twice with
4600 different macro settings:
4601 (TARGET_LITTLE_SYM): First as bfd_elf32_cris_vec, then as
4602 bfd_elf32_us_cris_vec.
4603 (TARGET_LITTLE_NAME): First as "elf32-cris", then "elf32-us-cris".
4604 (elf_symbol_leading_char): First as 0, then '_'.
4605 (INCLUDED_TARGET_FILE): Define for second include of elf32-target.h.
4606 * config.bfd (cris-*-*): Add bfd_elf32_us_cris_vec to targ_selvecs.
4607 * configure.in (bfd_elf32_cris_vec, cris_aout_vec): New vector.
4608 * configure: Regenerate.
4609 * targets.c: Declare bfd_elf32_us_cris_vec.
4610 * po/bfd.pot: Regenerate.
4611
46122000-09-29 Momchil Velikov <velco@fadata.bg>
4613
4614 * elf32-arm.h (arm_add_to_rel): Correctly adjust the addend for
4615 R_ARM_THM_PC22 relocations.
4616
46172000-09-29 NIIBE Yutaka <gniibe@chroot.org>
4618
4619 * elflink.h (elf_link_add_object_symbols): Don't bfd_release runpath.
4620
46212000-09-29 Momchil Velikov <velco@fadata.bg>
4622
4623 * elf.c (elf_fake_sections): Do not mark the section SHT_NOBITS if
4624 is has the SEC_HAS_CONTENTS flag set.
4625