* merge.c (_bfd_merge_sections): Don't segfault if there
[binutils-gdb.git] / bfd / ChangeLog
1 2002-03-05 Jakub Jelinek <jakub@redhat.com>
2
3 * merge.c (_bfd_merge_sections): Don't segfault if there
4 is nothing to merge due to GC.
5
6 2002-03-05 Alan Modra <amodra@bigpond.net.au>
7
8 * elf32-hppa.c (clobber_millicode_symbols): Remove hack to keep
9 symbols that have been forced local.
10
11 * elflink.h (elf_bfd_final_link): Call elf_link_output_extsym
12 to output forced local syms for non-shared link.
13 (elf_link_output_extsym): Tweak condition for calling backend
14 adjust_dynamic_symbol so that previous behaviour is kept.
15 Whitespace changes throughout file.
16
17 2002-03-04 H.J. Lu <hjl@gnu.org>
18
19 * elf.c (bfd_section_from_shdr): Handle special sections,
20 .init_array, .fini_array and .preinit_array.
21 (elf_fake_sections): Likewise.
22
23 * elflink.h (NAME(bfd_elf,size_dynamic_sections)): Create the
24 DT entry only if the section is in output for .init_array,
25 .fini_array and .preinit_array. Complain about .preinit_array
26 section in DSO.
27 (elf_bfd_final_link): Warn zero size for .init_array,
28 .fini_array and .preinit_array sections.
29
30 * elfxx-ia64.c (elfNN_ia64_section_from_shdr): Remove
31 SHT_INIT_ARRAY, SHT_FINI_ARRAY and SHT_PREINIT_ARRAY.
32 (elfNN_ia64_fake_sections): Remove .init_array, .fini_array and
33 .preinit_array.
34
35 2002-03-04 Alan Modra <amodra@bigpond.net.au>
36
37 * configure.in (WIN32LIBADD): Don't eval PICFLAG assignment.
38 * configure: Regenerate.
39
40 2002-03-02 Tom Rix <trix@redhat.com>
41
42 * coff64-rs6000.c (xcoff64_howto_table): Replace howto types with
43 symbolic equiv.
44 * coff-rs6000.c (xcoff_howto_table): Same.
45
46 2002-03-01 David Mosberger <davidm@hpl.hp.com>
47
48 * elflink.h (size_dynamic_sections): If section named
49 ".preinit_array" exists, create DT_PREINIT_ARRAY and
50 DT_PREINIT_ARRAYSZ entries in dynamic table. Analogously for
51 ".init_array" and ".fini_array".
52 (elf_bfd_final_link): Handle DT_PREINIT_ARRAYSZ, DT_INIT_ARRAYSZ,
53 DT_FINI_ARRAYSZ, DT_PREINIT_ARRAY, DT_INIT_ARRAY, and
54 DT_FINI_ARRAY.
55
56 2002-02-26 Andrew Macleod <amacleod@cygnus.com>
57
58 * elflink.h (elf_bfd_final_link): Don't crash on SHN_UNDEF local
59 dynsyms.
60
61 2002-02-25 Alan Modra <amodra@bigpond.net.au>
62
63 * elf64-hppa.h: Update copyright date.
64
65 * elf64-ppc.c (ppc64_elf_check_relocs): Warning fix.
66 (ppc64_elf_relocate_section): Don't generate power4 style branch
67 hints for *_BRTAKEN and *_BRNTAKEN relocs.
68
69 2002-02-22 Jakub Jelinek <jakub@redhat.com>
70
71 * elf64-sh64.c (sh_elf64_relocate_section): Fix a typo from my
72 last patch.
73 * elf64-x86-64.c (elf64_x86_64_relocate_section): Likewise.
74
75 2002-02-21 Andreas Jaeger <aj@suse.de>
76
77 * elf64-x86-64.c: Major rework that introduces all recent changes
78 to the x86-64 backend. Get a closer match to elf32-i386.
79 (struct elf64_x86_64_dyn_relocs): Rename from
80 elf64_x86_64_pcrel_relocs_copied, add additional fields. Change
81 all users.
82 (struct elf64_x86_64_link_hash_table): Add short cuts to some
83 sections.
84 (link_hash_newfunc): Rename from elf64_x86_64_link_hash_newfunc,
85 remove casts, initialize new hash members.
86 (create_got_section): New.
87 (elf64_x86_64_create_dynamic_sections): New.
88 (elf64_x86_64_copy_indirect_symbol): New.
89 (elf64_x86_64_check_relocs): Don't allocate space for dynamic
90 relocs, .got or .relgot here but do it in allocate_dynrelocs.
91 Reference count possible .plt and .got entries. Don't test input
92 section SEC_READONLY here to try to avoid copy relocs, and keep
93 dyn_relocs regardless of ELF_LINK_NON_GOT_REF. Don't set
94 DF_TEXTREL here. Delay setting of variables until needed. Cache
95 pointer to "sreloc" section in elf_section_data. Tweak condition
96 under which .got created. Report files with bad relocation
97 section names.
98 (elf64_x86_64_gc_sweep_hook): Sweep dyn_relocs and local_dynrel.
99 Reference count possible .plt entries. Don't deallocate .got and
100 .relgot space here.
101 (elf64_x86_64_adjust_dynamic_symbol): Handle nocopyreloc. Don't
102 do copy reloc processing for weakdefs. Remove redundant casts and
103 aborts. Delay setting of vars until needed. Move creation of
104 dynamic symbols and allocation of .plt and .rela.plt to
105 allocate_dynrelocs. Replace BFD_ASSERT with abort.
106 (WILL_CALL_FINISH_DYNAMIC_SYMBOL): New.
107 (allocate_dynrelocs): New.
108 (readonly_dynrelocs): New.
109 (elf64_x86_64_size_dynamic_sections): Call readonly_dynrelocs.
110 Allocate space for dyn relocs. Replace BFD_ASSERT with abort.
111 Zero out the dynamic allocated content space.
112 (elf64_x86_64_discard_copies): Removed.
113 (elf64_x86_64_relocate_section): Make use of dynamic section
114 short-cuts. Localise vars, and delay setting. Better error
115 reporting, replace BFD_ASSERT with abort. Check
116 ELF_LINK_HASH_DEF_DYNAMIC to see if a symbol is not defined in the
117 regular object file and tread the weak definition as the normal
118 one. Don't discard relocs for undefweak or undefined symbols and
119 check !DEF_REGULAR as well as DEF_DYNAMIC in test for avoided copy
120 relocs.
121 (elf64_x86_64_finish_dynamic_symbol): Don't copy relocs for
122 symbols that have been forced local. Use same test to decide if
123 we can use a relative reloc for got as relocate_section. Expand
124 SHN_UNDEF comment. Move expressions out of function calls.
125 Replace BFD_ASSERT with abort.
126 (bfd_elf64_bfd_final_link): Removed.
127 (elf_backend_copy_indirect_symbol): Define.
128
129 2002-02-20 Tom Rix <trix@redhat.com>
130
131 * coff-rs6000.c (xcoff_howto_table): Add 16 bit R_BA.
132 (_bfd_xcoff_reloc_type_lookup): Use it.
133 * coff64-rs6000.c (xcoff64_howto_table): Same.
134 (xcoff64_reloc_type_lookup): Same.
135
136 2002-02-20 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
137
138 * osf-core.c (osf_core_vec): OSF/1 (Digital Unix) core files are
139 little endian.
140
141 2002-02-19 Martin Schwidefsky <schwidefsky@de.ibm.com>
142
143 * archures.c (bfd_mach_s390_esa): Rename to bfd_mach_s390_31.
144 (bfd_mach_s390_esame): Rename to bfd_mach_s390_64.
145 * bfd-in2.h: Regenerate.
146 * cpu-s390.c (arch_info_struct): Use renamed architecture defines.
147 Replace architecture name "s390" with "s390:31-bit" and "s390:esame"
148 with "s390:64-bit".
149 * elf32-s390.c (elf_howto_table): Add 32 bit pc relative relocations.
150 (elf_s390_reloc_type_lookup): Likewise.
151 (elf_s390_check_relocs): Likewise.
152 (elf_s390_gc_sweep_hook): Likewise.
153 (elf_s390_relocate_section): Likewise.
154 (elf_s390_object_p): Use renamed architecture define.
155 * elf64-s390.c (elf_s390_object_p): Use renamed architecture define.
156
157 2002-02-19 Frank Ch. Eigler <fche@redhat.com>
158
159 * syms.c (stt[]): Sorted. Added .init/.fini -> "t" mapping.
160
161 2002-02-19 Jakub Jelinek <jakub@redhat.com>
162
163 * elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Enable
164 absptr -> pcrel optimization for shared libs.
165 Only create minimal .eh_frame_hdr if absptr FDE encoding in shared
166 library cannot be converted to pcrel.
167 (_bfd_elf_eh_frame_section_offset): Return -2 if making absptr
168 relative.
169 * elf32-i386.c (elf_i386_relocate_section): If
170 _bfd_elf_section_offset returned -2, skip, but make sure the
171 relocation is installed.
172 * elf32-arm.h (elf32_arm_final_link_relocate): Likewise.
173 * elf32-cris.c (cris_elf_relocate_section): Likewise.
174 * elf32-hppa.c (elf32_hppa_relocate_section): Likewise.
175 * elf32-i370.c (i370_elf_relocate_section): Likewise.
176 * elf32-m68k.c (elf_m68k_relocate_section): Likewise.
177 * elf32-ppc.c (ppc_elf_relocate_section): Likewise.
178 * elf32-s390.c (elf_s390_relocate_section): Likewise.
179 * elf32-sh.c (sh_elf_relocate_section): Likewise.
180 * elf32-sparc.c (elf32_sparc_relocate_section): Likewise.
181 * elf64-ppc.c (ppc64_elf_relocate_section): Likewise.
182 * elf64-s390.c (elf_s390_relocate_section): Likewise.
183 * elf64-sh64.c (sh_elf64_relocate_section): Likewise.
184 * elf64-sparc.c (sparc64_elf_relocate_section): Likewise.
185 * elf64-x86-64.c (elf64_x86_64_relocate_section): Likewise.
186 * elf64-alpha.c (elf64_alpha_relocate_section): Handle
187 _bfd_elf_section_offset returning -2 the same way as -1.
188 * elfxx-ia64.c (elfNN_ia64_install_dyn_reloc): Likewise.
189 * elf32-mips.c (mips_elf_create_dynamic_relocation): Add FIXME
190 and BFD_ASSERT.
191 * elf64-mips.c (mips_elf64_create_dynamic_relocation): Likewise.
192
193 2002-02-18 Tom Rix <trix@redhat.com>
194
195 * xcofflink.c (bfd_xcoff_link_gernate_rtinit): Add -brtl support.
196 (bfd_xcoff_size_dynamic_sections): Same.
197 * bfd-in.h (bfd_xcoff_link_generate_rtinit): Same.
198 (bfd_xcoff_size_dynamic_sections): Same.
199 * coff-rs6000.c (xcoff_generate_rtinit): Same.
200 * coff-rs646000.c (xcoff64_generate_rtinit): Same.
201 * libxcoff.h (struct xcoff_backend_data_rec): Same.
202 * xcofflink.c (xcoff_build_ldsyms, xcoff_link_add_symbols): Clean.
203 * bfd-in2.h: Regenerate.
204
205 2002-02-18 Alan Modra <amodra@bigpond.net.au>
206
207 * elf64-ppc.c (STFD_FR0_0R1, LFD_FR0_0R1, BLR): Define.
208 (struct ppc_link_hash_table): Add sfpr.
209 (ppc64_elf_link_hash_table_create): Init it.
210 (ppc64_elf_create_dynamic_sections): Split creation of .stub and
211 .glink out to..
212 (create_linkage_sections): ..here. Make .sfpr too.
213 (ppc64_elf_check_relocs): Call create_linkage_sections, and set
214 dynobj early.
215 (MIN_SAVE_FPR, MAX_SAVE_FPR): Define.
216 (ppc64_elf_func_desc_adjust): Look for missing ._savef* and
217 ._restf* functions, and create as needed.
218 (func_desc_adjust): Only force_local for shared libs.
219
220 2002-02-18 David O'Brien <obrien@FreeBSD.org>
221
222 * configure.in: Bump version number post 2.12 branching.
223 * configure: Regenerate.
224
225 2002-02-17 Hans-Peter Nilsson <hp@bitrange.com>
226
227 * mmo.c: Correct and improve comments.
228 (mmo_write_chunk): Store trailing byte in bfd buffer; don't
229 zero-pad. Use input to fill up non-empty bfd buffer.
230 (mmo_flush_chunk): New function.
231 (mmo_write_loc_chunk): Add parameter last_vmap, all callers
232 changed. Don't emit location specifier if VMA is same as
233 *LAST_VMAP after omitting leading zero contents. Call
234 mmo_flush_chunk before emitting location specifier.
235 (mmo_write_loc_chunk_list): Call mmo_flush_chunk when finished
236 with mmo_write_loc_chunk calls.
237 (mmo_internal_write_section): Call mmo_flush_chunk after
238 mmo_write_chunk.
239 (mmo_write_symbols_and_terminator): Move :Main to first position
240 in symbol array. Add faked one if it does not exist if there are
241 other symbols. Don't add it if there are no symbols at all. Move
242 out test for value of :Main from symbol loop. Rename table
243 fakemain to maintable and variable mainsym to fakemain.
244
245 2002-02-15 Richard Henderson <rth@redhat.com>
246
247 * elf64-alpha.c (elf64_alpha_relocate_section) [BRSGP]: A target
248 section with no got matches any got. Simplify error generaion.
249
250 2002-02-15 Alan Modra <amodra@bigpond.net.au>
251
252 Support arbitrary length fill patterns.
253 * linker.c (bfd_new_link_order): Zero all fields with bfd_zalloc.
254 (_bfd_default_link_order): Remove bfd_fill_link_order code.
255 Call default_data_link_order.
256 (default_fill_link_order): Delete.
257 (default_data_link_order): New function.
258 * elf32-mips.c (_bfd_mips_elf_final_link): Replace occurrences
259 of bfd_fill_link_order with bfd_data_link_order.
260 * elf64-alpha.c (elf64_alpha_final_link): Likewise.
261 * elf64-mips.c (mips_elf64_final_link): Likewise.
262
263 * bfd.c (bfd_scan_vma): Clamp overflows to max bfd_vma value.
264 Correct value returned in "end" for "0x<non-hex>".
265
266 2002-02-14 Nick Clifton <nickc@cambridge.redhat.com>
267
268 * cpu-arm.c (processors): Replace 'arch' field with 'mach'.
269 (scan): Test against 'mach' field in info structure.
270
271 2002-02-14 Alan Modra <amodra@bigpond.net.au>
272
273 * elf.c (elf_fake_sections): Use SHT_NOBITS when SEC_NEVER_LOAD.
274
275 2002-02-14 Matt Fredette <fredette@netbsd.org>
276
277 * elf32-m68k.c (elf32_m68k_print_private_bfd_data): Recognize
278 EF_M68000.
279
280 2002-02-13 Nick Clifton <nickc@cambridge.redhat.com>
281
282 * elf.c (_bfd_elf_make_section_from_shdr): Do not insist on
283 non-zero physical addresses when adjusting the LMAs of new
284 sections.
285
286 2002-02-12 John David Anglin <dave@hiauly1.hia.nrc.ca>
287
288 * elf-hppa.h (elf_hppa_reloc_final_type): New function stripped
289 from _bfd_elf_hppa_gen_reloc_type.
290 (_bfd_elf_hppa_gen_reloc_type): Remove duplicate prototype.
291 * elf32-hppa.h (elf32_hppa_reloc_final_type): Add protptype.
292 * elf32-hppa.c: Include elf32-hppa.h before elf-hppa.h.
293 * elf64-hppa.h (elf64_hppa_reloc_final_type): Add protptype.
294
295 2002-02-12 Alexandre Oliva <aoliva@redhat.com>
296
297 * elf-m10300.c (mn10300_elf_relax_section): Skip section before
298 loading its contents if there's nothing to do in it.
299
300 2002-02-12 Alan Modra <amodra@bigpond.net.au>
301
302 * elf64-ppc.c (ppc64_elf_size_stubs): Correct test for crossing
303 64k boundary.
304
305 * elf64-ppc.c (ppc64_elf_size_dynamic_sections): Add dynamic
306 DT_PPC64_OPD and DT_PPC64_OPDSZ tags.
307 (ppc64_elf_finish_dynamic_sections): Set values for them.
308
309 2002-02-11 Michael Snyder <msnyder@redhat.com>
310
311 * elf-bfd.h (elfcore_write_lwpstatus): Add prototype.
312 * elf.c (elfcore_grok_pstatus): Add prototype.
313 (elfcore_grok_lwpstatus): Add prototype.
314 (elfcore_write_lwpstatus): New function.
315 (elfcore_write_pstatus): Fix typo, eliminate unnecessary memcpy.
316
317 2002-02-11 Alexandre Oliva <aoliva@redhat.com>
318
319 * elf32-sh.c: Added missing prototypes.
320 * elf32-sh64.c: Likewise.
321 (sh_elf_align_loads): Mark unused args as such.
322 * elf64-sh64.c: Added missing prototypes.
323 (struct elf_sh64_link_hash_entry): Fix typo.
324 (sh_elf64_relocate_section): Fix info argument passed to
325 _bfd_elf_section_offset.
326
327 2002-02-11 Alan Modra <amodra@bigpond.net.au>
328
329 * Makefile.am: "make dep-am".
330 * Makefile.in: Regenerate.
331 * aclocal.m4: Regenerate.
332 * config.in: Regenerate.
333 * configure: Regenerate.
334
335 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
336
337 * coff-rs6000.c (xcoff_generate_rtinit): Silence uninitialized
338 variable warnings.
339 * elf32-sh.c (sh_elf_relax_section): Silence signed/unsigned
340 comparison warning.
341 * trad-core.c (trad_unix_core_file_p): Silence pointer/integer
342 cast warnings for the common case.
343
344 2002-02-10 Hans-Peter Nilsson <hp@bitrange.com>
345
346 * config.bfd (sh-*-linux*, sh-*-elf* | sh-*-rtemself*): Add sh64
347 vectors.
348 (sh-*-netbsdelf*): New, to trump sh*-*-netbsdelf* and add sh64
349 vectors.
350
351 2002-02-09 Richard Henderson <rth@redhat.com>
352
353 * elf64-alpha.c (elf64_alpha_howto): Add R_ALPHA_BRSGP.
354 (elf64_alpha_reloc_map, elf64_alpha_check_relocs): Likewise.
355 (elf64_alpha_relocate_section): Likewise.
356 * reloc.c (BFD_RELOC_ALPHA_BRSGP): New.
357 * bfd-in2.h, libbfd.h: Rebuild.
358
359 2002-02-09 Hans-Peter Nilsson <hp@bitrange.com>
360
361 * elf64-mmix.c (_bfd_mmix_finalize_linker_allocated_gregs): Check
362 that base-plus-offset reloc accounting is consistent.
363 (mmix_elf_relax_section): Keep base-plus-offset reloc accounting
364 up to date for undefined symbols.
365
366 2002-02-08 Eric Christopher <echristo@redhat.com>
367
368 From Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
369
370 * elf32-mips.c (_bfd_mips_elf_fake_sections): Don't create .rela
371 sections for the O32 ABI.
372
373 2002-02-08 Chris Demetriou <cgd@broadcom.com>
374
375 * elf32-arm.h: Fix formatting of _("...").
376 * elf32-d10v.c: Likewise.
377 * elf32-m68k.c: Likewise.
378 * elf32-mips.c: Likewise.
379
380 2002-02-08 Ivan Guzvinec <ivang@opencores.org>
381
382 * coff-or32.c: Fix compile time warning messages.
383
384 2002-02-08 Alexandre Oliva <aoliva@redhat.com>
385
386 Contribute sh64-elf.
387 2002-01-23 Alexandre Oliva <aoliva@redhat.com>
388 * reloc.c (R_SH_GOTPLT32, R_SH_GOT_LOW16, R_SH_GOT_MEDLOW16,
389 R_SH_GOT_MEDHI16, R_SH_GOT_HI16, R_SH_GOTPLT_LOW16,
390 R_SH_GOTPLT_MEDLOW16, R_SH_GOTPLT_MEDHI16, R_SH_GOTPLT_HI16,
391 R_SH_PLT_LOW16, R_SH_PLT_MEDLOW16, R_SH_PLT_MEDHI16,
392 R_SH_PLT_HI16, R_SH_GOTOFF_LOW16, R_SH_GOTOFF_MEDLOW16,
393 R_SH_GOTOFF_MEDHI16, R_SH_GOTOFF_HI16, R_SH_GOTPC_LOW16,
394 R_SH_GOTPC_MEDLOW16, R_SH_GOTPC_MEDHI16, R_SH_GOTPC_HI16,
395 R_SH_GOT10BY4, R_SH_GOTPLT10BY4, R_SH_GOT10BY8, R_SH_GOTPLT10BY8,
396 R_SH_COPY64, R_SH_GLOB_DAT64, R_SH_JMP_SLOT64, R_SH_RELATIVE64):
397 New relocs.
398 * libbfd.h, bfd-in2.h: Rebuilt.
399 * elf32-sh.c (sh_elf_howto_table): Define new relocs.
400 (sh_reloc_map): Map them.
401 (PLT_ENTRY_SIZE, elf_sh_plt0_entry_be, elf_sh_plt0_entry_le,
402 elf_sh_plt_entry_be, elf_sh_plt_entry_le, elf_sh_pic_plt_entry_be,
403 elf_sh_pic_plt_entry_le, elf_sh_plt0_entry, elf_sh_plt_entry,
404 elf_sh_pic_plt_entry, elf_sh_sizeof_plt, elf_sh_plt_plt0_offset,
405 elf_sh_plt0_gotplt_offset, elf_sh_plt_temp_offset,
406 elf_sh_plt_symbol_offset, elf_sh_plt_reloc_offset,
407 movi_shori_putval) [INCLUDE_SHMEDIA]: New.
408 (elf_sh_link_hash_entry) [INCLUDE_SHMEDIA]: Add
409 datalabel_got_offset.
410 (sh_elf_link_hash_newfunc): Initialize it.
411 (sh_elf_relocate_section): Augment the scope of
412 seen_stt_datalabel. Introduce GOTPLT support. Extend GOTPC, PLT,
413 GOT and GOTOFF handling to new SHmedia relocation types. Support
414 GOT_BIAS.
415 (sh_elf_check_relocs): Likewise.
416 (sh_elf_finish_dynamic_symbol) [TARGET_SHMEDIA]: Set up values in
417 PLT entries using movi_shori_putval. Support GOT_BIAS.
418 (sh_elf_finish_dynamic_sections): Likewise.
419 * elf32-sh64.c (shmedia_prepare_reloc): Do not add addend to
420 relocation, it's now done by the caller.
421 (GOT_BIAS): New.
422 * elf64-sh64.c (GOT_BIAS, PLT_ENTRY_SIZE, elf_sh64_sizeof_plt,
423 elf_sh64_plt_plt0_offset, elf_sh64_plt0_gotplt_offset,
424 elf_sh64_plt_temp_offset, elf_sh64_plt_symbol_offset,
425 elf_sh64_plt_reloc_offset, ELF_DYNAMIC_INTERPRETER,
426 elf_sh64_pcrel_relocs_copied, elf_sh64_link_hash_entry,
427 elf_sh64_link_hash_table, sh64_elf64_link_hash_traverse,
428 sh64_elf64_hash_table): New.
429 (sh_elf64_howto_table): Introduce new relocs.
430 (sh_elf64_info_to_howto): Accept new PIC relocs.
431 (sh_elf64_relocate_section): Augment the scope of
432 seen_stt_datalabel. Support new PIC relocs.
433 (sh_elf64_check_relocs): Support new PIC relocs.
434 (elf_sh64_plt0_entry_be, elf_sh64_plt0_entry_le,
435 elf_sh64_plt_entry_be, elf_sh64_plt_entry_le,
436 elf_sh64_pic_plt_entry_be, elf_sh64_pic_plt_entry_le,
437 elf_sh64_plt0_entry, elf_sh64_plt_entry, elf_sh64_pic_plt_entry,
438 sh64_elf64_link_hash_newfunc, sh64_elf64_link_hash_table_create,
439 movi_shori_putval, movi_3shori_putval,
440 sh64_elf64_create_dynamic_sections,
441 sh64_elf64_adjust_dynamic_symbol, sh64_elf64_discard_copies,
442 sh64_elf64_size_dynamic_sections,
443 sh64_elf64_finish_dynamic_symbol,
444 sh64_elf64_finish_dynamic_sections): New.
445 (elf_backend_create_dynamic-sections,
446 bfd_elf64_bfd_link_hash_table_create,
447 elf_backend_adjust_dynamic_symbol,
448 elf_backend_size_dynamic_sections,
449 elf_backend_finish_dynamic_symbol,
450 elf_backend_finish_dynamic_sections, elf_backend_want_got_plt,
451 elf_backend_plt_readonly, elf_backend_want_plt_sym,
452 elf_backend_got_header_size, elf_backend_plt_header_size):
453 Define.
454 2001-05-16 Alexandre Oliva <aoliva@redhat.com>
455 * elf32-sh.c: Renumbered and renamed some SH5 relocations to
456 match official numbers and names; moved unmaching ones to the
457 range 0xf2-0xff.
458 * elf32-sh64.c, elf64-sh64.c: Likewise.
459 2001-03-12 DJ Delorie <dj@redhat.com>
460 * elf32-sh.c (sh_elf_relax_section): Don't relax SHmedia
461 sections.
462 2001-03-12 DJ Delorie <dj@redhat.com>
463 * elf32-sh64.c (shmedia_prepare_reloc): Validate relocs that must
464 be aligned.
465 * elf64-sh64.c (sh_elf64_relocate_section): Ditto.
466 2001-01-14 Hans-Peter Nilsson <hpn@cygnus.com>
467 * elf32-sh64.c (bfd_elf32_bfd_copy_private_section_data): Define.
468 (sh64_elf_fake_sections): Set type to SHT_SH5_CR_SORTED for a
469 .cranges section with SEC_SORT_ENTRIES set.
470 (sh64_backend_section_from_shdr): Set SEC_SORT_ENTRIES on an
471 incoming sorted .cranges section.
472 (sh64_bfd_elf_copy_private_section_data): New.
473 (sh64_elf_final_write_processing): Only sort .cranges and modify
474 start address if called by linker.
475 2001-01-08 Ben Elliston <bje@redhat.com>
476 * elf32-sh64.c (sh64_elf_final_write_processing): Activate
477 Hans-Peter Nilsson's set bit 0 patch from 2001-01-06.
478 * elf64-sh64.c (sh64_elf64_final_write_processing): Ditto.
479 2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
480 * elf64-sh64.c (sh_elf64_howto_table): No open brace at start of
481 line. Add comments before all entries.
482 <R_SH_PT_16, R_SH_SHMEDIA_CODE>: Correct and clarify describing
483 comment.
484 (sh_elf64_reloc): Correct head comment.
485 (sh_elf64_relocate_section): Correct spacing.
486 <relocating for a local symbol>: Do not honour STO_SH5_ISA32;
487 instead call reloc_dangerous callback.
488 <case R_SH_SHMEDIA_CODE>: New case.
489 (sh_elf64_gc_mark_hook): Correct spacing.
490 (sh_elf64_check_relocs): Ditto.
491 * elf32-sh64.c (shmedia_prepare_reloc) <case R_SH_SHMEDIA_CODE>:
492 New case.
493 * elf32-sh.c: Correct #endif comments for #ifndef-wrapped
494 functions.
495 (sh_elf_howto_table) <R_SH_PT_16, R_SH_SHMEDIA_CODE>: Correct,
496 clarify describing comment. Add comments before all entries.
497 (sh_elf_relocate_section) <relocating for a local symbol>: Do not
498 honour STO_SH5_ISA32; instead call reloc_dangerous callback.
499 2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
500 Sort .cranges section in final link. Prepare to set bit 0 on
501 entry address.
502 * elf32-sh64.c (struct sh64_find_section_vma_data): New.
503 (sh64_elf_link_output_symbol_hook): Fix typo in prototype.
504 (sh64_elf_set_mach_from_flags): Set SEC_DEBUGGING on incoming
505 .cranges section.
506 (sh64_backend_section_from_shdr): New, to recognize
507 SHT_SH5_CR_SORTED on incoming .cranges section.
508 (elf_backend_section_from_shdr): Define.
509 (sh64_elf_final_write_processing): Sort outgoing .cranges
510 section. (New, temporarily disabled:) Set bit 0 on entry address
511 according to ISA type.
512 (sh64_find_section_for_address): New.
513 (crange_qsort_cmpb, crange_qsort_cmpl, crange_bsearch_cmpb,
514 crange_bsearch_cmpl): Move here from opcodes/sh64-dis.c.
515 (sh64_address_in_cranges): Move here from opcodes/sh64-dis.c. Use
516 bfd_malloc, not xmalloc.
517 (sh64_get_contents_type): Move here from opcodes/sh64-dis.c. Make
518 global.
519 * elf32-sh64.c (sh64_elf64_final_write_processing): New, (but
520 temporarily disabled) setting bit 0 on entry address.
521 (elf_backend_final_write_processing): Define.
522 2001-01-05 Hans-Peter Nilsson <hpn@cygnus.com>
523 * elf32-sh.c (sh_elf_howto_table) <R_SH_PT_16>: Adjust fields to
524 be a proper relocation for PTA and PTB rather than a marker.
525 <R_SH_IMMU5, R_SH_IMMS6, R_SH_IMMU6, R_SH_IMMS10, R_SH_IMMS10BY2,
526 R_SH_IMMS10BY4, R_SH_IMMS10BY8, R_SH_IMMS16, R_SH_IMMU16,
527 R_SH_IMM_LOW16, R_SH_IMM_LOW16_PCREL, R_SH_IMM_MEDLOW16,
528 R_SH_IMM_MEDLOW16_PCREL, R_SH_IMM_MEDHI16, R_SH_IMM_MEDHI16_PCREL,
529 R_SH_IMM_HI16, R_SH_IMM_HI16_PCREL, R_SH_64, R_SH_64_PCREL>:
530 Zero src_mask.
531 * elf64-sh64.c: Ditto.
532 (sh_elf64_relocate_section) <case R_SH_PT_16>: New case.
533 * elf32-sh64.c: Include opcodes/sh64-opc.h
534 (shmedia_prepare_reloc): Take a bfd_link_info pointer as first
535 argument. Drop const qualifiers from "bfd *" and "bfd_byte *"
536 parameters. No unused parameters. Caller changed.
537 <case R_SH_PT_16>: New case.
538 * Makefile.am (elf32-sh64.lo): Add dependency on sh64-opc.h.
539 * Makefile.in: Regenerate.
540 2000-12-30 Hans-Peter Nilsson <hpn@cygnus.com>
541 * elf64-sh64.c (sh64_elf64_fake_sections): Set SHF_SH5_ISA32 for
542 all code sections.
543 (sh_elf64_set_mach_from_flags): Change from EF_SH64 to EF_SH5.
544 (sh64_elf_merge_private_data): Ditto.
545 * elf32-sh64.c (sh64_elf_fake_sections): Use sh64_elf_section_data
546 to access stored section flags.
547 (sh64_elf_final_write_processing): Return immediately unless
548 called by linker. Use sh64_elf_section_data (cranges) to get size
549 of linker-generated cranges entries.
550 (sh64_elf_copy_private_data): Add missing "return true".
551 (sh64_elf_set_mach_from_flags): Change from EF_SH64 to EF_SH5.
552 (sh_elf64_merge_private_data): Ditto.
553 2000-12-19 Hans-Peter Nilsson <hpn@cygnus.com>
554 * elf64-sh64.c (sh64_elf64_fake_sections): New, copy of
555 elf64-sh64.c:sh64_elf_fake_sections.
556 (elf_backend_fake_sections): Define as sh64_elf64_fake_sections.
557 2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
558 * elf32-sh64.c (sh64_elf_copy_private_data_internal): Delete.
559 (sh64_elf_final_write_processing): New.
560 (elf_backend_final_write_processing): Define.
561 (sh64_elf_fake_sections): Get header flags from tdata field.
562 (sh64_elf_copy_private_data): Do not call
563 sh64_elf_copy_private_data_internal, just copy e_flags field.
564 (sh64_elf_merge_private_data): Do not call
565 sh64_elf_copy_private_data_internal.
566 2000-12-12 Hans-Peter Nilsson <hpn@cygnus.com>
567 Remove EF_SH64_ABI64, let ELF size make difference.
568 Remove SH64-specific BFD section flag.
569 * elf32-sh64.c (sh64_elf_fake_sections): Recognize section as
570 containing SHmedia through elf_section_data (asect)->tdata
571 non-zero, not using a BFD section flag.
572 (sh64_elf_set_mach_from_flags): Don't recognize EF_SH64_ABI64.
573 (sh64_elf_merge_private_data): Similar.
574 (elf_backend_section_flags): Don't define.
575 (sh64_elf_backend_section_flags): Delete.
576 * elf64-sh64.c (sh_elf64_set_mach_from_flags): Recognize EF_SH64,
577 not EF_SH64_ABI64.
578 (sh_elf64_merge_private_data): Similar.
579 * section.c (Section flags definitions): Don't define
580 SEC_SH_ISA_SHMEDIA.
581 (bfd-in2.h): Regenerate.
582 2000-12-09 Hans-Peter Nilsson <hpn@cygnus.com>
583 Make DataLabel references work with partial linking.
584 * elf32-sh64.c: Fix formatting.
585 (sh64_elf_link_output_symbol_hook): New.
586 (elf_backend_link_output_symbol_hook): Define to
587 sh64_elf_link_output_symbol_hook.
588 (sh64_elf_add_symbol_hook): Make DataLabel symbol just global
589 undefined if partial linking. Adjust sanity check.
590 * elf64-sh64.c (sh64_elf64_link_output_symbol_hook): New.
591 (elf_backend_link_output_symbol_hook): Define to
592 sh64_elf64_link_output_symbol_hook.
593 (sh64_elf64_add_symbol_hook): Make DataLabel symbol just global
594 undefined if partial linking. Adjust sanity check.
595 2000-12-07 Hans-Peter Nilsson <hpn@cygnus.com>
596 Implement semantics for inter-file DataLabel references.
597 * elf64-sh64.c (DATALABEL_SUFFIX): Define.
598 (sh64_elf64_add_symbol_hook): New.
599 (sh_elf64_relocate_section): If passing an indirect symbol with
600 st_type STT_DATALABEL on the way to a symbol with st_other
601 STO_SH5_ISA32, do not bitor 1 to the relocation.
602 (elf_backend_add_symbol_hook): Define to
603 sh64_elf64_add_symbol_hook.
604 * elf64-sh32.c: Tweak comments.
605 (DATALABEL_SUFFIX): Define.
606 (sh64_elf_add_symbol_hook): New.
607 (elf_backend_add_symbol_hook): Define to sh64_elf_add_symbol_hook.
608 * elf32-sh.c (sh_elf_relocate_section): If passing an indirect
609 symbol with st_type STT_DATALABEL on the way to a symbol with
610 st_other STO_SH5_ISA32, do not bitor 1 to the relocation.
611 2000-12-05 Hans-Peter Nilsson <hpn@cygnus.com>
612 Pass through STT_DATALABEL.
613 * elf32-sh64.c (sh64_elf_get_symbol_type): New.
614 (elf_backend_get_symbol_type): Define.
615 * elf64-sh64.c (sh64_elf64_get_symbol_type): New.
616 (elf_backend_get_symbol_type): Define.
617 2000-11-30 Hans-Peter Nilsson <hpn@cygnus.com>
618 * elf32-sh64.c: Tweak comments.
619 (sh64_elf_copy_private_data_internal): Add prototype.
620 (bfd_elf32_bfd_set_private_flags): Define.
621 (sh64_elf_copy_private_data_internal): Compare machine name, not
622 textual BFD target name, to check whether to copy section flag
623 SHF_SH5_ISA32.
624 (sh64_elf_merge_private_data): Validize bfd_get_arch_size.
625 Tweak section-contents-type-mismatch message.
626 (shmedia_prepare_reloc): Add ATTRIBUTE_UNUSED markers.
627 Validize reloc-types.
628 * elf64-sh64.c: New file.
629 * targets.c (bfd_elf64_sh64_vec, bfd_elf64_sh64l_vec): Declare.
630 * Makefile.am (BFD64_BACKENDS): Add elf64-sh64.lo.
631 (BFD64_BACKENDS_CFILES): Add elf64-sh64.c.
632 Regenerate dependencies.
633 * Makefile.in: Regenerate.
634 * config.bfd (sh64-*-elf*): Add bfd_elf64_sh64_vec and
635 bfd_elf64_sh64l_vec.
636 * configure.in: Handle bfd_elf64_sh64_vec and
637 bfd_elf64_sh64l_vec.
638 * configure: Regenerate.
639 * po/POTFILES.in: Regenerate.
640 * po/bfd.pot: Regenerate.
641 2000-11-29 Hans-Peter Nilsson <hpn@cygnus.com>
642 * elf32-sh64.c (sh64_elf_set_mach_from_flags): Do not recognize
643 anything else but EF_SH64 and EF_SH64_ABI64.
644 (sh64_elf_merge_private_data): Emit error for anything else but
645 EF_SH64 and EF_SH64_ABI64.
646 * config.bfd: Remove bfd_elf32_shblin_vec and bfd_elf32_shlin_vec
647 from targ_selvecs.
648 * configure.in: Add cofflink.lo to bfd_elf32_sh64_vec and
649 bfd_elf32_sh64l_vec as a temporary measure.
650 * configure: Regenerate.
651 2000-11-27 Hans-Peter Nilsson <hpn@cygnus.com>
652 * cpu-sh.c (arch_info_struct): Include sh5 item
653 unconditionalized.
654 * config.bfd (sh64-*-elf*): Do not set targ_cflags.
655 Add targ_selvecs bfd_elf32_sh_vec, bfd_elf32_shl_vec,
656 bfd_elf32_shblin_vec and bfd_elf32_shlin_vec.
657 * elf32-sh64.c: Tweak comments.
658 (sh64_elf_set_mach_from_flags): Recognize all machine flags that
659 are proper subsets of SH64 as bfd_mach_sh5. Add EF_SH64_ABI64.
660 (sh64_elf_copy_private_data_internal): Wrap long line.
661 (sh64_elf_merge_private_data): Rewrite to allow objects from
662 SH64 subsets to be linked together.
663 (INCLUDE_SHMEDIA): Define.
664 * elf32-sh.c (sh_elf_relocate_section) <local symbol>:
665 Parenthesize plus-expression inside or-expression.
666 <global symbol>: Ditto.
667 (sh_elf_set_mach_from_flags): Remove code refusing
668 deleted EF_SH64_32BIT_ABI flag.
669 2000-11-26 Hans-Peter Nilsson <hpn@cygnus.com>
670 * elf32-sh.c (sh_elf_howto_table) <R_SH_IMM_LOW16_PCREL,
671 R_SH_IMM_MEDLOW16_PCREL, R_SH_IMM_MEDHI16_PCREL,
672 R_SH_IMM_HI16_PCREL, R_SH_64_PCREL>: Set pcrel_offset to true.
673 (sh_elf_relocate_section) <local symbol>: Or 1 in
674 calculation of relocation if sym->st_other & STO_SH5_ISA32.
675 <global symbol>: Ditto if h->other & STO_SH5_ISA32.
676 * elf32-sh64.c (shmedia_prepare_reloc): Add rel->r_addend to
677 relocation.
678 2000-11-24 Hans-Peter Nilsson <hpn@cygnus.com>
679 * Makefile.am (BFD32_BACKENDS): Add elf32-sh64.lo.
680 (BFD32_BACKENDS_CFILES): Add elf32-sh64.c.
681 Regenerate dependencies.
682 * Makefile.in: Regenerate.
683 * archures.c: Add bfd_mach_sh5.
684 * config.bfd: Map targ_cpu sh* to bfd_sh_arch.
685 Handle sh64-*-elf*. Set targ_cflags to -DINCLUDE_SHMEDIA.
686 * configure.in: Handle bfd_elf32_sh64_vec and bfd_elf32_sh64l_vec.
687 * configure: Regenerate.
688 * reloc.c (BFD_RELOC_SH_SHMEDIA_CODE, BFD_RELOC_SH_IMMU5,
689 BFD_RELOC_SH_IMMS6, BFD_RELOC_SH_IMMS6BY32, BFD_RELOC_SH_IMMU6,
690 BFD_RELOC_SH_IMMS10, BFD_RELOC_SH_IMMS10BY2,
691 BFD_RELOC_SH_IMMS10BY4, BFD_RELOC_SH_IMMS10BY8,
692 BFD_RELOC_SH_IMMS16, BFD_RELOC_SH_IMMU16, BFD_RELOC_SH_IMM_LOW16,
693 BFD_RELOC_SH_IMM_LOW16_PCREL, BFD_RELOC_SH_IMM_MEDLOW16,
694 BFD_RELOC_SH_IMM_MEDLOW16_PCREL, BFD_RELOC_SH_IMM_MEDHI16,
695 BFD_RELOC_SH_IMM_MEDHI16_PCREL, BFD_RELOC_SH_IMM_HI16,
696 BFD_RELOC_SH_IMM_HI16_PCREL, BFD_RELOC_SH_PT_16): New relocations.
697 * cpu-sh.c [INCLUDE_SHMEDIA] (arch_info_struct): Define and link
698 in item for SH5.
699 * elf32-sh.c [INCLUDE_SHMEDIA] (sh_elf_howto_table): Add howto items
700 for SHmedia relocs.
701 [INCLUDE_SHMEDIA] (sh_rel): Add mappings for SHmedia relocs.
702 [INCLUDE_SHMEDIA] (sh_elf_relocate_section) [default]: Call
703 shmedia_prepare_reloc, goto final_link_relocate if it returns
704 non-zero, else fail as before.
705 (sh_elf_set_mach_from_flags): Provide function only if not defined
706 as macro. Do not recognize objects with EF_SH64_32BIT_ABI set.
707 (sh_elf_set_private_flags): Provide function only if not defined
708 as a macro.
709 (sh_elf_copy_private_data): Similar.
710 (sh_elf_merge_private_data): Similar.
711 * section.c (SEC_SH_ISA_SHMEDIA): New.
712 * targets.c (bfd_elf32_sh64_vec, bfd_elf32_sh64l_vec): Declare.
713 * elf32-sh64.c: New file.
714 * libbfd.h: Regenerate.
715 * bfd-in2.h: Regenerate.
716 * po/POTFILES.in: Regenerate.
717 * po/bfd.pot: Regenerate.
718 * bfd-in2.h: Regenerate.
719 * libbfd.h: Regenerate.
720
721 2002-02-07 Daniel Jacobowitz <drow@mvista.com>
722
723 * bfd-in.h: Update <stdbool.h> check to only see if <stdbool.h> has
724 been included, not drag it in.
725 * bfd-in2.h: Regenerate.
726
727 2002-02-06 H.J. Lu (hjl@gnu.org)
728
729 * elf32-mips.c (_bfd_mips_elf_merge_private_bfd_data): Update
730 the mach and ISA fields if necessary.
731
732 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
733
734 * coffcode.h (coff_set_arch_mach_hook): Select the highest known
735 ARM architecture when an F_ARM_5 flag is detected, since we cannot
736 be sure exactly which architecture this represents.
737
738 2002-02-05 Nick Clifton <nickc@redhat.com>
739
740 * po/tr.po: Updated translation.
741
742 2002-02-05 Alan Modra <amodra@bigpond.net.au>
743
744 From Jimi X <jimix@watson.ibm.com>
745 * archures (bfd_mach_ppc64): Define.
746 (bfd_powerpc_arch): Rename to bfd_powerpc_archs.
747 (bfd_powerpc_arch): Define.
748 * bfd-in2.h: Regenerate.
749 * cpu-powerpc.c (arch_info_struct): Rename to bfd_powerpc_archs.
750 (bfd_powerpc_arch): Move to tail of bfd_powerpc_archs.
751 (bfd_powerpc_archs): Add default powerpc64 arch.
752
753 2002-02-05 Alan Modra <amodra@bigpond.net.au>
754
755 * elf64-ppc.c (ppc64_elf_size_dynamic_sections): Check for relocs
756 against section syms in readonly sections. Don't do the global
757 sym check if we find one.
758 * elf64-s390.c (elf_s390_size_dynamic_sections): Likewise.
759 * elf32-hppa.c (elf32_hppa_size_dynamic_sections): Likewise.
760 * elf32-i386.c (elf_i386_size_dynamic_sections): Likewise.
761 * elf32-s390.c (elf_s390_size_dynamic_sections): Likewise.
762 (elf_s390_grok_prstatus): Add missing prototype.
763
764 2002-02-04 Hans-Peter Nilsson <hp@bitrange.com>
765
766 * elf64-mmix.c (mmix_dump_bpo_gregs): New function.
767 (mmix_elf_check_common_relocs) <case R_MMIX_BASE_PLUS_OFFSET>:
768 Call bfd_get_section_by_name only once. Initialize
769 bpodata->n_bpo_relocs_this_section.
770 (_bfd_mmix_prepare_linker_allocated_gregs): Remove comment
771 referring to DSOs.
772 (bpo_reloc_request_sort_fn): Don't use difference of values as
773 return-value.
774
775 2002-02-02 David O'Brien <obrien@FreeBSD>
776
777 * configure.in: Tweak the FreeBSD 4.x recognition more. Only treat
778 version 4.5 and later the same as 5-CURRENT.
779 * configure: Re-generate.
780
781 2002-02-02 Jason Thorpe <thorpej@wasabisystems.com>
782
783 * config.bfd (hppa*-*-netbsd*): New target.
784
785 2002-01-31 Philipp Thomas <pthomas@suse.de>
786
787 * coff-arm.c (coff_arm_merge_private_bfd_data): Move ERROR
788 to front of message. Unify messages with elf32-arm.h. Use
789 commas where neccessary.
790 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Use all upcase
791 ERROR in messages. Unify messages with coff-arm.c. Correct
792 VFP/FPA error message.
793 (elf32_arm_print_private_bfd_data): Don't mark APCS-26 and
794 APCS-32 for translation.
795
796 2002-02-01 Hans-Peter Nilsson <hp@bitrange.com>
797
798 Perform on-demand global register allocation from
799 R_MMIX_BASE_PLUS_OFFSET relocs.
800 * elf64-mmix.c (struct bpo_reloc_section_info, struct
801 bpo_reloc_request, struct bpo_greg_section_info): New.
802 (mmix_elf_check_common_relocs, mmix_elf_gc_sweep_hook,
803 bpo_reloc_request_sort_fn, mmix_elf_relax_section,
804 _bfd_mmix_check_all_relocs,
805 _bfd_mmix_prepare_linker_allocated_gregs,
806 _bfd_mmix_finalize_linker_allocated_gregs): New functions.
807 (elf_mmix_howto_table): Correct src_mask for most relocs.
808 (mmix_elf_perform_relocation) <case R_MMIX_BASE_PLUS_OFFSET>: New
809 case.
810 (mmix_final_link_relocate) <case R_MMIX_BASE_PLUS_OFFSET>: New
811 case. Fix typo in comment. New label do_mmix_reloc.
812 (mmix_elf_check_relocs): Abuse bfd_link_info member base_file to
813 store first object file with a base-plus-offset reloc. Call
814 mmix_elf_check_common_relocs for the part common with mmo.
815 (mmix_elf_final_link): Write out linker-allocated register
816 contents section.
817 (elf_backend_gc_sweep_hook): Define.
818 (bfd_elf64_bfd_relax_section): Define.
819
820 * mmo.c: Don't include <ctype.h>
821 (mmo_init): Correct init-once logic.
822
823 2002-02-01 Tom Rix <trix@redhat.com>
824
825 * config.bfd: Conditionally support <aiaff> for pre AIX 4.3.
826
827 2002-02-01 Alan Modra <amodra@bigpond.net.au>
828
829 * Makefile.am: Run "make dep-am"
830 * Makefile.in: Regenerate.
831
832 2002-01-31 David O'Brien <obrien@FreeBSD>
833
834 * configure.in: Recognize the differences in core files from FreeBSD
835 4.{0,1} and later versions of 4.x. This treats 4.2+ the same as
836 5-CURRENT.
837 * configure: Regenerate.
838
839 2002-01-31 Ivan Guzvinec <ivang@opencores.org>
840
841 * coff-or32.c: New file.
842 * cpu-or32.c: New file.
843 * elf32-or32.c: New file.
844 * archures.c: Add support for or32.
845 * targets.c: Add support for or32.
846 * bfd-in2.h: Regenerate.
847 * coffcode.h (coff_set_arch_mach_hook, coff_set_flags,
848 coff_write_object_contents): Add support for or32.
849 * config.bfd: Add target.
850 * configure.in: Add support for or32.
851 * configure: Regenerate.
852 * Makefile.am: Add support for or32.
853 * Makefile.in: Regenerate.
854 * po/SRC-POTFILES.in: Add or32 files.
855 * po/bfd.pot: Regenerate.
856
857 2002-01-31 Nick Clifton <nickc@cambridge.redhat.com>
858 Don Lindsay <lindsayd@cisco.com>
859
860 * elf32-mips.c (mips_elf_calculate_relocation): Replace 'return
861 false' with a return of a bfd_reloc_ error code.
862
863 2002-01-31 Hans-Peter Nilsson <hp@axis.com>
864
865 * elf32-cris.c (elf_cris_discard_excess_program_dynamics): Don't
866 unexport unreferenced symbols when --export-dynamic. Call
867 _bfd_elf_strtab_delref when unexporting.
868
869 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
870
871 * bfd-in.h: Include <stdbool.h> if it is available.
872 * bfd-in2.h: Regenerated.
873
874 2002-01-31 Alan Modra <amodra@bigpond.net.au>
875
876 * elf64-ppc.c (func_desc_adjust): STV_PROTECTED functions should
877 not go via the plt.
878
879 2002-01-30 Nick Clifton <nickc@cambridge.redhat.com>
880
881 * archures.c: Tidy up formatting of embedded comments.
882 * bfd.c: Tidy up formatting of embedded comments.
883 * bfd-in.h: Fix formatting of comments.
884 * reloc.c: Tidy up formatting of ordinary & embedded comments.
885 * section.c: Tidy up formatting of embedded comments.
886 * syms.c: Tidy up formatting of embedded comments.
887 * targets.c: Tidy up formatting of embedded comments.
888
889 * bfd-in2.h: Regenerate.
890
891 2002-01-30 Nick Clifton <nickc@cambridge.redhat.com>
892
893 * vms-tir.c (cmd_name): New function.
894 (tir_cmd_name): New function.
895 (etir_sta, etir_sto, etir_opr, etir_stc): Use cmd_name().
896 (tir_opr, tir_ctl, tir_cmd): use tir_cmd_name().
897 Fix formatting.
898
899 * peXXigen.c (pe_print_idata): Rearrange message to aid in
900 translation.
901 (pe_print_pdata): Rearrange message to aid in translation.
902
903 * libbfd.c (warn_deprecated): Rearrange error message to aid in
904 translation.
905
906 * ihex.c (ihex_write_object_contents): Fix spelling typo.
907
908 * ieee.c (ieee_slurp_external_symbols): Remove spurious space.
909
910 * elf64-sparc.c (sparc64_elf_add_symbol_hook): Rearrange error
911 message to aid in translation.
912
913 * elf64-mmix.c (mmix_final_link_relocate): Rearrange error message
914 to aid in translation.
915
916 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Fix typo.
917
918 2002-01-30 Philipp Thomas <pthomas@suse.de>
919
920 * coff-arm.c, elf32-elf.h: Unify messages.
921
922 2002-01-30 Nick Clifton <nickc@redhat.com>
923
924 * po/sv.po: Updated translation.
925
926 2002-01-30 Philipp Thomas <pthomas@suse.de>
927
928 * dwarf2.c (read_abbrev): Use full section name in error message.
929 (decode_line_info): Likewise.
930
931 * elf.c (_bfd_elf_symbol_from_bfd_symbol): Don't translate debugging
932 message.
933
934 2002-01-30 Alan Modra <amodra@bigpond.net.au>
935
936 * elf64-ppc.c (func_desc_adjust): Only provide missing function
937 descriptor symbols for undefined function code syms. Clear
938 ELF_LINK_NON_ELF so that they can stay weak.
939
940 2002-01-29 Chris Demetriou <cgd@broadcom.com>
941 Mitch Lichtenberg <mpl@broadcom.com>
942
943 * bfd-in.h (bfd_mips_elf32_create_embedded_relocs): New prototype.
944 * elf32-mips.c (bfd_mips_elf32_create_embedded_relocs): New function
945 to handle 32-bit ELF embedded reloc (ld --embedded-relocs)
946 generation.
947 * bfd-in2.h: Regenerate.
948
949 2002-01-29 Chris Demetriou <cgd@broadcom.com>
950
951 * elf32-mips.c: Add additional comments about HI16 relocation
952 processing.
953 (_bfd_mips_elf_hi16_reloc): Don't subtract address here for
954 pc-relative relocations. (Reverts change made on 2001-10-31.)
955 (_bfd_mips_elf_lo16_reloc): Subtract address of LO16 part here
956 for pc-relative relocations.
957 (mips_elf_calculate_relocation): Add a comment about a kludge
958 in the R_MIPS_GNU_REL_HI16 handling.
959 (_bfd_mips_elf_relocate_section): Implement that kludge;
960 adjust pc-relative HI16 relocation for difference in HI16 and
961 LO16 addresses, since it can't easily be done in
962 mips_elf_calculate_relocation.
963
964 2002-01-29 Martin Schwidefsky <schwidefsky@de.ibm.com>
965
966 * elf32-i386 (elf_i386_adjust_dynamic_symbol): Do not replace PLT32
967 relocations with PC32 relocations for undefined or weak symbols.
968 * elf32-s390 (elf_i386_adjust_dynamic_symbol): Likewise.
969 * elf64-s390x (elf_i386_adjust_dynamic_symbol): Likewise.
970
971 2002-01-28 Jason Thorpe <thorpej@wasabisystems.com>
972
973 * elfcore.h (elf_core_file_p): Improve comment for last change.
974
975 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
976
977 * configure: Regenerated.
978
979 2002-01-27 Jason Thorpe <thorpej@wasabisystems.com>
980
981 * elfcore.h (elf_core_file_p): Set the machine architecture
982 before processing the program headers.
983
984 2002-01-26 Hans-Peter Nilsson <hp@bitrange.com>
985
986 * configure.in <64-bit configuration>: If using gcc, check and
987 emit error for egcs-1.1.2.
988 * configure: Regenerate.
989
990 2002-01-26 Egor Duda <deo@logos-m.ru>
991
992 * elf.c (elfcore_grok_win32pstatus): Copy only as much information
993 as possible to avoid stack corruption.
994
995 2002-01-26 Richard Henderson <rth@redhat.com>
996
997 * elf64-alpha.c (elf64_alpha_check_relocs): Don't set reltext
998 for non-allocated sections.
999
1000 2002-01-25 Mark Kettenis <kettenis@gnu.org>
1001
1002 * elf.c (elfcore_write_prstatus): Make sure we pass the address of
1003 prstat.pr_reg even if it is a struct.
1004
1005 2002-01-25 Steve Ellcey <sje@cup.hp.com>
1006
1007 * bfd/elfxx-ia64.c: Reset AIX vector function overrides for HP-UX.
1008
1009 2002-01-25 Philipp Thomas <pthomas@suse.de>
1010
1011 * coffgen.c (coff_print_symbol): Don't mark info message
1012 for translation.
1013
1014 2002-01-25 Nick Clifton <nickc@redhat.com>
1015
1016 * po/fr.po: Updated translation.
1017 * po/es.po: Updated translation.
1018
1019 2002-01-25 Philipp Thomas <pthomas@suse.de>
1020
1021 * coff-alpha.c (alpha_relocate_section): Unify warning message
1022 for GP relative relocations without GP defined.
1023 * coff-mips.c (mips_relocate_section): Likewise.
1024
1025 2002-01-25 Alan Modra <amodra@bigpond.net.au>
1026
1027 * elf-eh-frame.c (_bfd_elf_eh_frame_section_offset): Avoid
1028 unsigned overflow when new_offset < old_offset.
1029
1030 2002-01-24 Philipp Thomas <pthomas@suse.de>
1031
1032 * bfd.c (_bfd_abort): Fix typo.
1033
1034 2002-01-23 Richard Henderson <rth@redhat.com>
1035
1036 * elf64-alpha.c (elf64_alpha_adjust_dynamic_symbol): Don't suppress
1037 plt entries for undefweak symbols.
1038
1039 2002-01-23 Steve Ellcey <sje@cup.hp.com>
1040
1041 * bfd/targets.c (bfd_elf32_ia64_hpux_big_vec): Add to
1042 DEFAULT_VECTOR.
1043 (bfd_elf64_ia64_hpux_big_vec): Ditto.
1044 (bfd_elf32_h8300_vec): Ditto.
1045
1046 2002-01-23 Alan Modra <amodra@bigpond.net.au>
1047
1048 * elf64-ppc.c: Remove stale part of ABI comment.
1049 (NO_OPD_RELOCS): Define.
1050 (ppc64_elf_check_relocs): Use it.
1051 (ppc64_elf_relocate_section): Here too.
1052 (build_one_stub): Don't point function syms at the stub. Instead,
1053 hijack plt.offset.
1054 (ppc64_elf_relocate_section): Check whether REL24 relocs should
1055 really go to the stub. Make all dynamic relocs in opd against
1056 locals.
1057 (ppc64_elf_finish_dynamic_symbol): Allow for non-standard use of
1058 plt.offset.
1059
1060 2002-01-22 Richard Henderson <rth@redhat.com>
1061
1062 * elf64-alpha.c (INSN_UNOP): Encode with RB as $sp.
1063
1064 2002-01-22 Alan Modra <amodra@bigpond.net.au>
1065
1066 * elf64-ppc.c (ppc64_elf_finish_dynamic_sections): Correct sign of
1067 TOC_BASE_OFF adjustment.
1068
1069 * Makefile.am: Run "make dep-am".
1070 * Makefile.in: Regenerate.
1071 * po/SRC-POTFILES.in: Regenerate.
1072
1073 2002-01-22 John David Anglin <dave@hiauly1.hia.nrc.ca>
1074
1075 * configure.host (hppa*64*-*-hpux*, hppa*64*-*-linux*): Add new
1076 host defines.
1077
1078 2002-01-21 Hans-Peter Nilsson <hp@axis.com>
1079
1080 * elf32-cris.c (cris_elf_relocate_section) <case R_CRIS_32_GOTREL>:
1081 Check for and emit error if sgot is NULL at this point.
1082
1083 2002-01-21 Jason Thorpe <thorpej@wasabisystems.com>
1084
1085 * config.bfd (ia64*-*-netbsd*): New target.
1086
1087 2002-01-21 Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>
1088
1089 * som.c (som_write_space_strings): Comment typo fix.
1090
1091 2002-01-21 Alan Modra <amodra@bigpond.net.au>
1092
1093 * elf64-ppc.c (struct ppc_link_hash_entry): Add is_func and
1094 is_func_descriptor fields.
1095 (link_hash_newfunc): Init them.
1096 (ppc64_elf_check_relocs): Only R_PPC24_REL24 syms starting with a
1097 dot are candidates for plt entries. When processing .opd relocs,
1098 set function descriptor strings to point inside function code
1099 string, and set new ppc_link_hash_entry fields.
1100 (ppc64_elf_gc_sweep_hook): Don't sweep R_PPC64_REL24 relocs.
1101 (ppc64_elf_adjust_dynamic_symbol): Remove most code dealing with
1102 function descriptors. It's now done in..
1103 (func_desc_adjust): New.
1104 (ppc64_elf_func_desc_adjust): New.
1105 (define elf_backend_always_size_sections): Define.
1106 (ppc64_elf_hide_symbol): New.
1107 (define elf_backend_hide_symbol): Define.
1108 (allocate_dynrelocs): Remove code looking up function descriptors
1109 as that has been done earlier.
1110 (ppc64_elf_size_dynamic_sections): Use htab shortcut to elf hash
1111 table.
1112 (ppc64_elf_finish_dynamic_symbol): Likewise. Remove code looking
1113 up function descriptor.
1114 (build_one_stub): Look up the function code sym. Check for
1115 invalid plt offsets.
1116 (ppc64_elf_relocate_section): Tweak calls to undefined weak syms.
1117 Convert R_PPC64_TOC relocs to R_PPC64_RELATIVE in shared libs.
1118
1119 * elf-bfd.h (elf_backend_data <elf_backend_hide_symbol>): Add
1120 boolean param.
1121 (_bfd_elf_link_hash_hide_symbol): Likewise.
1122 * elflink.h (elf_link_add_object_symbols): Adjust call to
1123 elf_backend_hide_symbol.
1124 (elf_fix_symbol_flags): Likewise.
1125 (elf_link_assign_sym_version): Likewise. Use bfd_malloc rather
1126 than bfd_alloc.
1127 * elf.c (_bfd_elf_link_hash_hide_symbol): Add "force_local" param.
1128 Set ELF_LINK_FORCED_LOCAL and call _bfd_elf_strtab_delref.
1129 * elf32-hppa.c (elf32_hppa_hide_symbol): Likewise.
1130 (clobber_millicode_symbols): Adjust to suit new hide_symbol.
1131 * elf32-cris.c (elf_cris_hide_symbol): Add "force_local" param
1132 and adjust to suit.
1133 * elf32-mips.c (_bfd_mips_elf_hide_symbol): Likewise, and call
1134 _bfd_elf_link_hash_hide_symbol rather than duplicating code.
1135 * elfxx-ia64.c (elfNN_ia64_hash_hide_symbol): Likewise.
1136
1137 2002-01-18 Alan Modra <amodra@bigpond.net.au>
1138
1139 * elf64-ppc.c (ppc64_elf_adjust_dynamic_symbol): Test for a
1140 dynamic function descriptor symbol, not the associated function
1141 symbol.
1142
1143 2002-01-17 Eric Christopher <echristo@redhat.com>
1144
1145 * elf32-mips.c (mips_elf_calculate_relocation): Fix typo.
1146
1147 2002-01-17 Nick Clifton <nickc@cambridge.redhat.com>
1148
1149 * po/bfd.pot: Regenerate.
1150 * po/fr.po: Regenerate.
1151
1152 2002-01-17 Alan Modra <amodra@bigpond.net.au>
1153
1154 * elf-bfd.h (elf_backend_data <elf_backend_section_from_bfd_section>):
1155 Remove "Elf_Internal_Shdr *" param.
1156 (_bfd_mips_elf_section_from_bfd_section): Ditto.
1157 * elf32-mips.c (_bfd_mips_elf_section_from_bfd_section): Ditto.
1158 * elf32-m32r.c (_bfd_m32r_elf_section_from_bfd_section): Ditto.
1159 * elf32-v850.c (v850_elf_section_from_bfd_section): Ditto.
1160 * elf64-mmix.c (mmix_elf_section_from_bfd_section): Ditto.
1161 * elfxx-ia64.c (elfNN_hpux_backend_section_from_bfd_section): Ditto.
1162 * elf.c (_bfd_elf_section_from_bfd_section): Allow backend
1163 function to override special sections. Remove hdr arg from
1164 backend call, and don't loop.
1165
1166 2002-01-16 Eric Christopher <echristo@redhat.com>
1167
1168 * elf32-mips.c (mips_elf_calculate_relocation): Set require_jalxp
1169 on R_MIPS_26 and target is 16bit. Add R_MIPS16_GPREL to list of
1170 relocations requiring gp0 and gp.
1171
1172 2002-01-16 Richard Earnshaw <rearnsha@arm.com>
1173
1174 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Handle
1175 EF_ARM_VFP_FLOAT.
1176 (elf32_arm_print_private_bfd_data): Likewise.
1177
1178 2002-01-16 Nick Clifton <nickc@cambridge.redhat.com>
1179
1180 * po/tr.po: Import new version.
1181
1182 2002-01-16 Alan Modra <amodra@bigpond.net.au>
1183
1184 * elf64-ppc.c (ppc64_elf_howto_raw): Remove stale FIXMEs.
1185 (ppc64_elf_reloc_type_lookup): Use proper CTOR reloc.
1186 (ORI_R0_R0_0): Correct.
1187
1188 2002-01-16 Alan Modra <amodra@bigpond.net.au>
1189
1190 * elflink.c (_bfd_elf_create_dynamic_sections): Don't set SEC_CODE
1191 when plt_not_loaded.
1192 * elf64-ppc.c (ppc64_elf_create_dynamic_sections): No need to
1193 clear .plt SEC_CODE here. Create .stub and correct .glink flags.
1194 (PLT_INITIAL_ENTRY_SIZE): Set to 24.
1195 (ppc64_elf_glink_code): Delete.
1196 (PPC64_ELF_GLINK_SIZE): Delete.
1197 (ADDIS_R12_R2, STD_R2_40R1, LD_R11_0R12, LD_R2_0R12, MTCTR_R11,
1198 BCTR, ADDIS_R12_R12_1, LD_R2_40R1, NOP, LI_R0_0, B_DOT, LIS_R0_0,
1199 ORI_R0_R0_0): Define.
1200 (PLT_CALL_STUB_SIZE, GLINK_CALL_STUB_SIZE): Define.
1201 (struct ppc_link_hash_table): Add sstub and plt_overflow.
1202 (ppc64_elf_link_hash_table_create): Init them.
1203 (ppc64_elf_check_relocs <R_PPC64_REL24>): Refcount .plt entry.
1204 Don't copy to shared lib.
1205 (ppc64_elf_check_relocs): Call bfd_set_error on errors.
1206 (ppc64_elf_gc_sweep_hook <R_PPC64_REL24>): Sweep plt refcount.
1207 (allocate_dynrelocs <plt>): Don't change function sym here. Make
1208 room for .stub and .glink code.
1209 (ppc64_elf_size_dynamic_sections): Handle .stub. Make entry for
1210 DT_PPC64_GLINK.
1211 (ppc64_elf_final_link): Rename to ppc64_elf_set_toc. Don't call
1212 bfd_elf64_bfd_final_link.
1213 (bfd_elf64_bfd_final_link): Don't define.
1214 (ppc64_elf_size_stubs): New.
1215 (build_plt_stub): New.
1216 (build_one_stub): New.
1217 (ppc64_elf_build_stubs): New.
1218 (ppc64_elf_relocate_section <toc relocs>): Remove assert.
1219 (ppc64_elf_relocate_section): Don't copy R_PPC64_REL24 relocs.
1220 (ppc64_elf_finish_dynamic_symbol): Don't build stubs here. Set
1221 DT_PPC64_GLINK entry. Tweak DT_PLTGOT, DT_JMPREL, DT_PLTRELSZ in
1222 case output sections not separate. Adjust DT_RELASZ to not
1223 include plt relocs. Set reserved got entry. Set got and plt
1224 entry size.
1225 (elf_backend_got_header_size): Set to 8.
1226 * elf64-ppc.h: New file.
1227
1228 2002-01-16 Alan Modra <amodra@bigpond.net.au>
1229
1230 * elf32-arm.h (elf32_arm_size_dynamic_sections): When removing
1231 sections, use bfd_section_list_remove.
1232 * elf32-i370.c (i370_elf_size_dynamic_sections): Likewise.
1233 * elflink.h (elf_link_add_object_symbols): When removing all
1234 sections, use bfd_section_list_clear.
1235
1236 2002-01-15 Nick Clifton <nickc@cambridge.redhat.com>
1237
1238 * po/sv.po: New file: Swedish translation.
1239 * configure.in (ALL_LINGUAS): Add sv.
1240 * configure: Regenerate.
1241
1242 2002-01-15 Jakub Jelinek <jakub@redhat.com>
1243
1244 * elflink.h (elf_link_input_bfd): Back out 2002-01-07 change.
1245 * elf.c (merge_sections_remove_hook): New function.
1246 (_bfd_elf_merge_sections): Pass it as 3rd argument to
1247 _bfd_merge_sections.
1248 * libbfd-in.h (_bfd_merge_sections): Add 3rd argument.
1249 * libbfd.h: Rebuilt.
1250 * merge.c (_bfd_merge_sections): Add remove_hook argument.
1251 Call remove_hook if a SEC_EXCLUDE section is encountered.
1252
1253 2002-01-15 Nick Clifton <nickc@cambridge.redhat.com>
1254
1255 * elf32-xstormy16.c (xstormy16_reloc_map): Add new field 'table'.
1256 (xstormy16_reloc_map): Initialise new field with correct howto
1257 table.
1258 (xstormy16_reloc_type_lookup): Use 'table' field to locate correct
1259 howto entry.
1260
1261 2002-01-10 Michael Snyder <msnyder@redhat.com>
1262
1263 * elf.c (elfcore_write_prstatus): Use long instead of pid_t;
1264 (elfcore_write_pstatus): Use long instead of pid_t;
1265 * elf-bfd.h: Change prototypes to use long instead of pid_t;
1266
1267 2002-01-09 Jason Thorpe <thorpej@wasabisystems.com>
1268
1269 * elf.c: Update copyright years.
1270 (elfcore_grok_netbsd_note): Use NT_NETBSDCORE_PROCINFO
1271 and NT_NETBSDCORE_FIRSTMACH. Improve a comment.
1272
1273 2002-01-08 Michael Snyder <msnyder@redhat.com>
1274
1275 Add capability to write corefile note sections, for gdb.
1276 * elf.c (elfcore_write_note): New function.
1277 (elfcore_write_prpsinfo): New function.
1278 (elfcore_write_prstatus): New function.
1279 (elfcore_write_pstatus): New function.
1280 (elfcore_write_prfpreg): New function.
1281 (elfcore_write_prxfpreg): New function.
1282 * elf-bfd.h: Add prototypes for above functions.
1283
1284 2002-01-08 Alexandre Oliva <aoliva@redhat.com>
1285
1286 * elf.c (elf_fake_sections): Propagate errors from
1287 elf_backend_fake_section.
1288
1289 2002-01-07 Jason Thorpe <thorpej@wasabisystems.com>
1290
1291 * Makefile.am (BFD32_BACKENDS): Add elf32-sh-nbsd.lo.
1292 (BFD32_BACKENDS_CFILES): Add elf32-sh-nbsd.c.
1293 (elf32-sh-nbsd.lo): New rule.
1294 * Makefile.in: Regenerate.
1295 * config.bfd (sh*le-*-netbsdelf*): New target.
1296 (sh*-*-netbsdelf*): New target.
1297 * configure.in: Include netbsd-core.lo for native sh*-*-netbsd*.
1298 (bfd_elf32_shnbsd_vec): New vector.
1299 (bfd_elf32_shlnbsd_vec): New vector.
1300 * configure: Regenerate.
1301 * elf32-sh-nbsd.c: New file.
1302 * targets.c: Update copyright years.
1303 (_bfd_target_vector): Add bfd_elf32_shlnbsd_vec and
1304 bfd_elf32_shnbsd_vec.
1305
1306 2002-01-07 Aldy Hernandez <aldyh@redhat.com>
1307
1308 * coff-rs6000.c (READ20): Use bfd_scan_vma.
1309
1310 2002-01-07 Geoffrey Keating <geoffk@redhat.com>
1311
1312 * elflink.h (elf_link_input_bfd): Don't ask for the merged offset
1313 of a symbol in a section that will be deleted.
1314
1315 2002-01-07 Nick Clifton <nickc@cambridge.redhat.com>
1316
1317 * po/es.po: New file: Spanish translation.
1318 * configure.in (ALL_LINGUAS): Add es.
1319 * configure: Regenerate.
1320
1321 2002-01-06 Steve Ellcey <sje@cup.hp.com>
1322
1323 * elfxx-ia64.c (is_unwind_section_name): Add target vector as
1324 argument so we can handle HP-UX specially.
1325 (elfNN_ia64_hpux_vec): New for use in is_unwind_section_name.
1326 (elfNN_hpux_backend_section_from_bfd_section): New for support
1327 of SHN_IA_64_ANSI_COMMON.
1328 (elfNN_ia64_relax_section): Add support for SHN_IA_64_ANSI_COMMON.
1329 (is_unwind_section_name): Add special HP-UX support.
1330 (elfNN_ia64_section_from_shdr): Add support for more sections.
1331 (elfNN_ia64_fake_sections): Modify is_unwind_section_name call and
1332 add support for more sections.
1333 (elfNN_ia64_additional_program_headers): Modify
1334 is_unwind_section_name call.
1335 (elfNN_ia64_modify_segment_map): Remove assumption that there is
1336 only one unwind section in segment.
1337
1338 2002-01-06 Alan Modra <amodra@bigpond.net.au>
1339
1340 * syms.c (_bfd_generic_make_empty_symbol): New function.
1341 * libbfd-in.h (_bfd_nosymbols_make_empty_symbol): Define as
1342 _bfd_generic_make_empty_symbol.
1343 * libbfd.h: Regenerate.
1344 * bfd-in2.h: Regenerate.
1345 * hppabsd-core.c (hppabsd_core_make_empty_symbol): Delete function.
1346 (hppabsd_core_get_symtab_upper_bound): Don't define.
1347 (hppabsd_core_get_symtab): Likewise.
1348 (hppabsd_core_print_symbol): Likewise.
1349 (hppabsd_core_get_symbol_info): Likewise.
1350 (hppabsd_core_bfd_is_local_label_name): Likewise.
1351 (hppabsd_core_get_lineno): Likewise.
1352 (hppabsd_core_find_nearest_line): Likewise.
1353 (hppabsd_core_bfd_make_debug_symbol): Likewise.
1354 (hppabsd_core_read_minisymbols): Likewise.
1355 (hppabsd_core_minisymbol_to_symbol): Likewise.
1356 (hppabsd_core_vec): Use BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols).
1357 Formatting fixes.
1358 * hpux-core.c: Similarly.
1359 * irix-core.c: Similarly.
1360 * osf-core.c: Similarly.
1361 * sco5-core.c: Similarly.
1362 * binary.c (binary_make_empty_symbol): Remove function, define as
1363 _bfd_generic_make_empty_symbol.
1364 * ihex.c (ihex_make_empty_symbol): Likewise.
1365 * mmo.c (mmo_make_empty_symbol): Likewise.
1366 * ppcboot.c (ppcboot_make_empty_symbol): Likewise.
1367 * srec.c (srec_make_empty_symbol): Likewise.
1368 * versados.c (versados_make_empty_symbol): Likewise.
1369 * vms.c (_bfd_vms_make_empty_symbol): Remove.
1370 (vms_make_empty_symbol): Define as _bfd_generic_make_empty_symbol.
1371 * vms-gsd.c (_bfd_vms_slurp_gsd): Call bfd_make_empty_symbol
1372 rather than _bfd_vms_make_empty_symbol.
1373 * vms-misc.c (new_symbol): Likewise.
1374
1375 2002-01-05 Alan Modra <amodra@bigpond.net.au>
1376
1377 * section.c (bfd_section_init): Remove unnecessary initialisations.
1378 (bfd_section_list_clear): New function.
1379 (bfd_section_list_remove, bfd_section_list_insert): New macros.
1380 (_bfd_strip_section_from_output): Use them.
1381 * coffcode.h (coff_set_alignment_hook): Likewise.
1382 * elf32-mips.c (_bfd_mips_elf_final_link): Likewise.
1383 * elf64-mips.c (mips_elf64_final_link): Likewise.
1384 * elf64-mmix.c (mmix_elf_final_link): Likewise.
1385 * sunos.c (sunos_add_dynamic_symbols): Likewise.
1386 * xcofflink.c (_bfd_xcoff_bfd_final_link): Likewise.
1387 * bfd-in2.h: Regenerate.
1388
1389 * netbsd-core.c (netbsd_core_file_p): Use bfd_make_section_anyway
1390 rather than doing our own section handling. Clean up after errors
1391 with bfd_release and bfd_section_list_clear. Handle unexpected
1392 flags.
1393 * aoutf1.h (sunos4_core_file_p): Likewise.
1394 * aix386-core.c (aix386_core_file_p): Likewise.
1395 * cisco-core.c (cisco_core_file_validate): Likewise.
1396 * ptrace-core.c (ptrace_unix_core_file_p): Likewise.
1397 * trad-core.c (trad_unix_core_file_p): Likewise.
1398
1399 * hppabsd-core.c (hppabsd_core_core_file_p): Clean up after errors
1400 with bfd_release and bfd_section_list_clear.
1401 * hpux-core.c (hpux_core_core_file_p): Likewise.
1402 * irix-core.c (irix_core_core_file_p): Likewise.
1403 * lynx-core.c (lynx_core_file_p): Likewise.
1404 * osf-core.c (osf_core_core_file_p): Likewise.
1405 * rs6000-core.c (rs6000coff_core_p): Likewise.
1406 * sco5-core.c (sco5_core_file_p): Likewise.
1407
1408 * elf32-mips.c (_bfd_mips_elf_lo16_reloc): Simplify, and perform
1409 sign extension adjustments without conditionals.
1410
1411 2002-01-04 Jakub Jelinek <jakub@redhat.com>
1412
1413 * elf-eh-frame.c (_bfd_elf_write_section_eh_frame): Don't crash if
1414 CIE at .eh_frame start is removed due to no FDEs referencing it.
1415
1416 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
1417
1418 * config.bfd (x86_64-*-netbsd*): New target.
1419 * configure.in (x86_64-*-netbsd*): Set COREFILE
1420 to netbsd-core.lo.
1421 * configure: Regenerated.
1422
1423 2002-01-03 Tom Rix <trix@redhat.com>
1424
1425 * xcofflink.c (_bfd_xcoff_bfd_final_link): Update .pad section ordering
1426 for recent bfd_make_section_anyway change.
1427
1428 2002-01-03 Nick Clifton <nickc@cambridge.redhat.com>
1429
1430 * elf32-arm.h (elf32_arm_final_link_relocate): Handle
1431 R_ARM_THM_PC11 reloc.
1432
1433 2002-01-02 Nick Clifton <nickc@cambridge.redhat.com>
1434
1435 * configure.in (LINGUAS): Add ja.
1436 * configure: Regenerate.
1437 * po/ja.po: Import from translation project's web site.
1438
1439 2002-01-02 Nick Clifton <nickc@cambridge.redhat.com>
1440
1441 * elf32-arm.h (elf32_arm_merge_private_bfd_data): Reformat error
1442 messages to ease translation into other languages.
1443
1444 For older changes see ChangeLog-0001
1445 \f
1446 Local Variables:
1447 mode: change-log
1448 left-margin: 8
1449 fill-column: 74
1450 version-control: never
1451 End: