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