Add support for creating shared libraries under i386 ELF and SPARC
[deliverable/binutils-gdb.git] / bfd / ChangeLog
1 Tue Jul 26 11:04:00 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
2
3 Add support for creating shared libraries under i386 ELF and SPARC
4 ELF. Based on patches by Eric Youngdale <ericy@cais.cais.com>.
5 * libelf.h (struct elf_link_hash_entry): Remove copy_offset field.
6 Add got_offset and plt_offset fields.
7 (ELF_LINK_HASH_REF_DYNAMIC_MULTIPLE): Don't define.
8 (ELF_LINK_HASH_DEF_DYNAMIC_MULTIPLE): Don't define.
9 (ELF_LINK_HASH_NEEDS_COPY): Define.
10 (struct elf_backend_data): Add check_relocs field.
11 (struct bfd_elf_section_data): Change relocs from PTR to
12 Elf_Internal_Rela *.
13 (struct elf_obj_tdata): Add local_got_offsets field.
14 (elf_local_got_offsets): Define accessor macro.
15 (bfd_elf32_link_create_dynamic_sections): Declare.
16 (bfd_elf32_link_record_dynamic_symbol): Declare.
17 (bfd_elf64_link_create_dynamic_sections): Declare.
18 (bfd_elf64_link_record_dynamic_symbol): Declare.
19 * elfcode.h (elf_slurp_reloc_table): Don't use the section data
20 relocs field.
21 (elf_link_record_dynamic_symbol): Make globally visible. Use
22 macro to rename to NAME(bfd_elf,link_record_dynamic_symbol).
23 (elf_link_add_object_symbols): If creating a shared library, put
24 make all local symbols dynamic. Don't bother with the
25 DYNAMIC_MULTIPLE flags. Call the check_relocs backend function if
26 it is defined.
27 (elf_link_create_dynamic_sections): Make globally visible. Use
28 macro to rename to NAME(bfd_elf,link_create_dynamic_sections). If
29 creating a shared library, make sure that _DYNAMIC is added as a
30 dynamic symbol.
31 (elf_link_read_relocs): New function.
32 (NAME(bfd_elf,record_link_assignment)): If creating a shared
33 library, always create symbols, and always make them dynamic.
34 (elf_bfd_final_link): Permit creation of shared libraries.
35 (elf_link_input_bfd): Use elf_link_read_relocs to get the relocs.
36 * elf.c (_bfd_elf_link_hash_newfunc): Don't initialize
37 copy_offset. Initialize got_offset and plt_offset.
38 * elf32-target.h (elf_backend_check_relocs): Define as 0 if not
39 defined.
40 (elf32_bed): Initialize check_relocs field.
41 * elf64-target.h (elf_backend_check_relocs): Define as 0 if not
42 defined.
43 (elf64_bed): Initialize check_relocs field.
44 * elf32-i386.c (elf_howto_table): Change R_386_PLT32 and
45 R_386_GOTPC to be pc_relative and pcrel_offset.
46 (elf_i386_pic_plt0_entry): Define.
47 (elf_i386_pic_plt_entry): Define.
48 (elf_i386_create_dynamic_sections): Create a .got.plt section, and
49 define _GLOBAL_OFFSET_TABLE_ at the start of it. If creating a
50 shared library, make sure that _GLOBAL_OFFSET_TABLE_ is added as a
51 dynamic symbol. Don't create .rel.bss if creating a shared
52 library.
53 (elf_i386_check_relocs): New function.
54 (elf_i386_adjust_dynamic_symbol): Don't make a PLT entry if the
55 symbol already has one. When making a PLT entry, set plt_offset.
56 Don't create a copy reloc when creating a shared library. Don't
57 set copy_offset, just set ELF_LINK_HASH_NEEDS_COPY.
58 (elf_i386_allocate_dynamic_section): Remove.
59 (elf_i386_size_dynamic_sections): Look through all the sections
60 rather than assuming we know their names. Remove any empty reloc
61 or plt sections. Only add a DT_DEBUG entry if not creating a
62 shared library. Only add a DT_PLTGOT entry if there is a PLT.
63 Add a DT_TEXTREL entry if required.
64 (elf_i386_relocate_section): Permit undefined symbols when
65 creating a shared library. Handle the special relocation types
66 specially.
67 (elf_i386_finish_dynamic_symbol): Create a PLT entry if plt_offset
68 is set. If creating a shared library, produce a PIC PLT entry.
69 Only mark a PLT symbol as undefined if it was not defined by a
70 regular object file. Create a GOT entry if got_offset is set.
71 Create a copy reloc if ELF_LINK_HASH_NEEDS_COPY is set.
72 (elf_i386_finish_dynamic_sections): Change the handling of
73 DT_RELSZ to simply subtract out the size of .rel.plt. If creating
74 a shared library, produce PIC PLT code.
75 (elf_backend_check_relocs): Define.
76 * elf32-sparc.c (elf_sparc_howto_table): Change R_SPARC_GOT10,
77 R_SPARC_GOT22, and R_SPARC_PC10 to not warn about reloc overflow.
78 (elf32_sparc_create_dynamic_sections): If creating a shared
79 library, make sure that _GLOBAL_OFFSET_TABLE_ is added as a
80 dynamic symbol, and set the type to STT_OBJECT. Likewise for
81 _PROCEDURE_LINKAGE_TABLE_. Don't create .rel.bss if creating a
82 shared library.
83 (elf32_sparc_check_relocs): New function.
84 (elf32_sparc_adjust_dynamic_symbol): Don't make a PLT entry if the
85 symbol already has one. When making a PLT entry, set plt_offset.
86 Don't create a copy reloc when creating a shared library. Don't
87 set copy_offset, just set ELF_LINK_HASH_NEEDS_COPY.
88 (elf32_sparc_allocate_dynamic_section): Remove.
89 (elf32_sparc_size_dynamic_sections): Look through all the sections
90 rather than assuming we know their names. Only add a DT_DEBUG
91 entry if not creating a shared library. Add a DT_TEXTREL entry if
92 required.
93 (elf32_sparc_relocate_section): Permit undefined symbols when
94 creating a shared library. Handle the special relocation types
95 specially.
96 (elf32_sparc_finish_dynamic_symbol): Create a PLT entry if plt_offset
97 is set. Only mark a PLT symbol as undefined if it was not defined
98 by a regular object file. Create a GOT entry if got_offset is
99 set. Create a copy reloc if ELF_LINK_HASH_NEEDS_COPY is set.
100 (elf32_sparc_finish_dynamic_sections): Store dynobj in a local
101 variable.
102 (elf_backend_check_relocs): Define.
103
104 Mon Jul 25 12:21:07 1994 Stan Shebs (shebs@andros.cygnus.com)
105
106 * configure.in (pc532mach_vec): Change to pc532machaout_vec.
107 * config.bfd (ns32k-*-netbsd*): Use ns32k-nbsd as bfd_name.
108 * Makefile.in (ALL_MACHINES): Add cpu-ns32k.o.
109 (BFD32_BACKENDS): Add aout-ns32k.o, netbsd532.o, m88kmach3.o,
110 pc532-mach.o.
111 * targets.c (pc532machaout_vec): Use instead of pc532mach_vec.
112 * config/pc532-mach.mt (DEFAULT_VECTOR): Ditto.
113 (SELECT_VECS): Remove.
114 * config/ns32k-nbsd.mt: New file, was ns32k-netbsd.mt.
115 * config/ns32k-netbsd.mt: Remove, name too long.
116
117 Fri Jul 22 11:07:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
118
119 * linker.c (generic_link_check_archive_element): When changing a
120 symbol to common, set the alignment.
121 (_bfd_generic_link_add_one_symbol): When creating a common symbol,
122 set the alignment.
123 * aoutx.h (aout_link_check_ar_symbols): When changing a symbol to
124 common, set the alignment.
125 (aout_link_add_symbols): Restrict the alignment of a common symbol
126 to the alignment power given by the architecture.
127 * libelf.h (struct elf_link_hash_entry): Remove align field. Add
128 copy_offset field.
129 * elfcode.h (elf_link_add_object_symbols): Store alignment in
130 new bfd_link_hash_entry field, not in elf_link_hash_entry field.
131 (elf_link_output_extsym): Similar change when getting alignment.
132 * elf.c (_bfd_elf_link_hash_newfunc): Don't initialize align. Do
133 initialize copy_offset.
134 * elf32-i386.c (elf_i386_adjust_dynamic_symbol): Use copy_offset
135 field rather than align field. Get alignment using bfd_log2
136 rather than switch.
137 * elf32-sparc.c (elf32_sparc_adjust_dynamic_symbol): Likewise.
138 * elf32-i386.c (elf_i386_finish_dynamic_symbol): Use copy_offset,
139 not align.
140 * elf32-sparc.c (elf32_sparc_finish_dynamic_symbol): Likewise.
141
142 * aoutx.h (NAME(aout,some_aout_object_p)): Just check
143 STAT_FOR_EXEC, don't check MACH.
144 * m88kmach3.c (MACH): Don't define.
145 * config/i386-mach3.mt (TDEFINES): Define STAT_FOR_EXEC.
146 * config/m88k-mach3.mt (TDEFINES): Likewise.
147 * config/mips-mach3.mt (TDEFINES): Likewise.
148
149 Thu Jul 21 17:24:31 1994 Stan Shebs (shebs@andros.cygnus.com)
150
151 * i386mach3.c: Reverted to version from before Jul 5 1994 changes.
152
153 Thu Jul 21 12:26:01 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
154
155 * reloc.c (struct reloc_howto_struct): Remove special_function1.
156 It's the wrong way to do things.
157 (HOWTO): Change accordingly.
158 (HOWTO2): Remove.
159 (_bfd_final_link_relocate): Remove references to
160 special_function1.
161 * bfd-in2.h: Rebuilt.
162 * aoutx.h (aout_link_input_section_std): Remove references to
163 special_function1.
164 (aout_link_reloc_link_order): Likewise.
165
166 Wed Jul 20 15:46:44 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
167
168 * elfcode.h (NAME(bfd_elf,size_dynamic_sections)): Add rpath
169 argument. If it is not NULL, use it to set DT_RPATH.
170 * bfd-in.h (bfd_elf32_size_dynamic_sections): Update prototype.
171 (bfd_elf64_size_dynamic_sections): Likewise.
172 * bfd-in2.h: Rebuilt.
173
174 Sat Jul 16 21:10:39 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
175
176 * elfcode.h (elf_get_dynamic_symtab_upper_bound): If there is no
177 dynamic symtab, return error.
178
179 * libelf.h (ELF_LINK_HASH_DEFINED_WEAK): Define.
180 * elfcode.h (elf_link_add_object_symbols): If symbol is defined as
181 weak, set ELF_LINK_HASH_DEFINED_WEAK.
182 (elf_link_output_extsym): If symbol is defined as weak, mark it
183 STB_WEAK.
184
185 * libelf.h (struct bfd_elf_section_data): Add relocs field.
186 (shdr_name): Remove; unused.
187 * elfcode.h (elf_slurp_reloc_table): Rewrote to handle both REL
188 and RELA relocs. Free up the unswapped relocs. Permit the relocs
189 to be cached in the section_data. Correct the reloc address.
190 (elf_slurp_reloca_table): Remove.
191 (elf_canonicalize_reloc): Rewrote.
192 (elf_link_input_bfd): Permit the relocs to be cached in the
193 section data.
194
195 Sat Jul 16 13:55:38 1994 Stan Shebs (shebs@andros.cygnus.com)
196
197 * config.bfd (m88*-harris-cxux*): Recognize.
198 * hosts/harris.h (POSIX_UTIME, HAVE_PROCFS): Define.
199
200 * configure.host (m68*-atari-sysv4*): New host.
201 (m68*-cbm-sysv4*): Use m68kv4 instead of amix.
202 * hosts/amix.h: Remove.
203 * hosts/m68kv4.h: New file, was amix.h.
204
205 Thu Jul 14 15:12:24 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
206
207 * reloc.c (enum bfd_reloc_code_real, bfd_type, struct
208 reloc_howto_struct, reloc_howto_type, HOWTO, HOWTO2): Copied
209 changes over from bfd-in2.h so they get generated properly next
210 time someone runs "make headers".
211 * bfd-in2.h: Rebuilt.
212
213 * targets.c (netbsd532_vec, pc532mach_vec): Declare const.
214 (m88kmach3_vec): Restore deleted declaration.
215
216 * configure.in: Alphabetize target vector names.
217
218 * config/pc532mach.mh: New file.
219 (HDEPFILES, HDEFINES): Define here.
220 * config/pc532-mach.mt (HDEPFILES, HDEFINES): Deleted.
221 * config/ns32k-netbsd.mt (HDEPFILES, HDEFINES): Deleted.
222
223 Sun Jul 10 00:04:20 1994 Ian Dall (dall@hfrd.dsto.gov.au)
224
225 * pc532-mach.c: New File. pc532-mach a.out format.
226
227 * netbsd532.c: New file. pc532-netbsd532 a.out format.
228
229 * hosts/pc532mach.h: New file. pc532-mach host support.
230
231 * cpu-ns32k.c: New file. ns32k support cpu specific code rather
232 than format specific code.
233
234 * config/pc532-mach.mt: New file. Support for pc532-mach target.
235
236 * config/ns32k-netbsd.mt: New file. Support for netbsd532 target.
237
238 * aout-ns32k.c, aout-ns32k.h: New files supporting aout format for
239 ns32k series.
240
241 * targets.c: Add netbsd532_vec and pc532machaout_vec into
242 bfd_target_vector array. Move netbsd386_vec to alphabetic order
243 location.
244
245 * reloc.c (_bfd_final_link_relocate) Add support for
246 special_function1 in howto.
247
248 * libaout.h: add M_NS32032, M_NS32532, M_532_NETBSD entries in
249 machine_type enum.
250
251 * configure.in: add pc532mach_vec and netbsd532_vec entries.
252
253 * config.bfd: add pc532mach host entries. Use for both
254 ns32k-pc532-mach and ns32k-pc532-netbsd.
255
256 * config.bfd: it doesn't work to use i386-mach3 for ns32k*-*-mach.
257 add ns32k-pc532-mach* and ns32k-*-netbsd* entries.
258
259 * bfd-in2.h: Add ns32k specific relocations to bfd_reloc_code_real
260 enum.
261
262 * bfd-in2.h: Add special_function1 to struct howto. Change HOWTO
263 and NEWHOWTO macros to make special_function1 NULL. Neww HOWTO2
264 macro.
265
266 * bfd-in2.h: Split definition of struct reloc_howto_struct
267 and corresponding typedef into two statements.
268
269 * bfd-in2.h: Add entry bfd_arch_ns32k to bfd_architecture enum.
270
271 * archures.c: Add bfd_ns32k_arch prototype, and entry in
272 archures_init_table.
273
274 * aoutx.h (aout_link_reloc_link_order): Allow for target dependent
275 MY_put_reloc macro. Allow for target dependent special_function1
276 to apply the relocation.
277
278 * aoutx.h (aout_link_input_section_std): Allow for target
279 dependent determination of reloc howto. Allow for target dependent
280 special_function1 to apply the relocation.
281
282 * aoutx.h (get_reloc_upper_bound): Detect bss and return 0.
283
284 * aoutx.h (slurp_reloc_table): Detect bss and succesfully read
285 zero reloc entries.
286
287 * aoutx.h (machine_type): Add bfd_arch_ns32k case.
288
289 * aoutx.h: Stat to determine executable status if STAT_FOR_EXEC
290 is defined (not just MACH). Use fstat instead of stat and check
291 for fstat error.
292
293 * aoutx.h: Allow target dependent swap_std_reloc_{in,out}.
294
295 * aoutx.h: Allow CTORS reloc info to be in target dependent reloc
296 table.
297
298 * aout-target.h: Apply SWAP_MAGIC (if defined) after
299 swap_exec_header_in, otherwise we have magic in the wrong order.
300
301 Thu Jul 14 11:47:27 1994 Stan Shebs (shebs@andros.cygnus.com)
302
303 * coff-sparc.c (sparccoff_vec): Have leading underscores.
304
305 Tue Jul 12 12:08:10 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
306
307 * aix386-core.c, aoutf1.h, cisco-core.c, elfcode.h, hppabsd-core.c,
308 hpux-core.c, irix-core.c, lynx-core.c, osf-core.c, ptrace-core.c,
309 rs6000-core.c, trad-core.c: Remove SEC_ALLOC flag from .reg
310 sections, .reg sections are not allocated and contain debug
311 information only.
312 * osf-core.c (make_bfd_asection, osf_core_core_file_p): Use
313 bfd_make_section_anyway instead of building unique section names.
314
315 Tue Jul 12 11:41:22 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
316
317 * libelf.h (bfd_elf32_swap_symbol_in): Declare.
318 (bfd_elf32_swap_symbol_out): Declare.
319 (bfd_elf64_swap_symbol_in, bfd_elf64_swap_symbol_out): Declare.
320 * elf32-hppa.c (elf32_hppa_args_hash_table_init): Correct cast.
321
322 * aout-encap.c (ARCH): Don't define. Obsolete.
323 * aout0.c, aoutx.h, gen-aout.c, hp300bsd.c, hp300hpux.c: Likewise.
324 * i386aout.c, i386bsd.c, i386dynix.c, i386linux.c: Likewise.
325 * i386lynx.c, m68klynx.c, mipsbsd.c, netbsd386.c: Likewise.
326 * newsos3.c, sparclynx.c, sunos.c: Likewise.
327
328 Mon Jul 11 20:08:23 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
329
330 * section.c (STD_SECTION): Make the sixth argument boolean, not
331 the seventh. From gary@tuva.pacsemi.oz.au (gary kopff).
332
333 Sun Jul 10 09:12:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
334
335 * aoutx.h (bfd_free_cached_info): Change name of FREE to BFCI_FREE
336 in order not to collide with LynxOS's definition of FREE in
337 /usr/include/sys/proc.h
338
339 Thu Jul 7 14:18:06 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
340
341 * reloc.c (bfd_perform_relocation): Don't clobber the relocation
342 value for coff-Intel-little or coff-Intel-big. Hack upon hack.
343
344 Thu Jul 7 10:10:34 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
345
346 * aoutx.h (howto_table_std): Add entry for GOT relocations
347 which are present in sun3 shared libraries, to avoid assertions
348 when reading the dynamic relocations.
349
350 Thu Jul 7 10:19:20 1994 Jeff Law (law@snake.cs.utah.edu)
351
352 * som.h (R_HPPA_COMPLEX): Fix dumb typo.
353
354 Wed Jul 6 19:21:57 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
355
356 * hosts/sysv4.h (qsort, strtol): Don't declare.
357
358 * elfcode.h (elf_link_output_sym): Don't call output_symbol_hook
359 if it is NULL.
360
361 * elf32-mips.c (mips_elf_final_write_processing): Add ignored info
362 argument to correspond to recent libelf.h change.
363
364 Wed Jul 6 00:48:57 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
365
366 * coff-alpha.c (alpha_ecoff_mkobject_hook): New hook to
367 additionally copy object type information from the alpha file
368 header to the BFD flags.
369 (alpha_ecoff_backend_data): Use it.
370 (ecoffalpha_little_vec): Add DYNAMIC to object_flags.
371 * aout64.c: Fix typo in conditional QMAGIC definition.
372
373 Wed Jul 6 00:13:17 1994 Jeff Law (law@snake.cs.utah.edu)
374
375 * hppabsd-core.c (hppabsd_core_core_file_p): Sanity check the
376 value of clicksz to help weed out non HPPA BSD core files.
377
378 Tue Jul 5 13:26:02 1994 Stan Shebs (shebs@andros.cygnus.com)
379
380 Mach 3 support.
381 * config.bfd (m88*-*-mach3*, mips*-dec-mach3*, mips*-*-mach3*):
382 New targets.
383 * configure.host (i[34]86-*-mach3*, ns32k-*-mach3*): Recognize
384 "mach3" instead of "mach".
385 (m88*-*-mach3*, mips*-dec-mach3*, mips*-*-mach3*): New hosts.
386 * targets.c (m88kmach3_vec): New target vector.
387 (bfd_target_vector): Add i386mach3_vec and m88kmach3_vec, but
388 inside #if 0.
389 * aoutx.h (some_aout_object_p) [MACH]: Recognize executables by
390 checking for execute permission, instead of looking at entry
391 point.
392 * i386mach3.c: Update, define MACH, N_TXTOFF, N_TXTADDR,
393 N_SHARED_LIB, don't include aout/*.h files, etc.
394 * m88kmach3.c: New file, m88k Mach 3 target.
395 * config/m88k-mach3.mt, config/mips-mach3.mt: New files, target
396 makefile fragments.
397 * config/i386mach3.mh, config/m88kmach3.mh, config/mipsmach3.mh:
398 New files, host makefile fragments.
399 * hosts/m88kmach3.h, hosts/mipsmach3.h: New files, host definitions.
400
401 Tue Jul 5 13:56:52 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
402
403 * elfcode.h (swap_out_syms): Get alignment of common symbol from
404 st_value field of saved ELF symbol information, if there is any.
405
406 Mon Jul 4 19:13:32 1994 Jeff Law (law@snake.cs.utah.edu)
407
408 * som.h (R_HPPA_COMPLEX): Define.
409 * elf32-hppa.h (R_HPPA_COMPLEX): Define.
410 (elf32_hppa_reloc_type): Delete R_PARISC_STUB_CALL_17.
411
412 Fri Jul 1 12:07:41 1994 Jeff Law (law@snake.cs.utah.edu)
413
414 * Support code for enabling the new style linker for PA ELF.
415 * elfcode.h (swap_symbol_in, swap_symbol_out): Externalize.
416 (elf_compute_section_file_positions): Pass link_info to
417 the begin_write_processing hook.
418 (bfd_elf_write_object_contents): Pass NULL for new link_info
419 argument to final_write_processing hook.
420 (elf_link_output_sym): Accept new "input_section" argument for
421 the symbols's input section. All callers changed. Call the
422 link_output_symbol_hook if it's defined.
423 (elf_bfd_final_link): Call the final_write_processing hook if
424 it's defined.
425 * libelf.h (elf_backend_link_output_symbol_hook): Declare.
426 (elf_backend_begin_write_processing): Add new "info" argument.
427 (elf_backend_final_write_processing): Likewise.
428 * elf32-target.h (elf_backend_link_output_symbol_hook): Provide
429 a default definition.
430 (elf32_bed): Add elf_backend_link_output_symbol_hook.
431 * elf64-target.h: Likewise.
432
433 * Major rework of the PA ELF code. Uses the new style BFD
434 linker, major cleanups.
435 * hppa_stubs.h: Rewrite from scratch. Much smaller and simpler.
436 * elf32-hppa.h: Delete all symbol extension related code.
437 (hppa_look_for_stubs_in_section): Delete decl.
438 (elf32_hppa_size_stubs, elf32_hppa_build_stubs): New decls.
439 * elf32-hppa.c: Symbol extension stuff moved form elf32-hppa.h
440 into elf32-hppa.c. Do not include aout64.h.
441 (typdef hppa_stub_type): Delete.
442 (elf32_hppa_stub_name_list_struct): Delete.
443 (elf32_hppa_stub_description_struct): Delete.
444 (arg_reloc_type): Use simpler enumerations. All references changed.
445 (arg_location, arg_reloc_relocation): Likewise.
446 (elf32_hppa_symextn_map_struct): Delete.
447 (get_symbol_value): Delete.
448 (elf32_hppa_get_sym_extn): Delete.
449 (find_stubs, new_stubs, type_of_mismatch): Delete.
450 (find_stub_by_name, add_stub_by_name): Delete.
451 (hppa_elf_stub_finish, hppa_elf_stub_reloc): Delete.
452 (hppa_elf_arg_reloc_needed): Renamed. Simplify.
453 (hppa_elf_build_linker_stub, hppa_elf_create_stub_sec): Delete.
454 (hppa_elf_long_branch_needed_p): Delete.
455 (hppa_look_for_stubs_in_section): Delete.
456 (hppa_elf_get_section_contents): Delete.
457 (elf32_hppa_backend_symbol_processing): Delete.
458 (elf32_hppa_backend_section_processing): Delete.
459 (elf32_hppa_backend_section_from_shdr): Delete.
460 (elf32_hppa_backend_fake_sections): Delete.
461 (elf32_hppa_backend_section_from_bfd_section): Delete.
462 (NEW_INSTRUCTION): Delete.
463 (CURRENT_STUB_OFFSET): Delete.
464 (elf32_hppa_relocate_section): New function.
465 (elf32_hppa_bfd_final_link_relocate): New function.
466 (elf32_hppa_size_symext): New function.
467 (elf32_hppa_link_output_symbol_hook): New function.
468 (elf32_hppa_read_symext_info): New function.
469 (elf32_hppa_add_symbol_hook): New function.
470 (elf32_hppa_name_of_stub): New function.
471 (elf32_hppa_size_of_stub): New function.
472 (elf32_hppa_build_one_sub): New function.
473 (elf32_hppa_build_stubs): New function.
474 (elf32_hppa_size_stubs): New function.
475 (linker, stub and argument hash tables): Add appropriate
476 structures, definitions and functions to implement all three
477 hash tables.
478 (hppa_elf_relocate_insn): Don't need argument location information
479 in this function.
480 (add_entry_to_symext_chain): Accept a symbol's argument location
481 information rather than the symbol itself. All callers changed.
482 (hppa_elf_gen_reloc_type): Simplify.
483 (hppa_elf_set_section_contents): Stub section is no longer special.
484 (hppa_elf_reloc): Greatly simplify.
485 (elf32_hppa_begin_write_processing): Accept link_info argument.
486 Handle being called from the BFD backend linker.
487 (elf32_hppa_final_write_processing): Likewise.
488 (elf_hppa_tc_make_sections): No longer call stub_finish.
489
490 Mon Jun 27 18:07:06 1994 Steve Chamberlain (sac@cirdan.cygnus.com)
491
492 * section.c (bfd_get_section_contents): Put in parens to get
493 precedence right.
494
495 Sun Jun 26 18:08:29 1994 Jeff Law (law@snake.cs.utah.edu)
496
497 * libelf.h (relocate_section): New argument "output_names" added
498 to prototype.
499 * elfcode.h (elf_link_input_bfd): New argument "output_names"
500 added to prototype of relocate_section. Pass the output symbol
501 names to relocate_section.
502 * elf32-i386.c (elf_i386_relocate_section): Use "output_names" to
503 determine the name of a local symbol.
504 * elf32-mips.c (mips_elf_relocate_section): Likewise.
505 * elf32-sparc.c (elf32_sparc_relocate_section): Likewise.
506
507 Fri Jun 24 08:15:42 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
508
509 Add Solaris BCP (the part of Solaris which allows it to run
510 SunOS4 a.out files) core file handling.
511 * aoutf1.h (external_solaris_bcp_core, swapcore_solaris_bcp):
512 New structure and its swap in function.
513 (internal_sunos_core): New member c_data_addr, to receive the
514 start address of the data section in the core file.
515 (swapcore_sun3, swapcore_sparc, sunos4_core_file_p): Use it.
516 (sunos4_core_file_p): Recognize Solaris BCP core file.
517 (sunos4_core_file_matches_executable_p): Always indicate match
518 for Solaris BCP core files.
519
520 Thu Jun 23 15:31:28 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
521
522 Preliminary support for generating shared libraries, from Eric
523 Youngdale <ericy@cais.cais.com>.
524 * elfcode.h (prep_headers): If DYNAMIC, set e_type to ET_DYN.
525 (elf_link_add_object_symbols): If generating a shared library,
526 create dynamic sections for first input BFD with the right format.
527 (elf_link_create_dynamic_sections): Don't create .interp section
528 if creating a shared library.
529 (elf_link_input_bfd): Skip dynamic sections in input file.
530 (elf_bfd_final_link): If creating a shared library, it's OK for
531 dynobj to have sections which are not SEC_IN_MEMORY.
532 * elf32-i386.c (elf_i386_size_dynamic_sections): Only set .interp
533 section if not creating a shared library.
534 * elf32-sparc.c (elf_sparc_size_dynamic_sections): Likewise.
535
536 * elfcode.h (elf_object_p): Don't set DYNAMIC just because there
537 is an SHT_DYNAMIC section.
538
539 * cf-i386lynx.c (i386coff_vec): Don't include DYNAMIC in
540 object_flags.
541 * coff-sparc.c (sparccoff_vec): Likewise.
542 * hppabsd-core.c (hppabsd_core_vec): Likewise.
543
544 * aoutx.h (NAME(aout,some_aout_object_p)): Don't set SEC_RELOC
545 just because DYNAMIC is set.
546
547 Thu Jun 23 12:53:41 1994 David J. Mackenzie (djm@rtl.cygnus.com)
548
549 * configure.in: Change --with-targets to --enable-targets and
550 --with-64-bit-bfd to --enable-64-bit-bfd.
551 * Makefile.in, mpw-make.in, targets.c: Change comments.
552
553 Wed Jun 22 17:59:59 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
554
555 * config.bfd (powerpc-*-elf*): New target, just like
556 powerpc-*-sysv4*.
557
558 * linker.c (FAIL): Undefine macro before defining as enum.
559
560 Wed Jun 22 10:52:47 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
561
562 * linker.c (_bfd_generic_link_add_archive_symbols): Initialize
563 pass from abfd->archive_pass, and save it there as well.
564
565 * hash.c (bfd_hash_allocate): Don't call bfd_set_error if
566 obstack_alloc returns NULL unless the size is non-zero.
567
568 * linker.c (archive_hash_allocate): Define.
569 (_bfd_generic_link_add_archive_symbols): Use archive_hash_allocate
570 rather than obstack_alloc, for clarity.
571
572 * elfcode.h (elf_get_reloc_upper_bound): Correct.
573
574 * aout64.c (BMAGIC, QMAGIC): Define if not already defined. From
575 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>.
576
577 Linux ZMAGIC support from Eric Youngdale <ericy@cais.cais.com>.
578 * libaout.h (struct aoutdata): Add field zmagic_disk_block_size.
579 * aout-target.h (MY(callback)): Only set alignment according to
580 architecture if the section sizes are aligned to that alignment,
581 for backward compatibility.
582 (MY(set_sizes)): Initialize zmagic_disk_block_size field.
583 * aoutx.h (adjust_z_magic): Set ztih if using q_magic_format. Set
584 text section filepos to zmagic_disk_block_size if not ztih. Use a
585 different padding algorithm if not ztih.
586 * i386linux.c (MY_text_includes_header): Don't define.
587
588 * aoutx.h (aout_link_check_ar_symbols): Just skip N_STAB and N_FN
589 symbols; don't look them up in the hash table. From
590 ralphc@pyramid.com (Ralph Campbell).
591
592 Tue Jun 21 11:47:20 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
593
594 * coff-go32.c (go32coff_archive_p): Remove unused function.
595
596 * section.c (bfd_abs_section): Make const.
597 (bfd_abs_section_ptr, bfd_is_abs_section): Define.
598 (bfd_und_section): Make const.
599 (bfd_und_section_ptr, bfd_is_und_section): Define.
600 (bfd_com_section): Make const.
601 (bfd_com_section_ptr): Define.
602 (bfd_ind_section): Make const.
603 (bfd_ind_section_ptr, bfd_is_ind_section): Define.
604 (bfd_abs_symbol, bfd_com_symbol): Make const.
605 (bfd_und_symbol, bfd_ind_symbol): Likewise.
606 (global_syms): Cast initialization of section field.
607 (STD_SECTION): Define as const, and cast initializations.
608 * bfd-in2.h: Rebuilt.
609 * Many files: Change uses of bfd_abs_section, etc., to use
610 bfd_abs_section_ptr or bfd_is_abs_section, etc.
611
612 Mon Jun 20 11:06:27 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
613
614 * Many files: change all bfd_target vectors to be const. Change
615 all uses of bfd_target * to be const bfd_target *. Change
616 bfd_target_vector and bfd_default_vector arrays to be const
617 bfd_target * const *.
618
619 * ecoff.c, libecoff.h, ecoffswap.h, coff-alpha.c, coff-mips.c,
620 elf32-mips.c: Renamed all externally visible ECOFF routines which
621 are local to BFD to start with _bfd_ecoff instead of just ecoff.
622
623 * ecoff.c (ecoff_swap_tir_in): Change input argument to const.
624 (ecoff_swap_tir_out): Likewise.
625 (ecoff_swap_rndx_in, ecoff_swap_rndx_out): Likewise.
626 (ecoff_slurp_symbolic_info): Add new arguments to correspond to
627 read_debug_info entry point in ecoff_debug_swap structure.
628 Change all calls.
629 * libecoff.h (ecoff_slurp_symbolic_info): Change declaration.
630 * ecoffswap.h (ecoff_swap_tir_in, ecoff_swap_tir_out): Declare.
631 (ecoff_swap_rndx_in, ecoff_swap_rndx_out): Declare.
632 * coff-alpha.c (alpha_ecoff_backend_data): Initialize new
633 ecoff_debug_swap fields.
634 * coff-mips.c (mips_ecoff_backend_data): Likewise.
635 * elf32-mips.c (mips_elf_read_ecoff_info): Undefine READ.
636 (mips_elf_ecoff_debug_swap): Initialize new ecoff_debug_swap
637 fields.
638 * configure.in (bfd_elf32_bigmips_vec): Use ecoff.o and
639 ecofflink.o.
640 (bfd_elf32_littlemips_vec): Likewise.
641 (ecoff_big_vec, ecoff_little_vec): Likewise.
642 (ecoffalpha_little_vec): Likewise.
643 * Makefile.in (BFD_LIBS): Remove ecoff.o and ecofflink.o.
644 (BFD32_BACKENDS): Add ecoff.o and ecofflink.o.
645
646 * aoutx.h (NAME(aout,final_link)): Check flavour of sub, not abfd,
647 when computing reloc sizes. From Eric Youngdale
648 <ericy@cais.cais.com>.
649 * elfcode.h (elf_bfd_final_link): Don't try to compute maximum
650 reloc count or size for a non-ELF file.
651
652 * mipsbsd.c (MY_final_link_callback): Define to avoid warning.
653
654 * hp300hpux.c (MY_final_link_callback): Define to avoid warning.
655 (BMAGIC, QMAGIC): Define; used by aoutx.h.
656 (MY(slurp_symbol_table)): Change translate_from_native_sym_flags
657 calls to use new parameters.
658
659 Fri Jun 17 14:45:32 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
660
661 * aout-target.h (MY(callback)): Set the alignments of the text,
662 data and bss sections after determining the architecture.
663
664 * sunos.c (sunos_add_one_symbol): Treat a common symbol from a
665 dynamic object as being in the .bss section of the object, rather
666 than as being undefined.
667
668 Fri Jun 17 11:16:50 1994 Jeff Law (law@snake.cs.utah.edu)
669
670 * libhppa.h (bfd_hppa_insn2fmt, hppa_rebuild_insn): Make INLINE.
671
672 * elf32-hppa.h (elf_hppa_final_processing): Delete decl.
673
674 Thu Jun 16 23:36:23 1994 Jeff Law (law@snake.cs.utah.edu)
675
676 * elfcode.h (elf_link_input_bfd): Don't try to read local symbols
677 if there aren't any in the input file.
678
679 Thu Jun 16 14:25:22 1994 Eric Youngdale (ericy@cais.cais.com)
680
681 * i386linux.c: Many new functions and definitions for linker
682 support for Linux shared libraries.
683 * bfd-in.h (bfd_linux_size_dynamic_sections): Declare.
684 * bfd-in2.h: Rebuild.
685
686 Thu Jun 16 14:23:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
687
688 * config.bfd: If second argument is ``_'', then, instead of
689 echoing config file name, echo whether target uses leading
690 underscores on symbol names. Add appropriate settings to
691 different cases. Used by binutils/configure.in to set default for
692 c++filt.
693
694 * elfcode.h (elf_bfd_final_link): If trying to generate a shared
695 object, warn and return false.
696
697 * aoutx.h (NAME(aout,some_aout_object_p)): Accept BMAGIC objects
698 and treat them as OMAGIC.
699
700 Wed Jun 15 18:02:21 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
701
702 Enable sparc v9 support for release. Note that this is still a
703 work in progress, pending release of an ABI specification.
704 * config.bfd, configure.in: Include sparc v9 elf config.
705 * elfcode.h (prep_headers): Handle sparc v9 (64 bit).
706 * reloc.c (bfd_reloc_code_real): New reloc types.
707 * elf64-sparc.c: Implement elf64-sparc target.
708 * Makefile.in, targets.c: Updated.
709
710 Wed Jun 15 01:34:07 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
711
712 * libelf.h (struct elf_obj_tdata): New field dt_needed_name.
713 (elf_dt_needed_name): New accessor macro.
714 * elfcode.h (elf_link_add_object_symbols): If elf_dt_needed_name
715 is set, use that instead of the filename for the DT_NEEDED dynamic
716 entry.
717 * elf.c (bfd_elf_set_dt_needed_name): New function.
718 * bfd-in.h (bfd_elf_set_dt_needed_name): Declare.
719 * bfd-in2.h: Rebuilt.
720
721 * elfcode.h (NAME(bfd_elf,size_dynamic_sections)): Add sinterpptr
722 argument, and set it to the .interp section.
723 * bfd-in.h (bfd_elf32_size_dynamic_sections): Update prototype.
724 (bfd_elf64_size_dynamic_sections): Likewise.
725 * bfd-in2.h: Rebuilt.
726
727 * coff-sparc.c (SWAP_OUT_RELOC_EXTRA): Define to clear the r_spare
728 field of the reloc rather than letting it be garbage.
729
730 * archive.c (bfd_slurp_armap): Recognize __.SYMDEF/ as well as
731 __.SYMDEF; the former was used in old Linux archives. From
732 jrs@world.std.com (Rick Sladkey).
733
734 * i386linux.c (i386linux_write_object_contents): Define; like
735 MY(write_object_contents) in aout-target.h, but set MACHTYPE to
736 M_386. From jrs@world.std.com (Rick Sladkey).
737 (MY_write_object_contents): Define.
738
739 * aoutx.h (translate_from_native_sym_flags): Treat N_SETV symbols
740 as N_DATA symbols.
741 (aout_link_add_symbols): Likewise.
742
743 * aoutx.h: Rewrite symbol duplicate elimination to use BFD hash
744 tables.
745 (struct stringtab_entry, struct stringtab_data): Remove.
746 (HASHMAXLEN, HASH_CHAR, hash, compare, log2, emit_strtab): Remove.
747 (struct strtab_hash_entry, struct strtab_hash): Define.
748 (strtab_hash_newfunc, strtab_hash_lookup): Define.
749 (stringtab_free, emit_stringtab): Define.
750 (stringtab_init, add_to_stringtab): Rewrite.
751 (NAME(aout,write_syms)): Use new stringtab code.
752 (struct aout_final_link_info, NAME(aout,final_link)): Likewise.
753 (aout_link_write_symbols, aout_link_write_other_symbol): Likewise.
754
755 * bfd-in.h (BFD_TRADITIONAL_FORMAT): Define new BFD flag to
756 request BFD to write object in the traditional format, whatever
757 that means for the particular backend.
758 * bfd-in2.h: Rebuilt.
759
760 * hash.c (bfd_hash_allocate): If obstack_alloc fails, set
761 bfd_error_no_memory.
762
763 Tue Jun 14 13:00:04 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
764
765 * libaout.h (struct aoutdata): Add q_magic_format to subformat
766 enum.
767 * aout-target.h (MY_bfd_copy_private_bfd_data): Define as function
768 if not already defined. Copy subformat information.
769 (MY_text_includes_header): Define as 0 if not already defined.
770 (MY(backend_data)): Use MY_text_includes_header rather than 0.
771 (MY_final_link_callback): Rename from final_link_callback, and
772 define only if MY_final_link_callback is not already defined.
773 (MY_bfd_final_link): Rename use of final_link_callback to
774 MY_final_link_callback.
775 * aoutx.h (NAME(aout,some_aout_object_p)): Handle QMAGIC like
776 ZMAGIC, but set the subformat to q_magic_format. Abort if the
777 magic number if not recognized.
778 (adjust_z_magic): Use QMAGIC if q_magic_format.
779 * i386linux.c (MY_text_includes_header): Define as 1.
780 (i386linux_bfd_final_link): New static function.
781 (MY_bfd_final_link): Define as i386linux_bfd_final_link.
782
783 * aoutx.h (translate_to_native_sym_flags): Check both section and
784 output_section against sections of abfd.
785
786 * libecoff.h (struct ecoff_link_hash_entry): Change type of
787 written from boolean to char. Add new field small.
788 * ecoff.c (ecoff_link_hash_newfunc): Initialize written to 0
789 rather than false. Initialize small to 0.
790 (ecoff_link_add_externals): If ECOFF type is scSUndefined, set
791 small. If small is set, and hash table type is common, force the
792 symbol into a section named SCOMMON and change the ECOFF type from
793 scCommon to scSCommon.
794 (ecoff_link_write_external): Set written to 1 rather than true.
795 * coff-mips.c (mips_relocate_section): Correct JMPADDR reloc
796 overflow check to consider section VMA of input file.
797
798 Mon Jun 13 14:20:07 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
799
800 * aoutf1.h (aout_32_sunos4_write_object_contents): Handle a
801 machine type of 68000.
802 * aoutx.h (NAME(aout,machine_type)): Add new argument unknown.
803 Set *unknown to true if machine type is really unknown, as opposed
804 to M_UNKNOWN for the 68000.
805 (NAME(aout,set_arch_mach)): Change NAME(aout,machine_type) call
806 accordingly.
807 * libaout.h (NAME(aout,machine_type)): Add new argument to
808 prototype.
809
810 Sun Jun 12 20:21:03 1994 Jeff Law (law@snake.cs.utah.edu)
811
812 * som.c (EXEC_AUX_ID): Define based on availablity of HPUX_AUX_ID
813 or HIUX_AUX_ID.
814 (som_begin_writing): Use EXEC_AUX_ID instead of HPUX_AUX_ID.
815 (som_write_armap): Use CPU_PA_RISC1_0 as the magic number. Note
816 som.c is careful to always define CPU_PA_RISC1_0.
817
818 Sat Jun 11 16:32:30 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
819
820 Add weak symbols as an extension to a.out.
821 * aoutx.h (sym_in_text_section): Don't define.
822 (sym_in_data_section, sym_in_bss_section): Likewise.
823 (sym_is_undefined, sym_is_global_defn): Likewise.
824 (sym_is_debugger_info, sym_is_fortrancommon): Likewise.
825 (sym_is_absolute, sym_is_indirect): Likewise.
826 (translate_from_native_sym_flags): Rewrite for clarity. Rearrange
827 arguments and change caller. Handle weak symbols.
828 (translate_to_native_sym_flags): Likewise.
829 (aout_link_check_ar_symbols): Don't ignore weak symbols. Pull
830 object in from archive if a weak defintion is found for an
831 existing undefined symbol.
832 (aout_link_add_symbols): Put all cases in switch. Set flags of an
833 undefined symbol to 0. Handle weak symbols.
834 (aout_link_write_symbols): Handle weak symbols.
835 (aout_link_write_other_symbol): Likewise.
836 (aout_link_input_section_std): Likewise.
837 (aout_link_input_section_ext): Likewise.
838 * sunos.c (sunos_write_dynamic_symbol): Likewise.
839
840 Fri Jun 10 13:25:13 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
841
842 * aoutx.h (NAME(aout,canonicalize_reloc)): Handle .bss section.
843 (NAME(aout,get_reloc_upper_bound)): Likewise.
844
845 * coff-i960.c (coff_i960_reloc_type_lookup): Add BFD_RELOC_CTOR.
846 * linker.c (_bfd_generic_link_write_global_symbol): Don't assume
847 the section of a common symbol is not NULL.
848
849 Wed Jun 8 23:15:53 1994 Stu Grossman (grossman@cygnus.com)
850
851 * nlmcode.h (nlm_object_p): Set EXEC_P and start address for GDB.
852
853 Wed Jun 8 23:57:34 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
854
855 * aoutx.h (aout_get_external_symbols): Don't try to read the
856 strings if there are no symbols.
857 (aout_link_write_other_symbol): Use the output section when
858 working out the type.
859
860 Tue Jun 7 13:25:08 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
861
862 * elfcode.h (assign_section_numbers): Put shstrtab, symtab and
863 strtab sections at end of file. Avoids bug in some versions of
864 SVR4 strip. From Eric Youngdale <eric@tantalus.nrl.navy.mil>.
865
866 * coffcode.h (styp_to_sec_flags): If COFF_PAGE_SIZE is defined,
867 set SEC_DEBUGGING for STYP_INFO sections.
868 (coff_compute_section_file_positions): If COFF_PAGE_SIZE is
869 defined, and D_PAGED is set, set the file position equal to the
870 section VMA modulo COFF_PAGE_SIZE.
871 * coffgen.c (coff_real_object_p): If F_EXEC is set, set D_PAGED.
872 * coff-i386.c: Set D_PAGED in BFD target.
873 (COFF_PAGE_SIZE): Define.
874 * coff-m68k.c, coff-sparc.c: Likewise.
875
876 Mon Jun 6 10:57:28 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
877
878 * elfcode.h (bfd_section_from_shdr): Don't turn a reloc section
879 into a BFD section just because SHF_ALLOC is set; require that it
880 not use the normal symbol table.
881 (elf_section_from_bfd_section): Corresponding change.
882
883 Better indirect and warning symbol handling inspired by Stuart
884 Quick <stuck@cs.man.ac.uk>.
885 * linker.c (enum link_action): Add REF, MIND, CWARN, REFC.
886 (link_action): Change UNDEF_ROW/def and UNDEFW_ROW/def from NOACT
887 to REF. Change UNDEF_ROW/indr and UNDEFW_ROW/indr from CYCLE to
888 REFC. Change DEF_ROW/indr and COMMON_ROW/indr from CYCLE to MDEF.
889 Change DEFW_ROW/indr from CYCLE to NOACT. Change INDR_ROW/indr
890 from MDEF to MIND. Change INDR_ROW/warn from WARNC to CYCLE.
891 Change WARN_ROW/def and WARN_ROW/indr from MWARN to CWARN. Change
892 WARN_ROW/com from MWARN to WARN. Change WARN_ROW/warn from NOACT
893 to CYCLE. Change SET_ROW/warn from WARNC to CYCLE>
894 (_bfd_generic_link_add_one_symbol): Handle REF, MIND, CWARN and
895 REFC. If a new indirect symbol has been referenced, push the
896 reference down to the symbol it points to. FIx handling of WARN.
897 * aoutx.h (translate_from_native_sym_flags): If N_WARNING, don't
898 clobber e_type of next symbol.
899 (translate_to_native_sym_flags): Likewise.
900 (aout_link_write_symbols): Loop on bfd_link_hash_warning as well
901 as bfd_link_hash_indirect.
902
903 * libaout.h (struct aout_link_hash_entry): New field written.
904 * aoutx.h (NAME(aout,link_hash_newfunc)): Initialize written.
905 (aout_link_write_symbols): Use written, not root.written.
906 (aout_link_write_other_symbol): Likewise.
907 * sunos.c (sunos_scan_dynamic_symbol): Likewise.
908 * libecoff.h (struct ecoff_link_hash_entry): New field written.
909 * ecoff.c (ecoff_link_hash_newfunc): Initialize written.
910 (ecoff_link_write_external): use written, not root.written.
911 * genlink.h (struct generic_link_hash_entry): New field written.
912 * linker.c (_bfd_link_hash_newfunc): Don't initialize written.
913 (generic_link_hash_newfunc): Initialize written.
914 (_bfd_generic_link_output_symbols): Use written, not root.written.
915 (_bfd_generic_link_write_global_symbol): Likewise.
916 (_bfd_generic_reloc_link_order): Likewise.
917
918 * libecoff.h (ecoff_data_type): Add linker field.
919 * ecoff.c (ecoff_write_object_contents): Check new tdata linker
920 field, rather than outsymbols being non-NULL, to decide whether to
921 output the symbols and relocs.
922 (ecoff_bfd_final_link): Set new tdata linker field to true.
923
924 * ecoff.c (ecoff_bfd_copy_private_bfd_data): Don't try to copy
925 data to a non-ECOFF file.
926
927 * libbfd-in.h: Add warning that libbfd.h is a generated file.
928 * libbfd.h: Rebuilt.
929
930 Sun Jun 5 15:02:30 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
931
932 Changes to support ELF strip and objcopy on dynamically linked
933 files.
934 * elfcode.h (elf_fake_sections): Add prototype.
935 (bfd_section_from_shdr): Make a BFD section from an SHT_HASH
936 section, and from an SHT_DYNSYM section, and from the dynamic
937 string table section.
938 (elf_object_p): Set D_PAGED if there is a program header.
939 (elf_make_sections): Remove.
940 (fix_up_strtabs): Remove.
941 (elf_fake_sections): Rewrite. Now sets sh_entsize.
942 (assign_section_numbers): Rewrite. Now sets sh_link and sh_info
943 for all sections.
944 (elf_compute_section_file_positions): Don't call obsolete
945 functions elf_make_sections or fix_up_strtabs.
946 (swap_out_syms): Set sh_addralign to FILE_ALIGN rather than 4.
947 (NAME(bfd_elf,write_object_contents)): Permit writing DYNAMIC
948 objects.
949 (elf_section_from_bfd_section): Treat SHT_DYNSYM like other normal
950 sections. If an SHT_REL or SHT_RELA section is allocated or uses
951 an unusual symbol table, permit a BFD section to map to it.
952 Permit most SHT_STRTAB sections to have a BFD section mapped to
953 them.
954 (elf_bfd_final_link): Don't set sh_link, sh_info or sh_entsize
955 fields of dynamic sections here; do it in assign_section_numbers.
956 * elf32-target.h, elf64-target.h: Add D_PAGED to permitted object
957 flags.
958
959 * elf.c (_bfd_elf_make_section_from_shdr): Only set SEC_DATA if
960 SEC_LOAD is set, rather than checking SEC_ALLOC.
961
962 * libbfd-in.h (bfd_realloc): Change last arg to "size_t size".
963
964 Fri Jun 3 10:58:02 1994 Jeff Law (law@snake.cs.utah.edu)
965
966 * som.c (som_write_object_contents): Don't compute the file header's
967 checksum here.
968 (som_write_headers): Instead do it here.
969
970 * libbfd.h (bfd_realloc): Change last arg to "size_t size".
971
972 Thu Jun 2 17:39:22 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
973
974 * hosts/sun3.h: Include <stdlib.h>. Don't declare free, exit or
975 getenv.
976
977 Add linker support for SunOS shared libraries.
978 * sunos.c: Include bfdlink.h. Add many new functions and
979 definitions for SunOS shared library support.
980 * bfd-in.h (bfd_sunos_record_link_assignment): Declare.
981 (bfd_sunos_size_dynamic_sections): Declare.
982 * bfd-in2.h: Rebuilt.
983 * aoutx.h (struct aout_link_hash_entry): Move to libaout.h.
984 (struct aout_link_hash_table): Likewise.
985 (aout_link_hash_lookup, aout_link_hash_traverse): Likewise.
986 (aout_hash_table): Likewise.
987 (NAME(aout,link_hash_newfunc)): Rename from aout_link_hash_newfunc
988 and make externally visible.
989 (NAME(aout,link_hash_table_init)): New function.
990 (NAME(aout,link_hash_table_create)): Call
991 NAME(aout,link_hash_table_init), not _bfd_link_hash_table_init.
992 (aout_link_add_symbols): Don't fail if no symbols. If it exists,
993 call add_dynamic_symbols backend entry point for dynamic objects.
994 Use add_one_symbol backend entry point if it exists.
995 (NAME(aout,final_link)): Call finish_dynamic_link backend entry
996 point, if it exists.
997 (aout_link_input_bfd): For a dynamic object, call
998 link_dynamic_object backend entry point, if it exists.
999 (aout_link_write_other_symbol): Call write_dynamic_symbol backend
1000 entry point, if it exists.
1001 (aout_link_input_section): Don't read the relocs if they have
1002 already been read.
1003 (aout_link_input_section_std): When doing a final link, for a
1004 reloc against an external symbol, call check_dynamic_reloc backend
1005 entry point, if it exists.
1006 (aout_link_input_section_ext): Likewise.
1007 * libaout.h: Protect against multiple inclusion. Include
1008 bfdlink.h.
1009 (struct aout_link_hash_entry): Move in from aoutx.h.
1010 (struct aout_link_hash_table): Likewise.
1011 (aout_link_hash_lookup, aout_link_hash_traverse): Likewise.
1012 (aout_hash_table): Likewise.
1013 (struct aout_backend_data): Add fields add_dynamic_symbols,
1014 add_one_symbol, link_dynamic_object, write_dynamic_symbol,
1015 check_dynamic_reloc, and finish_dynamic_link.
1016 (struct aout_section_data_struct): Define new structure.
1017 (aout_section_data): Define new accessor macro.
1018 (NAME(aout,link_hash_newfunc)): Declare.
1019 (NAME(aout,link_hash_table_init)): Declare.
1020 * aoutf1.h (sunos4_aout_backend): Initialize new aout_backend_data
1021 fields.
1022 * aout-target.h (MY(backend_data)): Likewise.
1023 * i386aout.c (MY(backend_data)): Likewise.
1024 * i386mach3.c (MY(backend_data)): Likewise.
1025 * mipsbsd.c (MY(backend_data)): Likewise.
1026 * sparclynx.c (sparclynx_aout_backend): Likewise.
1027
1028 * aoutx.h (NAME(aout,slurp_symbol_table)): Don't zero out cached
1029 until we know it is non-NULL.
1030 (aout_link_write_symbols): Don't skip a warning symbol even if it
1031 has already been written out. If skipping an indirect symbol,
1032 skip the next symbol as well.
1033
1034 Wed Jun 1 14:37:50 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1035
1036 * hosts/sun3.h: Don't declare qsort, malloc or realloc.
1037
1038 Thu May 26 13:56:03 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
1039
1040 * nlmcode.h (nlm_swap_auxiliary_headers_in): Cast bfd_byte pointer
1041 to char pointer to avoid compiler warnings.
1042
1043 * dep-in.sed: Remove spaces before colons.
1044
1045 Merged changes back in from FSF gas release 2.3:
1046
1047 * Makefile.in (stmp-bfd.h): Wrap `if' block around grep
1048 invocation, to avoid a bug in BSD 4.4 make.
1049
1050 From Ralph Campbell:
1051 * mipsbsd.c (mips_fix_jmp_addr): If symbol is undefined, return an
1052 error.
1053 (mips_fix_hi16_s): Ditto.
1054
1055 Fri May 13 21:21:00 1994 DJ Delorie (dj@ctron.com)
1056
1057 * makefile.dos: define a default target, or archives won't work
1058 due to multiple matches.
1059
1060 Wed May 11 22:32:00 1994 DJ Delorie (dj@ctron.com)
1061
1062 * configure.bat: update for latest files
1063 * makefile.dos: update for correct targets and sources
1064 * coff-go32.c: [new] go32's COFF format (i386coff with underscores)
1065 * targets.c: add go32coff target
1066 * makefile.in: add coff-go32.c support
1067
1068 Thu May 26 10:10:21 1994 Jeff Law (law@snake.cs.utah.edu)
1069
1070 * som.c (som_prep_headers): Do not set the system_id here, private
1071 bfd data has not been copied yet.
1072 (som_write_headers): Instead do it here.
1073
1074 Tue May 24 16:17:18 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1075
1076 Make MIPS ELF use new ELF backend linker. No shared library
1077 support yet.
1078 * elf32-mips.c (bfd_mips_elf32_swap_gptab_in): New function.
1079 (bfd_mips_elf32_swap_gptab_out): New function.
1080 (mips_elf_object_p): If last symbol is LOCAL, set elf_bad_symtab.
1081 (mips_elf_final_write_processing): Set sh_info field for .gptab.*
1082 sections.
1083 (mips_elf_fake_sections): Set sh_entsize for .gptab.* sections.
1084 (mips_elf_read_ecoff_info): Read and free external symbols last,
1085 not first, for clarity.
1086 (struct mips_elf_link_hash_entry): Define new structure.
1087 (struct mips_elf_link_hash_table): Define new structure.
1088 (mips_elf_link_hash_lookup): Define new macro.
1089 (mips_elf_link_hash_traverse): Define new macro.
1090 (mips_elf_hash_table): Define new macro.
1091 (mips_elf_link_hash_newfunc): New static function.
1092 (mips_elf_link_hash_table_create): New static function.
1093 (mips_elf_add_symbol_hook): New static function.
1094 (struct extsym_info): Define new structure.
1095 (mips_elf_get_extr, mips_elf_set_index): Remove.
1096 (mips_elf_output_extsym): New static function.
1097 (gptab_compare): New static function.
1098 (mips_elf_final_link): Rewrite to use ELF backend linker, and to
1099 merge gptab information in input files.
1100 (mips_elf_relocate_hi16): New static function.
1101 (mips_elf_relocate_section): New static function.
1102 (bfd_elf32_bfd_link_hash_table_create): Define as macro before
1103 including elf32-target.h.
1104 (elf_backend_relocate_section): Likewise.
1105 (elf_backend_add_symbol_hook): Likewise.
1106 * elf.c (_bfd_elf_link_hash_newfunc): Rename from
1107 elf_link_hash_newfunc and make globally visible. Change caller.
1108 (_bfd_elf_link_hash_table_init): New function, broken out of
1109 _bfd_elf_link_hash_table_create.
1110 (_bfd_elf_link_hash_table_create): Use
1111 _bfd_elf_link_hash_table_init.
1112 * libelf.h (struct elf_obj_tdata): Add new field bad_symtab.
1113 (elf_bad_symtab): Define new accessor macro.
1114 (_bfd_elf_link_hash_newfunc): Declare.
1115 (_bew_elf_link_hash_table_init): Declare.
1116 * elfcode.h (elf_object_p): Call backend object_p hook after
1117 swapping in all the section headers.
1118 (map_program_segments): Correct typo: Internal for External.
1119 (elf_link_add_object_symbols): If elf_bad_symtab is set, read all
1120 the symbols. Skip STB_LOCAL symbols rather than giving an error.
1121 (elf_bfd_final_link): If elf_bad_symtab is set, allocate space for
1122 all symbols, not just locals.
1123 (elf_link_output_extsym): Only skip a symbol not mentioned by a
1124 regular file if it is mentioned by a dynamic object.
1125 (elf_link_input_bfd): If elf_bad_symtab is set, read all the
1126 symbols.
1127
1128 Fri May 20 13:38:23 1994 Jeff Law (law@snake.cs.utah.edu)
1129
1130 * som.c (som_set_reloc_info): Do not set any relocation info
1131 for SOM fixups which are never passed to BFD.
1132
1133 Fri May 20 11:57:05 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1134
1135 * coff-mips.c (mips_relocate_section): Add MIPS_R_JMPADDR overflow
1136 checking.
1137
1138 * elf32-i386.c (elf_i386_size_dynamic_sections): Add DT_DEBUG to
1139 the dynamic linking information for the benefit of the debugger.
1140 From Peter Schauer.
1141 * elf32-sparc.c (elf32_sparc_size_dynamic_sections): Likewise.
1142
1143 * elf.c (_bfd_elf_make_section_from_shdr): New function, based on
1144 code repeated three times in bfd_section_from_shdr in elfcode.h.
1145 * libelf.h (_bfd_elf_make_section_from_shdr): Declare.
1146 * elfcode.h (bfd_section_from_shdr): Use new function
1147 _bfd_elf_make_section_from_shdr to create BFD sections. If a
1148 reloc section does not use the main symbol table, or it is part of
1149 the process image, treat it as a normal section, not relocs.
1150 * elf32-mips.c (mips_elf_section_from_shdr): Use new function
1151 _bfd_elf_make_section_from_shdr.
1152
1153 Thu May 19 11:37:11 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1154
1155 * elf32-target.h, elf64-target.h: Change ar_max_namelen value from
1156 15 to 14 to match SVR4 ar.
1157
1158 Add support for ELF shared libraries. Loosely based on work by
1159 Eric Youngdale <ericy@cais.com>.
1160 * libelf.h (struct elf_backend_data): Add new fields for dynamic
1161 linking: elf_backend_create_dynamic_sections,
1162 elf_backend_adjust_dynamic_symbol,
1163 elf_backend_size_dynamic_sections,
1164 elf_backend_finish_dynamic_symbol,
1165 elf_backend_finish_dynamic_sections.
1166 (struct elf_link_hash_entry): Change type of align field to
1167 bfd_size_type. Add fields dynindx, dynstr_index, weakdef,
1168 elf_link_hash_flags.
1169 (struct elf_link_hash_table): Add fields dynobj, dynsymcount,
1170 dynstr, bucketcount.
1171 (bfd_elf32_swap_reloc_in, bfd_elf32_swap_reloc_out): Declare.
1172 (bfd_elf32_swap_reloca_in, bfd_elf32_swap_reloca_out): Declare.
1173 (bfd_elf32_swap_dyn_in, bfd_elf32_swap_dyn_out): Declare.
1174 (bfd_elf32_add_dynamic_entry): Declare.
1175 (bfd_elf64_swap_reloc_in, bfd_elf64_swap_reloc_out): Declare.
1176 (bfd_elf64_swap_reloca_in, bfd_elf64_swap_reloca_out): Declare.
1177 (bfd_elf64_swap_dyn_in, bfd_elf64_swap_dyn_out): Declare.
1178 (bfd_elf64_add_dynamic_entry): Declare.
1179 * elfcode.h (Elf_External_Dyn): Define.
1180 (elf_swap_reloc_in): Define as macro using NAME. Make externally
1181 visible.
1182 (elf_swap_reloc_out): Likewise.
1183 (elf_swap_reloca_in, elf_swap_reloca_out): Likewise.
1184 (elf_swap_dyn_in, elf_swap_dyn_out): Define as macro using NAME
1185 and as new externally visible function.
1186 (elf_fake_sections): Set section type of dynamic sections based on
1187 section names.
1188 (elf_write_phdrs): Remove.
1189 (assign_file_position_for_section): Add new align argument.
1190 Change all callers.
1191 (get_program_header_size): New static function.
1192 (struct seg_info): Remove.
1193 (map_program_segments): Completely rewrite.
1194 (assign_file_positions_except_relocs): Completely rewrite.
1195 (assign_file_positions_for_relocs): Don't set a file position for
1196 sections which already have one. Don't bother to align the file
1197 position here.
1198 (section_from_elf_index): Handle SHT_HASH and SHT_DYNAMIC
1199 section types.
1200 (elf_section_from_bfd_section): Likewise.
1201 (elf_slurp_symbol_table): If section_from_elf_index fails, just
1202 use bfd_abs_section rather than returning an error.
1203 (elf_sizeof_headers): Make useful.
1204 (elf_link_record_dynamic_symbol): New static function.
1205 (elf_link_add_object_symbols): Handle dynamic objects.
1206 (elf_link_create_dynamic_sections): New static function.
1207 (elf_add_dynamic_entry): Define as macro using NAME and as new
1208 externally visible function.
1209 (NAME(bfd_elf,record_link_assignment)): New function.
1210 (elf_buckets): New static variable.
1211 (NAME(bfd_elf,size_dynamic_sections)): New function.
1212 (struct elf_final_link_info): Add dynsym_sec and hash_sec fields.
1213 (elf_bfd_final_link): Handle dynamic linking. Create a section
1214 symbol for all ELF sections, not all BFD sections. Store section
1215 symbol index in target_index field, not index field. Traverse
1216 over global symbols even if stripping.
1217 (elf_link_output_extsym): Output dynamic symbols. Mark symbols
1218 defined by dynamic objects as undefined.
1219 (elf_link_input_bfd): Ignore dynamic objects. Use target_index
1220 field for section relocs, and make sure it is set.
1221 (elf_reloc_link_order): Use target_index field for section relocs,
1222 and make sure it is set.
1223 * elf.c (elf_link_hash_newfunc): Initialize dynindx, dynstr_index,
1224 weakdef and elf_link_hash_flags fields.
1225 (_bfd_elf_link_hash_table_create): Initialize dynobj, dynsymcount,
1226 dynstr and bucketcount fields.
1227 * elf32-target.h: Initialize new dynamic linking fields.
1228 * elf64-target.h: Likewise.
1229 * elf32-i386.c: New functions for dynamic linking support.
1230 * elf32-sparc.c: Likewise.
1231 * bfd-in.h (bfd_elf32_record_link_assignment): Declare.
1232 (bfd_elf64_record_link_assignment): Declare.
1233 (bfd_elf32_size_dynamic_sections): Declare.
1234 (bfd_elf64_size_dynamic_sections): Declare.
1235 * bfd-in2.h: Rebuilt.
1236
1237 Wed May 18 08:29:04 1994 Ian Lance Taylor (ian@cygnus.com)
1238
1239 * som.c: Don't include <sys/dir.h> or <sys/user.h>.
1240 (som_reloc_queue_find): Call memcmp instead of bcmp.
1241 (som_bfd_reloc_type_lookup): Change first argument to bfd *.
1242 (compare_syms): Change types of arguments to const void *.
1243 (bfd_section_from_som_symbol): Removed unused local found.
1244 (som_write_armap): Add elength, map, orl_count and int arguments.
1245 (som_write_armap): Use %ld and cast to long for getuid result.
1246
1247 Wed May 18 09:09:32 1994 Jeff Law (law@snake.cs.utah.edu)
1248
1249 * elf32-hppa.h (R_HPPA_ABS_CALL): Define.
1250 * elf32-hppa.c (hppa_elf_gen_reloc_type): Handle absolute calls.
1251
1252 * som.h (R_HPPA_ABS_CALL): Define.
1253 * som.c (hppa_som_gen_reloc_type): Delete complex relocation types.
1254
1255 Tue May 17 19:33:12 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
1256
1257 * coff-i960.c (icoff_little_vec, icoff_big_vec): Indicate leading
1258 underscore, for compatibility with Intel tool chain (gnu960v2).
1259
1260 Mon May 16 10:09:22 1994 Jeff Law (law@snake.cs.utah.edu)
1261
1262 * bfd-in2.h: Rebuilt.
1263
1264 * elf32-hppa.c: Change .hppa_linker_stubs to .PARISC.stubs,
1265 likewise for other PA specific sections.
1266 (hppa_elf_relocate_unwind_table): Delete unused
1267 function.
1268 (elf_hppa_howto_table): Completely new table based on 94-02-02
1269 draft PA ELF spec. Change relocation tags appropriately
1270 throughout elf32-hppa.c
1271 (hppa_elf_gen_reloc_type): Rewrite and simplify based on 94-02-02
1272 spec.
1273 (hppa_elf_reloc): Likewise.
1274 (hppa_look_for_stubs_in_section): Likewise
1275 (ELF_MACHINE_CODE): Change to EM_PARISC.
1276 * elf32-hppa.h: Include "elf/hppa.h". Change relocation tags
1277 appropriately throughout elf32-hppa.h.
1278 (elf32_hppa_reloc_type): New table based on 94-02-02 draft PA ELF
1279 spec.
1280 (R_HPPA_ABS_CALL, R_HPPA_COMPLEX*, R_HPPA_UNWIND): Delete definitions.
1281 * elfcode.h (prep_headers): Use EM_PARISC instead of EM_HPPA.
1282 * reloc.c (bfd_reloc_code_real): Delete unused HPPA relocations.
1283 * som.h (R_HPPA_ABS_CALL, R_HPPA_COMPLEX): Delete definitions.
1284
1285 * libhppa.h (hppa_field_adjust): Avoid adding constant_value into
1286 the final value twice for LR and RR field selectors.
1287
1288 Sat May 14 09:09:19 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
1289
1290 * aoutx.h (add_to_stringtab): Use BFD_ASSERT not assert. This
1291 avoids __eprintf troubles.
1292
1293 Fri May 13 10:51:21 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1294
1295 * bout.c (b_out_bfd_reloc_type_lookup): Handle BFD_RELOC_CTOR.
1296
1297 * config/mipsbelf.mt (SELECT_VECS): Add ecoff_big_vec and
1298 ecoff_little_vec since Irix 5 supports ECOFF executables.
1299
1300 Wed May 11 00:31:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1301
1302 * ecoff.c (ecoff_find_nearest_line): Handle fdr.adr != pdr.adr
1303 correctly.
1304
1305 * Makefile.in (stmp-bfd.h): Use || instead of ; to force SunOS
1306 make to invoke the shell.
1307
1308 Tue May 10 14:23:43 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1309
1310 * section.c (SEC_COFF_SHARED_LIBRARY): Renamed from
1311 SEC_SHARED_LIBRARY for clarity. Changed all uses.
1312 * bfd-in2.h: Rebuilt.
1313 * coffcode.h (sec_to_styp_flags): If SEC_COFF_SHARED_LIBRARY is
1314 set, set STYP_NOLOAD.
1315 * coffgen.c (coff_section_from_bfd_index): Don't get an assertion
1316 failure because of a bad shared library.
1317
1318 Mon May 9 18:53:40 1994 Bill Cox (bill@rtl.cygnus.com)
1319
1320 * linker.c: Add missing comment terminator.
1321
1322 Mon May 9 11:53:54 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1323
1324 * linker.c (_bfd_generic_link_add_one_symbol): If hashp and *hashp
1325 are not NULL, assume the caller has already looked up the symbol
1326 in the hash table and has stored the entry in *hashp.
1327 (generic_link_add_symbol_list): Set h to NULL before calling
1328 _bfd_generic_link_add_one_symbol.
1329 * ecoff.c (ecoff_link_add_externals): Likewise.
1330
1331 * elfcode.h (assign_file_positions_except_relocs): Don't require
1332 page shared between .data and .bss segments to contain zeroes.
1333
1334 * elfcode.h: Include bfdlink.h. Added several new functions to do
1335 linking.
1336 (ELF_R_TYPE): Define.
1337 (bfd_add_to_strtab): Return unsigned long. Change check for
1338 realloc failure.
1339 (elf_fake_sections): Check return value of bfd_add_to_strtab.
1340 (elf_compute_section_file_positions): Add link_info argument.
1341 Call elf_backend_begin_write_processing hook and prep_headers
1342 here. Only call swap_out_syms if link_info is NULL. Set up
1343 .shstrtab section here. Pass dosyms argument to
1344 assign_file_positions_except_relocs. Set output_has_begun flag.
1345 (assign_file_positions_for_symtab_and_strtabs): Add dosyms
1346 argument, and use it to control setting .symtab and .strtab file
1347 positions.
1348 (assign_file_positions_except_relocs): Add dosyms argument, and
1349 pass it on.
1350 (prep_headers): Check return value of bfd_add_to_strtab.
1351 (swap_out_syms): Likewise. Also, don't set up .shstrtab here.
1352 (NAME(bfd_elf,write_object_contents)): Some calls moved into
1353 elf_compute_section_file_positions.
1354 (elf_set_section_contents): Likewise.
1355 (elf_slurp_symbol_table): SHN_LORESERV corrected to SHN_LORESERVE.
1356 * libelf.h: Include bfdlink.h.
1357 (struct elf_backend_data): Add fields collect,
1358 elf_add_symbol_hook, elf_backend_relocate_section.
1359 (struct bfd_elf_section_data): Add field rel_hashes.
1360 (struct elf_obj_tdata): Remove fields internal_syms and symbols.
1361 Add field sym_hashes.
1362 (obj_symbols, obj_internal_syms): Remove definitions.
1363 (elf_sym_hashes): Define.
1364 (struct elf_link_hash_entry): Define.
1365 (struct elf_link_hash_table): Define.
1366 (elf_link_hash_lookup): Define.
1367 (elf_link_hash_traverse): Define.
1368 (elf_hash_table): Define.
1369 (_bfd_elf_link_hash_table_create): Declare.
1370 (bfd_elf32_bfd_link_add_symbols): Declare.
1371 (bfd_elf32_bfd_final_link): Declare.
1372 (bfd_elf64_bfd_link_add_symbols): Declare.
1373 (bfd_elf64_bfd_final_link): Declare.
1374 * elf.c: Include bfdlink.h.
1375 (elf_link_hash_newfunc): New function.
1376 (_bfd_elf_link_hash_table_create): New function.
1377 * elf32-target.h (elf_backend_relocate_section): If not defined,
1378 define as 0 and use generic linker. Otherwise, use ELF backend
1379 linker.
1380 (elf_backend_collect): If not defined, define as false.
1381 (elf_backend_add_symbol_hook): If not defined, define as 0.
1382 (elf32_bed): Initialize new fields.
1383 * elf64-target.h: Same changes as elf32-target.h.
1384 * elf32-i386.c: Include bfdlink.h.
1385 (elf_i386_relocate_section): New function.
1386 (elf_backend_relocate_section): Define.
1387 * elf32-sparc.c: Include bfdlink.h.
1388 (elf_info_to_howto): Change type of dst from Elf32_Internal_Rela
1389 to Elf_Internal_Rela (they're the same type anyhow).
1390 (elf_sparc_relocate_section): New function.
1391 (elf_backend_relocate_section): Define.
1392 * elf32-mips.c (elf_backend_collect): Define.
1393
1394 * Makefile.in (stmp-bfd.h): Avoid useless make error message in a
1395 different way; touch takes a numeric argument on some systems.
1396
1397 Fri May 6 13:34:14 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1398
1399 * nlmcode.h (nlm_swap_auxiliary_headers_in): Rework custom header
1400 handling for latest suggested format.
1401 (nlm_swap_auxiliary_headers_out): Likewise.
1402 (nlm_compute_section_file_positions): Likewise.
1403
1404 Fri May 6 11:11:50 1994 D. V. Henkel-Wallace (gumby@rtl.cygnus.com)
1405
1406 * config.bfd: handle erricsson config (for OSE).
1407
1408 Thu May 5 15:40:47 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
1409
1410 Patches from Ralph Campbell:
1411 * mipsbsd.c (mips_fix_jmp_addr): New function.
1412 (mips_fix_hi16_s): Use bfd_is_com_section.
1413 (mips_howto_table_ext): Call mips_fix_jmp_addr for MIPS_RELOC_JMP.
1414
1415 Fri May 6 11:48:55 1994 Steve Chamberlain (sac@cygnus.com)
1416
1417 * config/go32.mh: XX support.
1418
1419 From bill
1420 * Makefile.in: Build sysdep.h without causing worrying but
1421 harmless error message.
1422
1423 Wed May 4 11:09:53 1994 Ian Lance Taylor (ian@cygnus.com)
1424
1425 Changed m68k-aout to set flags to 0; m68k-sunos still uses 1.
1426 * aout0.c: New file.
1427 * targets.c (aout0_big_vec): Declare.
1428 (bfd_target_vector): Add aout0_big_vec.
1429 * config.bfd (m68*-*-aout*): Use m68k-0aout, not m68k-aout.
1430 * config/m68k-aout.mt (SELECT_VECS): Removed.
1431 * config/m68k-0aout.mt: New file.
1432 * configure.in (aout0_big_vec): New target vector: use aout0.o,
1433 aout32.o and stab-syms.o.
1434 * Makefile.in: Rebuilt dependencies.
1435 (BFD32_BACKENDS): Add aout0.o.
1436 (CFILES): Add aout0.c.
1437
1438 * libaout.h (struct aout_backend_data): Add field exec_hdr_flags.
1439 * aout-target.h (MY_exec_hdr_flags): If not defined, define as 0.
1440 MY(backend_data): Initialize exec_hdr_flags field.
1441 * aoutf1.h (sunos_32_set_arch_mach): Make static.
1442 (aout32_sunos4_write_object_contents): Set flags from backend
1443 info.
1444 (MY_exec_hdr_flags): If not defined, define as 1.
1445 (sunos4_aout_backend): Initialize exec_hdr_flags field.
1446 * aout-encap.c (encap_write_object_contents): Set flags from
1447 backend info.
1448 (MY_exec_hdr_flags): Define as N_FLAGS_COFF_ENCAPSULATE.
1449 * hp300hpux.c (MY_exec_hdr_flags): Define as 0x2.
1450 (MY(write_object_contents)): Set flags from backend info.
1451 * i386aout.c (MY(backend_data)): Initialize exec_hdr_flags field.
1452 * i386mach3.c (MY(backend_data)): Likewise.
1453 * mipsbsd.c (MY(backend_data)): Likewise.
1454 * sparclynx.c (NAME(aout,sparclynx_write_object_contents)): Set
1455 flags from backend info.
1456 (sparclynx_aout_backend): Initialize exec_hdr_flags field.
1457
1458 Wed May 4 02:56:00 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
1459
1460 * config.bfd (i386-*-gnu*): Treat like i386-*-mach*.
1461 (m68*-apollo-*): Treat all Apollo configs the same, don't handle
1462 BSD specially.
1463
1464 Tue May 3 19:43:21 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1465
1466 * cache.c: Rewrote to work correctly.
1467 * libbfd.h: Rebuilt.
1468 * opncls.c (bfd_cache_init, bfd_open_file): Don't declare.
1469 (bfd_fdopenr): Check return value of bfd_cache_init.
1470
1471 Fri Apr 29 15:08:23 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1472
1473 * cf-m68klynx.c (CALC_ADDEND): Check for PC relative relocs by
1474 enumerating them, since the reloc type can not serve as an index
1475 into the m68k COFF howto_table.
1476
1477 Fri Apr 29 09:42:39 1994 Steve Chamberlain (sac@cygnus.com)
1478
1479 * config.bfd (*-go32): Changed to coff.
1480 * coff-h8300.c (JMPL1): Get HOWTO right for 24bit branches.
1481 * srec.c (srec_write_symbols): Write out the correct number of
1482 symbols and don't stick in extra nulls.
1483
1484 Tue Apr 26 15:07:24 1994 Stan Shebs (shebs@andros.cygnus.com)
1485
1486 * cf-sparclynx.c (LYNXOS, COFF_LONG_FILENAMES): Define.
1487 * coff-sparc.c (BADMAG): Recognize LYNXCOFFMAGIC.
1488 (COFF_SPARC): Define.
1489 * coffcode.h (coff_new_section_hook): If COFF_SPARC, set alignment
1490 power of data and bss sections to 3.
1491 * hosts/lynx.h (__LYNXOS): Define.
1492
1493 Tue Apr 26 15:04:26 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1494
1495 * elf32-hppa.c (hppa_elf_reloc): Adjust the addend of relocations
1496 against section symbols to avoid losing during ld -r.
1497
1498 Tue Apr 26 12:16:41 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1499
1500 * elfcode.h (shstrtab_length_fixed): Remove useless static
1501 variable.
1502 (struct elf_sect_data): Remove unused structure.
1503 (elf_object_p): Free memory if error occurs. Check return value
1504 of bfd_default_set_arch_mach. If elf_get_str_section fails,
1505 preserve error code rather than setting wrong_format.
1506 (null_shdr): Remove static variable.
1507 (assign_section_numbers): Remove shstrtab_length_fixed assignment.
1508 Allocate first section header on BFD obstack rather than using
1509 null_shdr.
1510 (bfd_prpsinfo): Remove unused local variable newsect.
1511
1512 Mon Apr 25 15:31:04 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1513
1514 * elfcode.h (write_relocs): Undo patch of Apr 10; breaks Solaris.
1515
1516 * elfcode.h (bfd_section_from_shdr): Use bfd_make_section_anyway
1517 to create sections. Check return value of recursive calls.
1518 (bfd_section_from_phdr): Check return value of bfd_make_section.
1519 (elf_symbol_from_bfd_symbol): Likewise.
1520 (elf_object_p): Check return value of bfd_section_from_shdr.
1521 (section_from_elf_index): Likewise.
1522 (elf_slurp_symbol_table): Check return value of
1523 section_from_elf_index.
1524 (bfd_prstatus): Return boolean value. Check return value of
1525 bfd_make_section.
1526 (bfd_fpregset): Likewise.
1527 (bfd_prpsinfo): Return boolean value.
1528 (elf_corefile_note): Check return values of bfd_prstatus,
1529 bfd_fpregset, and bfd_prpsinfo.
1530 (elf_core_file_p): Check return value of elf_corefile_note.
1531
1532 Fri Apr 22 11:08:38 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1533
1534 Get rid of the ECOFF .reginfo section hack.
1535 * ecoff.c (ecoff_mkobject_hook): Don't create a .reginfo section.
1536 (ecoff_new_section_hook): Don't handle the .reginfo section.
1537 (ecoff_sizeof_headers): Likewise.
1538 (ecoff_get_section_contents): Likewise.
1539 (ecoff_compute_section_file_positions): Likewise.
1540 (ecoff_compute_reloc_file_positions): Likewise.
1541 (ecoff_set_section_contents): Likewise.
1542 (ecoff_write_object_contents): Likewise.
1543 (ecoff_bfd_final_link): Likewise.
1544 (ecoff_bfd_copy_private_bfd_data): Copy the GP value and the
1545 register masks.
1546 (bfd_ecoff_get_gp_value): New function.
1547 (bfd_ecoff_set_gp_value): New function.
1548 (bfd_ecoff_set_regmasks): New function.
1549 * bfd-in.h (bfd_ecoff_get_gp_value): Declare.
1550 (bfd_ecoff_set_gp_value): Declare.
1551 (bfd_ecoff_set_regmasks): Declare.
1552 * bfd-in2.h: Rebuilt.
1553
1554 Fix ECOFF objcopy to actually copy debugging information.
1555 * ecoff.c (ecoff_bfd_copy_private_bfd_data): New function.
1556 (ecoff_get_extr): Assume that any ECOFF symbol with local clear is
1557 an external symbol, rather than checking the symbol flags. Only
1558 check the flags for non-ECOFF symbols.
1559 * ecofflink.c (bfd_ecoff_debug_externals): Don't crash if the
1560 output_section field of the symbol section is NULL.
1561 * libecoff.h (ecoff_bfd_copy_private_bfd_data): Declare as
1562 function rather than defining as macro.
1563
1564 * ieee.c (ieee_object_p): Set bfd_error_got_wrong_format if
1565 appropriate.
1566
1567 * targets.c (bfd_target_vector): Add bfd_elf32_powerpc_vec.
1568
1569 * aout-adobe.c (aout_adobe_set_arch_mach): Check return value of
1570 bfd_default_set_arch_mach. Accept bfd_arch_m68k as well as
1571 bfd_arch_unknown.
1572 * coffcode.h (coff_set_arch_mach): Check return value of
1573 bfd_default_set_arch_mach.
1574 * elfcode.h (elf_set_arch_mach): Don't check a list of ELF
1575 architectures, just see if the desired architecture matches what
1576 the ELF backend permits.
1577
1578 * coffcode.h (coff_set_arch_mach_hook): Rename SHMAGIC to
1579 SH_ARCH_MAGIC to match change in coff/sh.h.
1580 (coff_set_flags): Likewise.
1581
1582 Follow convention in which each NLM header has an 8 byte stamp
1583 followed by a four byte length.
1584 * libnlm.h (struct nlm_obj_tdata): Rename nlm_cygnus_section_hdr
1585 to nlm_cygnus_ext_header, and change type to
1586 Nlm_Internal_Cygnus_Ext_Header.
1587 (nlm_cygnus_ext_header): Rename from nlm_cygnus_section_header.
1588 * nlmcode.h (nlm_swap_auxiliary_headers_in): Use CyGnUsEx instead
1589 of CyGnUsSeCs. Rename from cygnus_section to cygnus_ext. Require
1590 length word to be 8.
1591 (nlm_swap_auxiliary_headers_out): Rename from cygnus_section to
1592 cygnus_ext. Set length word to 8.
1593 (nlm_compute_section_file_positions): Rename from cygnus_section
1594 to cygnus_ext.
1595
1596 Thu Apr 21 22:54:22 1994 Stu Grossman (grossman at cygnus.com)
1597
1598 * nlmcode.h (nlm_swap_auxiliary_headers_in): Keep section table
1599 (from CyGnUsSeCs) in more permanent memory to keep section names
1600 from getting trashed.
1601
1602 Thu Apr 21 09:29:37 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1603
1604 * libelf.h (elf_obj_tdata): Add members for dynamic symbol table
1605 handling.
1606 * elfcode.h (bfd_section_from_shdr): Handle dynamic symbol table.
1607 * elfcode.h (elf_slurp_symbol_table): Take additional parameter
1608 to select static or dynamic symbol table and return number of
1609 symbols slurped or -1 on error.
1610 * elfcode.h (elf_get_symtab): Set bfd symcount from
1611 elf_slurp_symbol_table result.
1612 * elfcode.h (elf_get_dynamic_symtab_upper_bound,
1613 elf_canonicalize_dynamic_symtab): New functions to handle dynamic
1614 symbol table.
1615 * elf32-target.h, elf64-target.h (BFD_JUMP_TABLE_DYNAMIC):
1616 Change to handle dynamic symbol table, provide default definitions
1617 for dynamic relocs.
1618 * aoutx.h (howto_table_std, NAME(aout,swap_std_reloc_out),
1619 NAME(aout,swap_std_reloc_in), aout_link_input_section_std,
1620 aout_link_reloc_link_order): Handle r_jmptable and r_relative
1621 relocations.
1622
1623 Thu Apr 21 11:58:19 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1624
1625 Clean up uses of _bfd_dummy_target (from Peter Schauer).
1626 * libbfd.c (_bfd_dummy_target): Set bfd_error_wrong_format.
1627 * nlm-target.h (nlm_core_file_p): Define as _bfd_dummy_target, not
1628 NULL.
1629 * srec.c (srec_vec): Use _bfd_dummy_target, not NULL, in
1630 _bfd_check_format.
1631 (symbolsrec_vec): Likewise.
1632 * tekhex.c (tekhex_vec): Likewise.
1633
1634 * libnlm.h (struct nlm_obj_tdata): Add nlm_cygnus_section_hdr
1635 field.
1636 (nlm_cygnus_section_header): New accessor macro.
1637 * nlmcode.h (nlm_object_p): Free new tdata structure if failure.
1638 Add fixed sections before swapping in auxiliary headers. After
1639 adding sections, treat errors as real, not as wrong format.
1640 (nlm_swap_auxiliary_headers_in): Swap in the sections header; add
1641 sections to the BFD for each section it describes.
1642 (nlm_swap_auxiliary_headers_out): Swap out the sections header.
1643 (nlm_compute_section_file_positions): Account for the size of the
1644 sections header.
1645
1646 Wed Apr 20 16:45:51 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
1647
1648 * coff-sparc.c (sparccoff_vec): Change minimum alignment power to
1649 2, so that stab sections can be multiples of 4 bytes only.
1650
1651 * hosts/i386aix.h: Changes to avoid prototypes conflicts with the
1652 ones defined in stdlib.h. (From Minh Tran-Le.)
1653
1654 Wed Apr 20 14:15:21 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1655
1656 * nlm32-ppc.c: Complete rewrite for new version of PowerPC
1657 NetWare. Old code still present, but ifdeffed out.
1658
1659 * nlmcode.h (nlm_swap_auxiliary_headers_in): Don't assume a
1660 particular format for the customer header. Allocate a block of
1661 memory and read it into that.
1662 (nlm_swap_auxiliary_headers_out): Write out the block of memory.
1663 (nlm_compute_section_file_positions): Include length of customer
1664 header when computing its size.
1665
1666 Mon Apr 18 14:27:17 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1667
1668 * som.c (som_prep_headers): Get the space's number from the
1669 backend private section data rather than target_index.
1670 (bfd_som_set_section_attributes): Store the space's number
1671 in the backend private section data rather than target_index.
1672
1673 * som.h (som_copyable_section_data_struct): Add space_number.
1674
1675 Fri Apr 15 12:22:07 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1676
1677 * coff-a29k.c (reloc_processing): Always set the address of a
1678 R_IHCONST reloc to that of the immediately preceding R_IHIHALF.
1679 gas does this anyhow, but some other assemblers seem to leave
1680 garbage in the R_IHCONST address field.
1681
1682 * bfd/archive.c: Consistently use ARFMAG; from
1683 schwab@issan.informatik.uni-dortmund.de (Andreas Schwab).
1684 (_bfd_write_archive_contents): Use ARFMAG rather than '`' and
1685 '\012'.
1686 (bsd_write_armap): Likewise.
1687 (coff_write_armap): Likewise.
1688
1689 * coff-mips.c (mips_relocate_section): When relaxing, adjust local
1690 relocs against the .text section as required.
1691 * ecofflink.c (bfd_ecoff_debug_accumulate): When relaxing, adjust
1692 PDR addresses as required.
1693
1694 * ecoff.c (ecoff_emit_aggregate): Take fdr argument. Map fdr
1695 index through rfd map if it exists. Check for a couple of cases
1696 which gdb handles specially. Change all callers.
1697 (ecoff_type_to_string): Take fdr argument rather than aux_ptr and
1698 bigendian argument. Change all callers.
1699 (ecoff_print_symbol): Handle stStruct, stUnion and stEnum.
1700
1701 Thu Apr 14 13:05:10 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1702
1703 * coff-mips.c (mips_howto_table): Add dummy entries to account for
1704 numbering changes in include/coff/mips.h. Add entries for
1705 MIPS_R_RELHI and MIPS_R_RELLO.
1706 (mips_ecoff_swap_reloc_in): Handle an extra bit for the reloc type
1707 when little endian. Treat internal MIPS_R_RELLO or MIPS_R_RELHI
1708 relocs like MIPS_R_SWITCH, and convert r_offset from 24 to 32
1709 bits.
1710 (mips_ecoff_swap_reloc_out): Likewise.
1711 (mips_adjust_reloc_in): Handle internal MIPS_R_RELLO or
1712 MIPS_R_RELHI relocs like MIPS_R_SWITCH.
1713 (mips_adjust_reloc_out): Likewise.
1714 (mips_relhi_addr, mips_relhi_addend): New static variables.
1715 (mips_relhi_reloc, mips_rello_reloc): New functions.
1716 (mips_bfd_reloc_type_lookup): Turn BFD_RELOC_PCREL_HI16_S into
1717 MIPS_R_RELHI and turn BFD_RELOC_PCREL_LO16 into MIPS_R_RELLO.
1718 (mips_relocate_hi): Rename from mips_relocate_refhi, and add pcrel
1719 argument. Changed all callers.
1720 (mips_relocate_section): Rename got_reflo to got_lo and
1721 reflo_int_rel to lo_int_rel. Handle MIPS_R_RELLO and MIPS_R_RELHI
1722 relocs.
1723 (mips_relax_section): Adjust MIPS_R_RELHI/MIPS_R_RELLO pairs when
1724 expanding a PC relative call.
1725
1726 * reloc.c (bfd_reloc_code_real_type): Add BFD_RELOC_PCREL_HI16_S
1727 and BFD_RELOC_PCREL_LO16.
1728 * bfd-in2.h: Rebuilt.
1729
1730 Wed Apr 13 11:50:07 1994 Stan Shebs (shebs@andros.cygnus.com)
1731
1732 * coff-sparc.c (sparccoff_vec): Set minimum alignment power to 3.
1733
1734 Tue Apr 12 13:36:20 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1735
1736 * som.c (som_write_fixups): Always emit at least
1737 one relocation for any non-bss section.
1738
1739 Mon Apr 11 14:41:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1740
1741 * elfcode.h (assign_file_positions_except_relocs): Don't require
1742 the file alignment to correspond to the page size when linking
1743 with -N.
1744
1745 Sun Apr 10 01:02:24 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1746
1747 * elfcode.h (write_relocs): For rela relocations, adjust the
1748 addend for relocations involving section symbols to account
1749 for the lossage of 1:1 mapping from input section symbols to
1750 output section symbols.
1751
1752 Fri Apr 8 12:22:02 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1753
1754 * aoutx.h (NAME(aout,make_sections)): New function.
1755 (NAME(aout,some_aout_object_p)): Call NAME(aout,make_sections)
1756 rather than making sections inline.
1757 (NAME(aout,mkobject)): Don't make any sections.
1758 (NAME(aout,adjust_sizes_and_vmas)): Call NAME(aout,make_sections).
1759 (NAME(aout,final_link)): Don't dereference obj_textsec (abfd) or
1760 obj_datasec (abfd) if they are NULL.
1761 * libaout.h (NAME(aout,make_sections)): Declare.
1762 * bout.c (b_out_mkobject): Don't make any sections.
1763 (b_out_write_object_contents): Call aout_32_make_sections.
1764 (b_out_set_section_contents): Likewise.
1765 * i386os9k.c (os9k_mkobject): Don't make any sections.
1766 (os9k_write_object_contents): Call aout_32_make_sections.
1767 (os9k_set_section_contents): Likewise.
1768
1769 * aoutx.h (NAME(aout,new_section_hook)): Don't set N_EXT in target
1770 index.
1771
1772 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1773
1774 * config.bfd, configure.host: Add mips-*-sysv4* support.
1775
1776 Thu Apr 7 14:23:05 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1777
1778 * coff-mips.c (mips_howto_table): Add entry for MIPS_R_SWITCH.
1779 (mips_ecoff_swap_reloc_in): For MIPS_R_SWTICH, copy r_symndx into
1780 r_offset and set r_symndx to RELOC_SECTION_TEXT.
1781 (mips_ecoff_swap_reloc_out): For MIPS_R_SWITCH, get the r_symndx
1782 value from the r_offset field.
1783 (mips_adjust_reloc_in): Maximum r_type value is now MIPS_R_SWITCH.
1784 For MIPS_R_SWITCH, copy the r_offset field into the addend field.
1785 (mips_adjust_reloc_out): For MIPS_R_SWITCH, copy the addend field
1786 into the r_offset field.
1787 (mips_switch_reloc): New function.
1788 (mips_bfd_reloc_type_lookup): Translate BFD_RELOC_GPREL32 into
1789 MIPS_R_SWITCH.
1790 (mips_relocate_section): Handle MIPS_R_SWITCH.
1791 (mips_relax_section): Adjust MIPS_R_SWITCH offset if necessary.
1792
1793 Thu Apr 7 11:10:51 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1794
1795 * elfcode.h (elf_set_section_contents): Support calling the backend
1796 function elf_backend_begin_write_processing when just beginning to
1797 write an object file.
1798
1799 * libelf.h (elf_backend_begin_write_processing): Declare.
1800
1801 * elf{32,64}-target.h (elf_backend_begin_write_processing): Provide
1802 a default definition.
1803 (elf{32,64}_bed): Add elf_backend_begin_write_processing.
1804
1805 * elf32-hppa.h (elf_hppa_tc_symbol): Delete extern declaration.
1806 (elf_hppa_tc_make_sections): Likewise.
1807
1808 * elf32-hppa.c (symext_chain_built): Delete.
1809 (symext_chain_size): Renamed from symextn_contents_real_size.
1810 (elf32_hppa_backend_{begin,final}_write_processing): New functions.
1811 (add_entry_to_symext_chain): New function.
1812 (hppa_elf_set_section_contents): Ignore writes to the symbol extension
1813 section until it's been rebuilt internally.
1814 (hppa_elf_get_section_contents): Symbol extension section is no
1815 longer special.
1816 (elf_backend_{begin,final}_write_processing): Define.
1817 (elf_hppa_tc_make_sections): Simplify now that much code has
1818 migrated into elf32_hppa_backend_{being,final}_write_processing.
1819
1820 Wed Apr 6 17:24:14 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1821
1822 Add new target vectors to read the dynamic symbols and dynamic
1823 relocs. Change a.out to use these rather than reading the dynamic
1824 symbols and relocs along with the normal symbols and relocs.
1825 * targets.c (bfd_target): Add fields
1826 _bfd_get_dynamic_symtab_upper_bound,
1827 _bfd_canonicalize_dynamic_symtab,
1828 _bfd_get_dynamic_reloc_upper_bound,
1829 _bfd_canonicalize_dynamic_reloc.
1830 (BFD_JUMP_TABLE_DYNAMIC): Define.
1831 * libbfd-in.h (_bfd_nodynamic_get_dynamic_symtab_upper_bound):
1832 Define.
1833 (_bfd_nodynamic_canonicalize_dynamic_symtab): Define.
1834 (_bfd_nodynamic_get_dynamic_reloc_upper_bound): Define.
1835 (_bfd_nodynamic_canonicalize_dynamic_reloc): Define.
1836 * bfd.c (bfd_get_dynamic_symtab_upper_bound): Define.
1837 (bfd_canonicalize_dynamic_symtab): Define.
1838 (bfd_get_dynamic_reloc_upper_bound): Define.
1839 (bfd_canonicalize_dynamic_reloc): Define.
1840 * sunos.c (MY_read_dynamic_symbols): Don't define.
1841 (MY_read_dynamic_relocs): Don't define.
1842 (MY_get_dynamic_symtab_upper_bound): Define.
1843 (MY_canonicalize_dynamic_symtab): Define.
1844 (MY_get_dynamic_reloc_upper_bound): Define.
1845 (MY_canonicalize_dynamic_reloc): Define.
1846 (struct sunos_dynamic_info): Change type of dynsym_count and
1847 dynrel_count to long. Add fields canonical_dynsym and
1848 canonical_dynrel.
1849 (sunos_read_dynamic_info): Check that BFD had DYNAMIC flag set.
1850 Clear info->canonical_dynsym and info->canonical_dynrel.
1851 (MY(read_dynamic_symbols)): Removed.
1852 (MY(read_dynamic_relocs)): Removed.
1853 (sunos_get_dynamic_symtab_upper_bound): New function.
1854 (sunos_canonicalize_dynamic_symtab): New function.
1855 (sunos_get_dynamic_reloc_upper_bound): New function.
1856 (sunos_canonicalize_dynamic_reloc): New function.
1857 * libaout.h: Declare struct reloc_ext_external and
1858 reloc_std_external to avoid prototype problems.
1859 (struct aout_backend_data): Remove fields read_dynamic_symbols and
1860 read_dynamic_relocs.
1861 (NAME(aout,translate_symbol_table)): Declare.
1862 (NAME(aout,swap_ext_reloc_in)): Declare.
1863 (NAME(aout,swap_std_reloc_in)): Declare.
1864 * aoutx.h (NAME(aout,translate_symbol_table)): Renamed from
1865 translate_symbol_table and made non-static. Changed all callers.
1866 (NAME(aout,slurp_symbol_table)): Don't read dynamic symbols.
1867 (NAME(aout,slurp_reloc_table)): Don't read dynamic relocs.
1868 (NAME(aout,get_reloc_upper_bound)): Don't count dynamic relocs.
1869 * aoutf1.h (aout_32_sunos4_write_object_contents): Don't bother to
1870 remove dynamic symbols and relocs. They will no longer be
1871 present.
1872 (MY_read_dynamic_symbols): Don't define.
1873 (MY_read_dynamic_relocs): Don't define.
1874 (sunos4_aout_backend): Don't initialize dynamic entry points.
1875 * aout-target.h (MY_read_dynamic_symbols): Don't define.
1876 (MY_read_dynamic_relocs): Don't define.
1877 (MY(backend_data)): Don't initialize dynamic entry points.
1878 (MY_get_dynamic_symtab_upper_bound): If not defined, define to
1879 _bfd_nodynamic version.
1880 (MY_canonicalize_dynamic_symtab): Likewise.
1881 (MY_get_dynamic_reloc_upper_bound): Likewise.
1882 (MY_canonicalize_dynamic_reloc): Likewise.
1883 * All backends: Added BFD_JUMP_TABLE_DYNAMIC to target vector.
1884 * bfd-in2.h: Rebuilt.
1885 * libbfd.h: Rebuilt.
1886
1887 * cf-m68klynx.c: Include sysdep.h.
1888
1889 * hp300hpux.c: Removed some spaces in uses of NAME to avoid
1890 problems with traditional C compilers.
1891
1892 * targets.c (bfd_target): Rearranged fields in target vector.
1893 Removed _bfd_debug_info_start, _bfd_debug_info_end and
1894 _bfd_debug_info_accumulate, which were never used.
1895 (BFD_JUMP_TABLE_GENERIC, BFD_JUMP_TABLE_COPY): Defined.
1896 (BFD_JUMP_TABLE_CORE, BFD_JUMP_TABLE_ARCHIVE): Defined.
1897 (BFD_JUMP_TABLE_SYMBOLS, BFD_JUMP_TABLE_RELOCS): Defined.
1898 (BFD_JUMP_TABLE_WRITE, BFD_JUMP_TABLE_LINK): Defined.
1899 * All backends: Changed to use the new BFD_JUMP_TABLE_* macros
1900 rather than the single JUMP_TABLE macro. Removed many of the
1901 weird macro definitions needed to support the monolithic
1902 JUMP_TABLE.
1903 * bfd-in.h (JUMP_TABLE): Removed.
1904 * libbfd-in.h: Define a bunch of macros, and declare a few
1905 functions, for use with the new BFD_JUMP_TABLE_* macros.
1906 * libbfd.c (_bfd_dummy_new_section_hook): Removed.
1907 (bfd_false): Set bfd_error_invalid_operation.
1908 (bfd_nullvoidptr): Likewise.
1909 (bfd_n1): New function.
1910 (_bfd_nocore_core_file_matches_executable_p): Renamed from
1911 _bfd_dummy_core_file_matches_executable_p.
1912 (_bfd_nocore_core_file_failing_command): Similar rename. Set
1913 bfd_error_invalid_operation.
1914 (_bfd_nocore_core_file_failing_signal): Likewise.
1915 (_bfd_generic_get_section_contents): Renamed from
1916 bfd_generic_get_section_contents. Changed all callers.
1917 (_bfd_generic_set_section_contents): Similar rename.
1918 * ieee.c: #if 0 out ieee_bfd_debug_info_start,
1919 ieee_bfd_debug_info_end, ieee_bfd_debug_info_accumulate. They
1920 were never called.
1921 * bfd-in2.h: Rebuilt.
1922 * libbfd.h: Rebuilt.
1923
1924 Tue Apr 5 22:10:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1925
1926 * Crude support for examining dynamic libraries.
1927 * som.c (som_object_setup): Set DYNAMIC flag for SHL_MAGIC and
1928 DL_MAGIC objects.
1929 (som_prep_headers): Preserve the system_id for DYNAMIC objects.
1930 Use SHL_MAGIC as the magic number of the DYNAMIC flag is set.
1931 Write exec headers for DYNAMIC objects.
1932 (som_begin_writing): DYNAMIC objects have the same alignment
1933 restrictions as D_PAGED objects.
1934 (bfd_section_from_som_symbol): Treat DYNAMIC objects like EXEC_P
1935 objects.
1936 (object_flags): Add DYNAMIC.
1937
1938 Tue Apr 5 17:48:52 1994 Stan Shebs (shebs@andros.cygnus.com)
1939
1940 * i386lynx.c, sparclynx.c (NAME): Remove embedded whitespace in
1941 macro uses, confuses some non-ANSI compilers.
1942
1943 Tue Apr 5 15:50:01 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1944
1945 * som.c (som_bfd_free_cached_info): Add missing PARAMS decl.
1946 Don't free anything if we don't have a bfd_object.
1947 (som_close_and_cleanup): Call som_bfd_free_cached_info.
1948
1949 Tue Apr 5 11:22:38 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1950
1951 * elf32-mips.c (mips_elf_final_link): Don't remove empty sections.
1952 It turns out not to be required on Irix 5, and it causes problems
1953 if the sections happen to contain symbols.
1954
1955 * elfcode.h (write_shdrs_and_ehdr): Correct bfd_write check.
1956
1957 * aoutx.h (NAME(aout,canonicalize_reloc)): Don't error out if
1958 section->relocation is NULL; malloc might have returned NULL when
1959 given a zero size if there were no relocations.
1960 * bout.c (b_out_canonicalize_reloc): Likewise.
1961 * coffcode.h (coff_canonicalize_reloc): Likewise.
1962 * ecoff.c (ecoff_canonicalize_reloc): Likewise.
1963 * elfcode.h (elf_canonicalize_reloc): Likewise.
1964 * mipsbsd.c (MY(canonicalize_reloc)): Likewise.
1965 * i386lynx.c (NAME(lynx,canonicalize_reloc)): Likewise.
1966 * nlmcode.h (nlm_canonicalize_reloc): Likewise.
1967 * som.c (som_canonicalize_reloc): Likewise.
1968 * hp300hpux.c (MY(slurp_reloc_table)): Likewise. Also, if malloc
1969 returns NULL, don't report an error if we asked for zero bytes.
1970 * i386lynx.c (NAME(lynx,slurp_reloc_table)): If malloc returns
1971 NULL, don't report an error if we asked for zero bytes.
1972 * nlmcode.h (nlm_slurp_reloc_fixups): Likewise.
1973
1974 Mon Apr 4 15:30:49 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1975
1976 * aoutx.h (NAME(aout,bfd_free_cached_info)): Don't free anything
1977 if we don't have a bfd_object.
1978
1979 Made sure that every call to bfd_read, bfd_write, and bfd_seek
1980 checks the return value and handled bfd_error correctly. These
1981 changes are not itemised. Also:
1982 * aoutx.h (emit_strtab): Change return type to boolean, and return
1983 errors.
1984 (NAME(aout,write_syms)): Check emit_strtab return value.
1985 (NAME(aout,final_link)): Likewise.
1986 * coffcode.h (coff_write_relocs): Change return type to boolean,
1987 and return errors.
1988 (coff_write_object_contents): Check coff_write_relocs return
1989 value.
1990 * i386os9k.c (os9k_swap_exec_header_in): Change return type to
1991 boolean.
1992 (os9k_object_p): Check os9k_swap_exec_header_in return value.
1993 * oasys.c (oasys_read_record): Change return type to boolean.
1994 (oasys_slurp_symbol_table: Check oasys_read_record return value.
1995 (oasys_object_p, oasys_slurp_section_data): Likewise.
1996 (oasys_write_record): Change return type to boolean.
1997 (oasys_write_syms): Likewise. Also, check oasys_write_record
1998 return value.
1999 (oasys_write_sections): Check oasys_write_record return value.
2000 (oasys_write_header): Change return type to boolean. Check
2001 oasys_write_record return value.
2002 (oasys_write_end, oasys_write_data): Likewise.
2003 (oasys_write_object_contents): Check return values of
2004 oasys_write_header, oasys_write_syms, oasys_write_data, and
2005 oasys_write_end.
2006 * srec.c (srec_write_record): Change return type to boolean.
2007 (srec_write_header): Likewise. Also, check srec_write_record
2008 return value.
2009 (srec_write_section, srec_write_terminator): Likewise.
2010 (srec_write_symbols): Change return type to boolean.
2011 (internal_srec_write_object_contents): Check return value of
2012 srec_write_symbols, srec_write_header, srec_write_section, and
2013 srec_write_terminator.
2014
2015 * Makefile.in: Rebuilt dependencies.
2016
2017 Mon Apr 4 10:56:45 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2018
2019 * aix386-core.c (aix386_bfd_is_local_label): Correct cast from
2020 asection to asymbol.
2021 * ptrace-core.c (ptrace_unix_bfd_is_local_label): Correct cast from
2022 bfd to asymbol.
2023 * trad-core.c (trad_unix_bfd_is_local_label): Correct cast from
2024 asection to asymbol.
2025
2026 Sun Apr 3 18:27:29 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2027
2028 * som.c (som_slurp_string_table): Use malloc to allocate space
2029 for the cached copy of the native string table.
2030 (som_slurp_symbol_table): Likewise for the native symbol table.
2031 (som_slurp_reloc_table): Likewise for the native and generic
2032 relocation tables.
2033 (som_bfd_free_cached_info): Free the cached native strings,
2034 symbols, and relocations. Also free the canonical cached
2035 relocations.
2036
2037 Fri Apr 1 12:40:58 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2038
2039 * aoutx.h (aout_link_write_symbols): If keep_memory is false, make
2040 sure the symbol name is stored in permanent memory before adding
2041 it to the string table.
2042
2043 * archive.c (_bfd_write_archive_contents): Once we've found an
2044 object, don't bother to look for more when deciding whether to
2045 build a map.
2046 (compute_and_write_armap): After adding the symbols for a BFD,
2047 call bfd_free_cached_info on it.
2048
2049 Add bfd_free_cached_info support to a.out backends.
2050 * aoutx.h (aout_get_external_symbols): Renamed from
2051 aout_link_get_symbols. Read strings even if symbols have been
2052 read. Store string size in obj_aout_string_size.
2053 (NAME(aout,slurp_symbol_table)): Call aout_get_external_symbols to
2054 read the symbols. Allocate the cached symbols with malloc, not
2055 bfd_alloc.
2056 (NAME(aout,slurp_reloc_table)): Allocate the cached relocs with
2057 malloc, not bfd_alloc.
2058 (NAME(aout,bfd_free_cached_info)): New function; free cached
2059 symbols and relocs.
2060 * libaout.h (struct aoutdata): Add external_string_size field.
2061 (obj_aout_external_string_size): New accessor macro.
2062 (NAME(aout,close_and_cleanup)): Don't declare.
2063 (NAME(aout,bfd_free_cached_info)): Declare.
2064 (aout_32_close_and_cleanup): Don't define.
2065 (aout_64_close_and_cleanup): Don't define.
2066 * aout-target.h (MY_bfd_free_cached_info): If not already defined,
2067 define as NAME(aout,free_cached_info).
2068 (MY_close_and_cleanup): If not already defined, define as
2069 MY_bfd_free_cached_info.
2070 * aout-adobe.c (aout_32_close_and_cleanup): Define.
2071 (aout_32_bfd_free_cached_info): Don't define.
2072 * bout.c (aout_32_close_and_cleanup): Define.
2073 (aout_32_bfd_free_cached_info): Don't define.
2074 * hp300hpux.c (MY_bfd_free_cached_info): Define as bfd_true.
2075 (MY_close_and_cleanup): Don't define.
2076 * i386lynx.c (NAME(lynx,slurp_reloc_table)): Allocate the cached
2077 relocs with malloc, not bfd_alloc.
2078 * i386os9k.c (aout_32_close_and_cleanup): Define.
2079 (aout_32_bfd_free_cached_info): Don't define.
2080
2081 Add a new entry point to free memory cached by a BFD.
2082 * targets.c (bfd_target): Add _bfd_free_cached_info field.
2083 * bfd.c (bfd_free_cached_info): Define.
2084 * bfd-in.h (JUMP_TABLE): Add _bfd_free_cached_info.
2085 * bfd-in2.h: Rebuilt.
2086 * All backends: Initialize bfd_free_cached_info entry point to
2087 bfd_true.
2088
2089 * elf32-hppa.c (elf_hppa_reloc_type_lookup): Correct type of
2090 first, unused, argument.
2091 (hppa_elf_is_local_label): Declare instead of
2092 som_bfd_is_local_label.
2093
2094 * coff-a29k.c (a29k_reloc): Add reloc_entry->address to value of
2095 absolute R_IREL reloc.
2096
2097 Thu Mar 31 11:52:15 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2098
2099 Added some support for Irix 4 shared libraries.
2100 * ecoff.c (ecoff_new_section_hook): Set SEC_SHARED_LIBRARY for a
2101 .lib section.
2102 (ecoff_sec_to_styp_flags): Set SEC_SHARED_LIBRARY if
2103 STYP_ECOFF_LIB bit is set.
2104 (ecoff_compute_section_file_positions): Round the contents of a
2105 .lib section up to the next page boundary.
2106 (ecoff_set_section_contents): If we see a .lib section, increment
2107 the vma by one to count the number of shared libraries we have.
2108 (ecoff_write_object_contents): Don't crash if we see a
2109 STYP_ECOFF_LIB section, and don't adjust text_start or data_start
2110 or bss_size either.
2111
2112 * coffcode.h (CALC_ADDEND): Change to fetch original symbol value
2113 from original BFD, rather than using value of current BFD symbol.
2114 Needed for new linker.
2115 * coff-sparc.c (CALC_ADDEND): Likewise.
2116
2117 * ecoff.c (ecoff_write_object_contents): Set the text_start and
2118 data_start entries in the optional header correctly even if a text
2119 or data section starts at location zero.
2120
2121 * reloc.c (bfd_reloc_code_real_type): Added BFD_RELOC_26 (from sef
2122 and raeburn).
2123 * bfd-in2.h: Rebuilt.
2124
2125 * nlm32-i386.c (nlm_i386_read_import): Null terminate the symbol
2126 name.
2127 * nlm32-alpha.c (nlm_alpha_read_import): Likewise.
2128 * nlm32-sparc.c (nlm_sparc_read_import): Likewise.
2129
2130 * coffgen.c (coff_write_symbol): Reindented. Changed to return
2131 boolean, and changed written to unsigned int *. Check error
2132 returns from called functions.
2133 (coff_write_alien_symbol): Likewise.
2134 (coff_write_native_symbol): Likewise.
2135 (coff_write_symbols): Likewise. Reworked checks on whether to
2136 write symbol name to string table for clarity and to avoid core
2137 dumping when given a non COFF symbol.
2138 * libcoff-in.h (coff_write_symbols): Declare as returning boolean.
2139 * libcoff.h: Rebuilt.
2140 * coffcode.h (coff_write_object_contents): Check return value of
2141 coff_write_symbols.
2142
2143 Wed Mar 30 16:25:41 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2144
2145 Changes to let BFD return an error indication from
2146 get_symtab_upper_bound, bfd_canonicalize_symtab,
2147 bfd_get_reloc_upper_bound, and bfd_canonicalize_reloc. They now
2148 return long instead of unsigned int, and use -1 to indicate an
2149 error. Along the way, rename get_symtab_upper_bound to
2150 bfd_get_symtab_upper_bound.
2151 * bfd.c (bfd_get_reloc_upper_bound): Return long, and -1 on
2152 errors.
2153 (bfd_canonicalize_reloc): Likewise.
2154 * syms.c (bfd_get_symtab_upper_bound): Renamed from
2155 get_symtab_upper_bound.
2156 * targets.c (bfd_target): Renamed _get_symtab_upper_bound to
2157 _bfd_get_symtab_upper_bound, and changed it and
2158 _bfd_canonicalize_symtab and _get_reloc_upper_bound and
2159 _bfd_canonicalize_reloc to all return long.
2160 * aoutx.h (NAME(aout,get_symtab)): Return long, and -1 on errors.
2161 (NAME(aout,canonicalize_reloc)): Likewise.
2162 (NAME(aout,get_reloc_upper_bound)): Likewise.
2163 (NAME(aout,get_symtab_upper_bound)): Likewise.
2164 * bout.c (b_out_canonicalize_reloc): Likewise.
2165 (b_out_get_reloc_upper_bound): Likewise.
2166 * coffcode.h (coff_canonicalize_reloc): Likewise.
2167 * coffgen.c (coff_get_symtab_upper_bound): Likewise.
2168 (coff_get_symtab): Likewise.
2169 (coff_get_reloc_upper_bound): Likewise.
2170 * ecoff.c (ecoff_get_symtab_upper_bound): Likewise.
2171 (ecoff_get_symtab): Likewise.
2172 (ecoff_canonicalize_reloc): Likewise.
2173 * elfcode.h (elf_get_symtab_upper_bound): Likewise.
2174 (elf_get_reloc_upper_bound): Likewise.
2175 (elf_canonicalize_reloc): Likewise.
2176 (elf_get_symtab): Likewise.
2177 * hp300hpux.c (MY(get_symtab)): Likewise.
2178 (MY(get_symtab_upper_bound)): Likewise.
2179 (MY(canonicalize_reloc)): Likewise.
2180 * i386lynx.c (NAME(lynx,canonicalize_reloc)): Likewise.
2181 * ieee.c (ieee_slurp_external_symbols): Change return type to
2182 boolean. Check for errors from get_symbol.
2183 (ieee_slurp_symbol_table): Change return type to boolean. Check
2184 for errors from ieee_slurp_external_symbols.
2185 (ieee_get_symtab_upper_bound): Return long, and -1 on errors.
2186 (ieee_get_symtab): Likewise.
2187 (ieee_get_reloc_upper_bound): Likewise.
2188 (ieee_canonicalize_reloc): Likewise.
2189 * mipsbsd.c (MY(canonicalize_reloc)): Likewise.
2190 * nlmcode.h (nlm_get_symtab_upper_bound): Likewise.
2191 (nlm_get_symtab): Likewise.
2192 (nlm_get_reloc_upper_bound): Likewise.
2193 (nlm_canonicalize_reloc): Likewise.
2194 * oasys.c (oasys_get_symtab_upper_bound): Likewise.
2195 (oasys_get_symtab): Likewise.
2196 (oasys_get_reloc_upper_bound): Likewise.
2197 (oasys_canonicalize_reloc): Likewise.
2198 * som.c (som_get_symtab_upper_bound): Likewise.
2199 (som_get_symtab): Likewise.
2200 (som_get_reloc_upper_bound): Likewise.
2201 (som_canonicalize_reloc): Likewise.
2202 * srec.c (srec_get_symtab_upper_bound): Likewise.
2203 (srec_get_symtab): Likewise.
2204 (srec_get_reloc_upper_bound): Define as bfd_0l.
2205 (srec_canonicalize_reloc): Likewise.
2206 * tekhex.c (tekhex_get_symtab): Return long, and -1 on errors.
2207 (tekhex_get_symtab_upper_bound): Likewise.
2208 (tekhex_get_reloc_upper_bound): Define as bfd_0l.
2209 (tekhex_canonicalize_reloc): Likewise.
2210 * libaout.h (NAME(aout,get_symtab_upper_bound)): Change
2211 declaration to return long.
2212 (NAME(aout,get_symtab)): Likewise.
2213 (NAME(aout,canonicalize_reloc)): Likewise.
2214 (NAME(aout,get_reloc_upper_bound)): Likewise.
2215 * libcoff-in.h (coff_get_symtab_upper_bound): Likewise.
2216 (coff_get_symtab): Likewise.
2217 (coff_get_reloc_upper_bound): Likewise.
2218 * libecoff.h (ecoff_get_symtab_upper_bound): Likewise.
2219 (ecoff_get_symtab): Likewise.
2220 (ecoff_canonicalize_reloc): Likewise.
2221 * libelf.h (bfd_elf32_get_symtab_upper_bound): Likewise.
2222 (bfd_elf32_get_symtab): Likewise.
2223 (bfd_elf32_get_reloc_upper_bound): Likewise.
2224 (bfd_elf32_canonicalize_reloc): Likewise.
2225 (bfd_elf64_get_symtab_upper_bound): Likewise.
2226 (bfd_elf64_get_symtab): Likewise.
2227 (bfd_elf64_get_reloc_upper_bound): Likewise.
2228 (bfd_elf64_canonicalize_reloc): Likewise.
2229 * libnlm.h (nlmNAME(get_symtab_upper_bound)): Likewise.
2230 (nlmNAME(get_symtab)): Likewise.
2231 (nlmNAME(get_reloc_upper_bound)): Likewise.
2232 (nlmNAME(canonicalize_reloc)): Likewise.
2233 * archive.c (compute_and_write_armap): Use error_return and
2234 no_memory_return labels rather than freeing information in various
2235 places. Change storage, symcount and src_count to long. Check
2236 errors from bfd_get_symtab_upper_bound and
2237 bfd_canonicalize_symtab.
2238 * bout.c (b_out_relax_section): Change reloc_size to long. Check
2239 for errors from bfd_get_reloc_upper_bound and
2240 bfd_canonicalize_reloc.
2241 (b_out_get_relocated_section_contents): Likewise.
2242 * coff-alpha.c (alpha_ecoff_get_relocated_section_contents):
2243 Likewise.
2244 * elf32-mips.c: Likewise.
2245 * elf32-hppa.c (hppa_elf_stub_finish): Likewise.
2246 (hppa_look_for_stubs_in_section): Check for errors from
2247 bfd_get_symtab_upper_bound, bfd_canonicalize_symtab, and
2248 bfd_canonicalize_reloc.
2249 * ecofflink.c (bfd_ecoff_debug_accumulate_other): Check for errors
2250 from bfd_get_symtab_upper_bound and bfd_canonicalize_symtab.
2251 * linker.c (generic_link_read_symbols): Likewise.
2252 (_bfd_generic_final_link): Check for errors from
2253 bfd_get_reloc_upper_bound and bfd_canonicalize_reloc.
2254 * reloc.c (bfd_generic_get_relocated_section_contents): Likewise.
2255 * reloc16.c (bfd_coff_reloc16_relax_section): Likewise.
2256 (bfd_coff_reloc16_get_relocated_section_contents): Likewise.
2257 * libbfd.c (bfd_0l): New function.
2258 * libbfd-in.h (bfd_0l): Declare.
2259 * aix386-core.c: Change get_symtab_upper_bound, get_symtab,
2260 get_reloc_upper_bound, and canonicalize_reloc to use bfd_0l rather
2261 than bfd_0u.
2262 * cisco-core.c, hppabsd-core.c, hpux-core.c: Likewise.
2263 * irix-core.c, osf-core.c, ptrace-core.c, trad-core.c: Likewise.
2264 * bfd-in2.h: Rebuilt.
2265 * libbfd.h: Rebuilt.
2266 * libcoff.h: Rebuilt.
2267
2268 * nlm32-sparc.c (nlm_sparc_read_reloc): Remove unused variables
2269 temp and name.
2270
2271 Wed Mar 30 08:33:04 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
2272
2273 * hosts/dpx2.h: Define POSIX_UTIME.
2274
2275 Wed Mar 30 00:31:49 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2276
2277 * i386dynix.c, config/i386-dynix.mt: New files, handling Dynix
2278 variant of a.out.
2279 * configure.in, config.bfd: Use them for Dynix.
2280 * Makefile.in: Add dependencies for i386dynix.o.
2281 * targets.c: Add definition for i386dynix_vec.
2282 * hosts/symmetry.h: Do not define TRAD_CORE_USER_OFFSET for Dynix.
2283 Define HOST_DATA_START_ADDR and TRAD_UNIX_CORE_FILE_FAILING_SIGNAL
2284 for Dynix. Remove inclusion of dynix3.h, Dynix bfd is now handled by
2285 i386dynix.c
2286
2287 Mon Mar 28 12:53:27 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2288
2289 * Makefile.in (BFD32_BACKENDS): Add coff-sparc.o.
2290
2291 * coffcode.h (coff_set_flags): Handle bfd_arch_powerpc like
2292 bfd_arch_rs6000.
2293
2294 * config.bfd (powerpc-*-aix*): New target; use rs6000.mt.
2295 * config/rs6000.mt (SELECT_ARCHITECTURES): Add bfd_powerpc_arch.
2296
2297 * aoutx.h (translate_from_native_sym_flags): Set SEC_RELOC flag
2298 for generated constructor section.
2299
2300 Sun Mar 27 16:25:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2301
2302 * som.c (som_begin_writing): New approach at dealing with holes
2303 in executables left by the HP linker. Does not rely on subspace
2304 alignments as subspaces are *NOT* guaranteed to be properly
2305 aligned in an executable (can you believe that!).
2306
2307 Sat Mar 26 10:25:43 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2308
2309 * som.c (som_get_section_contents): New function. Do not try
2310 to actually read data from a section that doesn't have either
2311 SEC_LOAD or SEC_DEBUGGING set (eg $BSS$) just return true.
2312
2313 * libbfd.c (bfd_read): Set bfd_error as appropriate for a short
2314 read. (bfd_error_system_call or bfd_error_file_truncated).
2315
2316 * som.c: Do not blindly set bfd_error_system_call after a
2317 failing bfd_read, bfd_write, or bfd_seek. In a few places
2318 (like som_object_p) override the error status set by bfd_read.
2319
2320 * aix386-core.c, aout-encap,c archive.c, bout.c: Likewise.
2321 * coff-rs6000.c, coffgen.c ecoff.c, elf.c: Likewise.
2322 * elf32-hppa.c, elfcode.h, hp300hpux.c, i386lynx.c: Likewise.
2323 * nlm32-alpha.c, nlm32-i386.c, nlm32-sparc.c: Likewise.
2324
2325 * som.c: Check return values from several bfd_{seek,read,write}
2326 calls that we just assumed were not failing.
2327
2328 Fri Mar 25 11:44:06 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
2329
2330 * hosts/sysv4.h (HAVE_PROCFS): Add comments about ptx4.
2331 * config/sysv4.mh: Add comment.
2332 * config/symmetry.mh: Change comment.
2333 * configure.host: Use sysv4, not symmetry, for i[34]86-sequent-sysv4*.
2334
2335 Fri Mar 25 17:10:45 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2336
2337 Changes to support linker relaxing of embedded MIPS PIC code to
2338 use a five instruction sequence for function calls which are out of
2339 range of the bal instruction.
2340 * libecoff.h (struct ecoff_section_tdata): Define.
2341 (ecoff_section_data): Define.
2342 (ecoff_bfd_relax_section): Don't define.
2343 * ecoff.c (ecoff_final_link_debug_accumulate): Don't read or free
2344 the debugging information if it has already been read.
2345 (ecoff_indirect_link_order): Handle _cooked_size being different
2346 from _raw_size. Don't reread the contents or the relocs if they
2347 have already been read in.
2348 * coff-mips.c (mips_howto_table): Change bitsize of PCREL16 from
2349 18 to 16.
2350 (PCREL16_EXPANSION_ADJUSTMENT): Define.
2351 (mips_relocate_refhi): Take adjust argument.
2352 (mips_relocate_section): Handle reloc offsets stored in section
2353 used_by_bfd field. Call mips_relax_pcrel16 to handle details of
2354 expanding an out of range PCREL16. Keep trace of adjustments
2355 required by expansions. Set s and unset h when converting a reloc
2356 from undefined to section. Change handling of PC relative relocs:
2357 if against a section, they are correct in the object file, if
2358 against an external symbol they are pcrel_offset.
2359 (mips_relax_section): New function.
2360 (mips_relax_pcrel16): New function.
2361 (ecoff_bfd_relax_section): Define.
2362 * coff-alpha.c (ecoff_bfd_relax_section): Define.
2363 * ecofflink.c (bfd_ecoff_debug_accumulate): Handle adjustments
2364 built by mips_relax_section when writing out addresses.
2365 * elf32-mips.c (mips_elf_read_ecoff_info): Clear adjust field.
2366
2367 * aoutx.h (NAME(aout,find_nearest_line)): The caller expects
2368 functionname_ptr to be set to a symbol name, so prepend
2369 symbol_leading_char.
2370
2371 Thu Mar 24 11:33:46 1994 Steve Chamberlain (sac@jonny.cygnus.com)
2372
2373 * coff-h8300.c (h8300_reloc16_extra_cases): Add relaxing info
2374 for 16bit relative branches.
2375 * coff-h8500.c (r_high8, r_low16, r_high16): Don't complain on
2376 overflow.
2377
2378 Thu Mar 24 09:21:13 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2379
2380 * som.c (som_bfd_prep_for_ar_write): Ignore non-SOM objects.
2381 (som_bfd_ar_write_symbol_stuff, som_write_armap): Likewise.
2382
2383 Wed Mar 23 14:29:31 1994 David J. Mackenzie (djm@rtl.cygnus.com)
2384
2385 * netbsd386.c (N_SET_FLAGS): Delete the old definition.
2386
2387 Wed Mar 23 14:58:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2388
2389 Clean up the relaxing code for the new linker.
2390 * targets.c (_bfd_relax_section): Take boolean *again argument
2391 rather than asymbol list.
2392 * bfd.c (bfd_relax_section): Change name of fourth argument from
2393 symbols to again.
2394 * reloc.c (bfd_generic_relax_section): Take boolean *again
2395 argument rather than asymbol list. Always return true.
2396 * bout.c: Include genlink.h.
2397 (aligncode, perform_slip): Declare.
2398 (perform_slip): Take BFD argument rather than asymbol list.
2399 Changed all callers. Get the symbols from the BFD. Change the
2400 hash table entry value as well as the symbol value.
2401 (abs32code): Take BFD argument rather than asymbol list. Changed
2402 all callers.
2403 (aligncode): Likewise.
2404 (b_out_relax_section): Take boolean *again argument rather than
2405 asymbol list. Only return false if an error occurred. Set *again
2406 to false. Get symbols from BFD.
2407 * reloc16.c: Include genlink.h.
2408 (bfd_perform_slip): Take BFD argument rather than asymbol list.
2409 Get the symbols from the BFD. Change the hash table entry value
2410 as well as the symbol value.
2411 (bfd_coff_reloc16_relax_section): Take boolean *again argument
2412 rather than asymbol list. Only return false if an error occurred.
2413 Set *again to false. Get symbols from BFD.
2414 * coffcode.h (bfd_coff_backend_data): Change
2415 _bfd_coff_reloc16_estimate to take BFD argument rather than
2416 asymbol list.
2417 (bfd_coff_reloc16_estimate): Corresponding change.
2418 (dummy_reloc16_estimate): Corresponding change.
2419 * libcoff-in.h (bfd_coff_reloc16_relax_section): Change
2420 declaration to take boolean * rather than asymbol list.
2421 (bfd_perform_slip): Change declaration to take BFD rather than
2422 asymbol list.
2423 * coff-h8300.c (h300_reloc16_estimate): Take BFD argument rather
2424 than asymbol list. Changed calls to bfd_perform_slip.
2425 * bfd-in2.h: Rebuilt.
2426 * libbfd.h: Rebuilt.
2427 * libcoff.h: Rebuilt.
2428 * Makefile.in: Rebuilt dependencies.
2429
2430 * genlink.h (_bfd_generic_link_get_symbols): Define.
2431 (_bfd_generic_link_get_symcount): Define.
2432 * linker.c (generic_link_read_symbols): New function.
2433 (generic_link_add_object_symbols): Use it. Use
2434 _bfd_generic_link_get_symbols and _bfd_generic_link_get_symcount
2435 to get the symbols from the BFD.
2436 (generic_link_check_archive_element): Likewise.
2437 (_bfd_generic_final_link): Likewise.
2438 (_bfd_generic_link_output_symbols): Likewise.
2439 (default_indirect_link_order): Likewise.
2440 (generic_link_add_symbol_list): Store pointer to hash table entry
2441 in asymbol udata field.
2442
2443 Tue Mar 22 13:09:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2444
2445 * coff-mips.c (mips_howto_table): Add entry for new MIPS_R_PCREL16
2446 reloc, used in embedded PIC code.
2447 (mips_adjust_reloc_in): Change sanity check to permit new reloc.
2448 (mips_bfd_reloc_type_lookup): Turn BFD_RELOC_16_PCREL_S2 into
2449 MIPS_R_PCREL16.
2450
2451 * elf32-mips.c (mips_elf_final_link): Account for link_order
2452 relocs when allocating space for relocations. Set SEC_RELOC flag
2453 for any section which has relocs. Handle link_order relocs in
2454 link_order loop. Use _bfd_generic_link_add_symbols_collect for
2455 add_symbls entry point.
2456
2457 * linker.c (_bfd_generic_final_link): Set reloc_count to 0 before
2458 counting relocs. Set SEC_RELOC flag for any section which has
2459 relocs.
2460
2461 * linker.c (_bfd_default_link_order): Handle bfd_data_link_order.
2462
2463 * linker.c (_bfd_generic_link_add_symbols): Just call
2464 generic_link_add_symbols.
2465 (_bfd_generic_link_add_symbols_collect): New function, like
2466 _bfd_generic_link_add_symbols but also collect constructors and
2467 destructors by name as collect2 does.
2468 (generic_link_add_symbols): New function, like old
2469 _bfd_generic_link_add_symbols but with collect argument.
2470 (generic_link_add_object_symbols): Take collect argument.
2471 (generic_link_check_archive_element_no_collect): New function.
2472 (generic_link_check_archive_element_collect): New function.
2473 (generic_link_check_archive_element): Take collect argument.
2474 (generic_link_add_symbol_list): Take collect argument.
2475 (_bfd_generic_link_add_one_symbol): Rename constructor argument to
2476 collect.
2477 * libbfd-in.h (_bfd_generic_link_add_symbols_collect): Declare.
2478 * libbfd.h: Rebuilt.
2479
2480 Tue Mar 22 10:04:00 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2481
2482 * archive.c (bfd_construct_extended_name_table): Use ar_padchar
2483 for first character in an extended name.
2484 (_bfd_write_archive_contents): If ar_padchar == '/', then use
2485 "//" as the name of the special archive member holding the
2486 extended name table.
2487
2488 Mon Mar 21 12:28:19 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2489
2490 Support for link_order types which generate relocs in order to
2491 support -Ur in the linker.
2492 * linker.c (generic_link_add_symbol_list): Remove bitsize argument
2493 from call to _bfd_generic_link_add_one_symbol.
2494 (_bfd_generic_link_add_one_symbol): Remove bitsize argument.
2495 Don't pass bitsize to constructor call back. Pass BFD_RELOC_CTOR
2496 instead of bitsize to add_to_set call back.
2497 (_bfd_generic_final_link): Account for link_order relocs when
2498 allocating space for relocations. Handle them in link_order loop.
2499 (_bfd_generic_reloc_link_order): New function.
2500 (_bfd_default_link_order): If a reloc_link_order is seen here,
2501 abort.
2502 (_bfd_count_link_order_relocs): New function.
2503 * libbfd-in.h (_bfd_generic_link_add_one_symbol): Remove bitsize
2504 argument from declaration.
2505 (_bfd_generic_reloc_link_order): Declare.
2506 (_bfd_count_link_order_relocs): Declare.
2507 * libbfd.h: Rebuilt.
2508 * aoutx.h (aout_link_add_symbols): Remove bitsize argument from
2509 call to _bfd_generic_link_add_one_symbol.
2510 (NAME(aout,final_link)): Account for link_order relocs when
2511 allocating space for relocations. Handle them after handling all
2512 input BFDs.
2513 (aout_link_reloc_link_order): New function.
2514 * ecoff.c (ecoff_link_add_externals): Remove bitsize argument from
2515 call to _bfd_generic_link_add_one_symbol.
2516 (ecoff_bfd_final_link): Account for link_order relocs when
2517 allocating space for relocations. Handle them in link_order loop.
2518 (ecoff_link_write_external): Set the storage class of a defined
2519 linker created symbol based on the section it is in. Correct
2520 bfd_link_hash_weak case to use .sc rather than .st.
2521 (ecoff_reloc_link_order): New function.
2522 * coff-alpha.c (alpha_bfd_reloc_type_lookup): Handle
2523 BFD_RELOC_CTOR.
2524 * coff-mips.c (mips_bfd_reloc_type_lookup): Likewise.
2525
2526 * sunos.c (sunos_read_dynamic_info): Remove unused locals dynsym
2527 and buf.
2528
2529 * cisco-core.c (cisco_core_file_p): Only pass one argument to
2530 bfd_zmalloc. Free a pointer, not a union.
2531 (cisco_bfd_is_local_label): Correct cast from asection to asymbol.
2532
2533 Sun Mar 20 09:24:36 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2534
2535 * bfd/som.c (som_begin_writing): Fix thinko (off by one error).
2536
2537 * som.c (bfd_section_from_som_symbol): Only to do the value
2538 comparison for function symbols within executables.
2539
2540 * som.c (bfd_section_from_som_symbol): Renamed from
2541 som_section_from_subspace_index. Pass in a native SOM symbol.
2542 For executables, iterate through the sections to find out
2543 which contains the symbol's address rather than using the
2544 symbol_info field. (symbol_info has a different meaning for
2545 dynamicly linked executables.)
2546
2547 * trad-core.c (trad_unix_core_file_p): Don't pass abfd to
2548 bfd_zmalloc.
2549
2550 * som.c (som_begin_writing): Fix braino (one call to align
2551 space/subspace data was done unconditionally rather than
2552 just for executables.)
2553
2554 * som.c (som_begin_writing): Align text in all executables to
2555 make HPUX kernel happy. Fixes strip/objcopy for shared
2556 executables.
2557
2558 Sat Mar 19 07:06:59 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2559
2560 * som.c (som_begin_writing): Account for alignment needs of
2561 subspaces too when writing executables. Never request a negative
2562 bss size. Fixes some problems with demand paged executables,
2563 still having problems with pure executables and shared executables.
2564
2565 Fri Mar 18 19:12:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
2566
2567 * trad-core.c (trad_unix_core_file_p): Call bfd_zmalloc not
2568 bfd_zalloc for rawptr, because later on we may call free, not
2569 bfd_release, on it.
2570
2571 * bfd.c (struct _bfd): Add cisco_core_struct to tdata union.
2572 * libbfd.c (bfd_read, bfd_seek): Add comments regarding errors.
2573 * cisco-core.c: New file.
2574 * Makefile.in: Change accordingly.
2575 * configure.in: Recognize cisco_core_vec.
2576 * config/m68k-aout.mt (SELECT_VECS): Add cisco_core_vec.
2577 * targets.c: Add cisco_core_vec.
2578 * bfd-in2.h: Rebuilt.
2579
2580 Fri Mar 18 18:13:49 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2581
2582 * som.h (som_copyable_section_data_struct): New structure
2583 containing all the private section information which needs
2584 to be copied from input section to output section during
2585 objcopy or strip.
2586 (som_section_data_struct): Remove several fields now in
2587 som_copyable_section_data_struct. Make the space and
2588 subspace dictionaries be pointers (to save space when
2589 only reading objects).
2590
2591 * som.c (bfd_som_set_section_attributes): Now returns a boolean;
2592 some references changed. Allocate a copyable data stucture if
2593 none exists. Store info into the copyable data structure.
2594 (bfd_som_set_subsection_attributes): Likewise.
2595 (som_is_space, som_is_subspace, som_is_container): New functions.
2596 Use these instead of directly accessing private data.
2597 (som_prep_headers): Allocate space and subspace headers here.
2598 Fill in some fields in the space/subspace headers from the
2599 copyable data.
2600 (som_bfd_copy_private_section_data): Only copy the stuff
2601 that we really need to make objcopy and strip work. Allocate
2602 the copy_data structure for the output bfd before copying.
2603
2604 * som.h (struct som_exec_data): New structure to hold exec
2605 info that must be preserved when running objcopy/strip.
2606 (struct somdata): Add new "exec_data" field and accessor
2607 macro. Add some comments on how the various fields are used.
2608 (som_section_data_struct): Make is_space and is_subspace bitfields.
2609 Delete unused subspace_index. All references now use the
2610 target_index field within the section structure itself.
2611
2612 * som.c (make_unique_section): Delete unused declaration.
2613 (som_bfd_copy_private_bfd_data): New function.
2614 (som_object_setup): Allocate space for and save exec information
2615 that needs to be copied during objcopy/strip.
2616 (som_mkobject): Do not allocate space for a file header here.
2617 It is not used when only reading SOM objects.
2618 (som_prep_headers): Allocate space for and attach a file header
2619 to the output bfd. For executables, use the saved system_id
2620 value rather than trying to guess the right value. Do not abort
2621 wwhen setting file_hdr->entry* for executables.
2622 (som_begin_writing): For executables, set the exec_entry and
2623 exec_flags fields.
2624 (som_copy_private_backend_section_data): Always return a value.
2625
2626 * libhppa.h (PA_PAGESIZE): Define.
2627
2628 * som.c (SOM_ALIGN): Define.
2629 (som_begin_writing): If writing an executable, initialize all
2630 fields in the exec header to zero. Update fields in the exec
2631 header as sizes of loadable subspaces are computed. Carefully
2632 preserve alignments when building executables. Actually write the
2633 exec after all the fields are filled in.
2634
2635 * Better long-filename handling. Reads SOM ABI compliant extended
2636 names, but doesn't quite write compliant extended names yet.
2637 * som.c (som_slurp_extended_name_table): Delete function. The
2638 generic code will handle things correctly.
2639 (som_slurp_armap): Seek to the beginning of the next member.
2640 (normalize): New function.
2641 (som_bfd_ar_write_symbol_stuff): Take the size of the extended
2642 name table into account when computing the file offsets in the
2643 SOM dictionary. Make sure to align to an even boundary.
2644 (som_write_armap): Initialize the checksum to zero.
2645 (ar_maxchars): Fix. Opps.
2646
2647 Fri Mar 18 20:35:24 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
2648
2649 * aoutx.h (reloc_type_lookup): Handle BFD_RELOC_CTOR on a 64-bit
2650 machine. Handle BFD_RELOC_SPARC13 and BFD_RELOC_SPARC_BASE13.
2651
2652 Thu Mar 17 18:26:46 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
2653
2654 * bfd-in.h (BFD_VERSION): Use @VERSION@.
2655 * Makefile.in (bfd.h): Replace it with contents of VERSION file.
2656 * bfd-in2.h: Regenerated.
2657
2658 * trad-core.c (trad_unix_bfd_is_local_label): Fixed typo where
2659 this was also named trad_unix_bfd_copy_private_bfd_data.
2660
2661 Thu Mar 17 10:37:07 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
2662
2663 * aoutx.h, elfcode.h, coff-alpha.c, bout.c, ecoff.c, ecofflink.c,
2664 elf32-hppa.c, elf32-mips.c, linker.c, som.c, sunos.c: If malloc(0)
2665 returns NULL, it is not an error. It's possible that some of
2666 these checks are not necessary (because the size can never be
2667 zero), but putting in the checks is the conservative thing to do
2668 in light of the fact that some of these malloc calls replaced
2669 unchecked alloca calls, in which a zero argument would work fine.
2670
2671 Thu Mar 17 11:44:45 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2672
2673 * osf-core.c (osf_core_bfd_copy_private_bfd_data): Remove
2674 duplicate definition.
2675 (osf_core_bfd_is_local_label): Define.
2676
2677 * reloc.c (bfd_generic_get_relocated_section_contents): Don't fail
2678 if malloc (0) fails. bfd_canonicalize_reloc returning 0 is not a
2679 failure indication, it merely means there are no relocs.
2680
2681 * elfcode.h (NAME(bfd_elf,write_object_contents)): Don't use space
2682 after NAME, since SunOS /bin/cc can't handle it.
2683
2684 Wed Mar 16 16:43:33 1994 David J. Mackenzie (djm@thepub.cygnus.com)
2685
2686 * netbsd386.c (N_SET_FLAGS): Don't nuke the machine id field.
2687 From sukes@glue.umd.edu (Tasuki Hirata).
2688
2689 Wed Mar 16 07:55:54 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
2690
2691 * aoutf1.h (4 places): Use a simple #if on ARCH_SIZE, rather than
2692 all that convoluted stuff with NAME, CAT3, etc. The convoluted
2693 stuff broke for SunOS4 /bin/cc (due to DEFUN elimination, I guess).
2694
2695 Wed Mar 16 00:02:05 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2696
2697 * som.c (som_prep_for_fixups): Detect section symbols based
2698 on either the lack of private data or the symbol flags. Do not
2699 munge section symbol names anymore -- they no longer confuse GDB.
2700 (som_begin_writing): Leave space for an exec header if writing
2701 an executable.
2702 (som_slurp_symbol_table): Recognize both forms of section symbol
2703 names "L$0\002" and "$<FOO>$". Change the name of "L$0\002"
2704 section symbols to be the name of the section they represent.
2705 Debugging symbols begin with "L$0\001", not just "L$".
2706
2707 Tue Mar 15 22:58:28 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2708
2709 * bfd-in2.h, libbfd.h, libcoff.h: Rebuilt.
2710
2711 * bfd-in.h (JUMP_TABLE): Add new entries to the jump table
2712 for bfd_copy_private_section_data, bfd_copy_private_bfd_data,
2713 and bfd_is_local_label.
2714
2715 * targets.c: Add new entries to the bfd_target structure.
2716
2717 * bfd.c (bfd_copy_private_bfd_data): New definition.
2718
2719 * section.c (bfd_copy_private_section_data): New definition.
2720
2721 * syms.c (bfd_is_local_label): New definition.
2722
2723 * libbfd-in.h (bfd_generic_is_local_label): Declare.
2724
2725 * libbfd.c (bfd_generic_is_local_label): New function.
2726
2727 * *-core.c: Provide default definitions for new functions in
2728 the target vector which all point to bfd_false.
2729
2730 * aout-target.h, coffcode.h, elf32-target.h elf64-target.h, ieee.c
2731 libaout.h, libecoff.h, nlm-target.h, oasys.c, srec.c, tekhex.c
2732 Default new vectors for copying private backend data to bfd_true.
2733 Default new vector for determining if a symbol is a local label
2734 to bfd_generic_is_local_label.
2735
2736 * som.c (som_bfd_copy_private_section_data): New function.
2737 (som_bfd_is_local_label): New function.
2738 (som_bfd_copy_private_bfd_data): For now default to bfd_true.
2739
2740 * elf32-hppa.c (hppa_elf_is_local_label): New function.
2741
2742 Tue Mar 15 23:55:47 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2743
2744 * cf-m68klynx.c (CALC_ADDEND): Use _bfd_m68klynx_howto_table.
2745
2746 Tue Mar 15 04:41:13 1994 David J. Mackenzie (djm@rtl.cygnus.com)
2747
2748 * Most files:
2749 Replace DEFUN and DEFUN_VOID with K&R-style function definition.
2750 Indent some of them to GNU standards.
2751
2752 * aout32.c, archures.c, core.c, cpu-h8300.c, cpu-i960.c,
2753 cpu-m68k.c, cpu-m88k.c, cpu-mips.c, cpu-vax.c, ctor.c, demo64.c,
2754 elf32-hppa.h, gen-aout.c, host-aout.c, init.c, libhppa.h,
2755 libieee.h, liboasys.h, newsos3.c, som.h, stab-syms.c, sunos.c:
2756 Update copyright years.
2757
2758 Mon Mar 14 11:41:23 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2759
2760 * som.c (som_prep_for_fixups): A relocation involving the section
2761 symbol for the *ABS* section is really a relocation involving
2762 no symbol.
2763 (som_slurp_symbol_table): Do not set BSF_GLOBAL or BSF_EXPORT for
2764 undefined symbols. Correctly distinguish between debugger symbols
2765 and section symbols.
2766
2767 * som (setup_sections): Set SEC_DEBUGGING and the section attributes
2768 for spaces and subspaces.
2769
2770 * som.c (som_bfd_count_ar_symbols): Fix typo.
2771
2772 * som.c (som_object_setup): Set EXEC_P, D_PAGED, WP_TEXT, and
2773 HAS_RELOC based on the object's magic number.
2774 (make_unique_section): Delete function. BFD and its users are
2775 prepared to handle multiple sections with the same name.
2776 (setup_sections): Allocate space on the BFD's obstack to hold
2777 section names. Use bfd_make_setion_anyway rather than the
2778 obsolete make_unique_section.
2779 (som_prep_headers): Choose the correct SOM magic number based
2780 on the BFD's flags.
2781 (som_bfd_fill_in_ar_symbols): Return false, not NULL on error.
2782
2783 Sat Mar 12 09:46:09 1994 Ian Lance Taylor (ian@cygnus.com)
2784
2785 * elf32-ppc.c: Renamed from elf32-powerpc.c.
2786 * nlm32-ppc.c: Renamed from nlm32-powerpc.c.
2787 * Makefile.in, configure.in: Corresponding changes.
2788
2789 Fri Mar 11 22:27:19 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
2790
2791 * elf32-powerpc.c: Extensive changes to update to preliminary ABI.
2792
2793 Fri Mar 11 00:34:59 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2794
2795 * sunos.c (sunos_read_dynamic_info): Assume that dynamic info
2796 is always located at the start of the data section to allow
2797 recovery of the dynamic info from a stripped executable.
2798 * ecoff.c (ecoff_styp_to_sec_flags): Handle STYP_PDATA, STYP_XDATA
2799 and STYP_COMMENT.
2800
2801 Wed Mar 9 17:17:53 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
2802
2803 * libbfd-in.h: Remove alloca cruft. It was missing some necessary
2804 cruft (like the #pragma alloca for AIX).
2805 In addition to that problem, the C alloca calls xmalloc, which
2806 means checking for being out of memory can't work right. The
2807 following changes remove all uses of alloca from BFD.
2808 * hosts/solaris2.h: Remove alloca cruft.
2809 * som.c: Replace alloca with a fixed size auto array.
2810 * aoutx.h, elfcode.h, nlmcode.h, bout.c, coff-alpha.c, ecoff.c,
2811 ecofflink.c, elf32-hppa.c, elf32-mips.c, linker.c, reloc.c, som.c,
2812 sunos.c: Replace alloca with malloc and appropriate error checking and
2813 freeing.
2814 * linker.c: Replace alloca with obstack_alloc.
2815 * libbfd.h: Rebuilt.
2816
2817 Tue Mar 8 12:10:38 1994 Ian Lance Taylor (ian@cygnus.com)
2818
2819 * coff-mips.c (mips_relocate_section): Handle MIPS_R_LITERAL like
2820 MIPS_R_GPREL.
2821
2822 Sat Mar 5 14:08:54 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2823
2824 * elf32-hppa.h, elfcode.h: Replace uses of Elf*_Half, Elf*_Word,
2825 Elf*_Off typedefs by their expansion, the typedefs have been
2826 removed from include/elf/internal.h.
2827 * elfcode.h (bfd_section_from_shdr): Handle SHT_DYNAMIC section like
2828 SHT_PROGBITS section.
2829
2830 Thu Mar 3 20:03:39 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2831
2832 * som.h (_PA_RISC_ID): Treat HOST_HPPAOSF just like HOST_HPPABSD.
2833
2834 Wed Mar 2 13:28:06 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
2835
2836 * configure.host: Recognize i[34]86-sequent-*.
2837
2838 * trad-core.c (trad_unix_core_file_p): A non-zero, not zero,
2839 return from bfd_seek indicates an error.
2840 New macro TRAD_CORE_DSIZE_INCLUDES_TSIZE to replace
2841 TRAD_CORE_STACK_OFFSET.
2842 * hosts/symmetry.h: Define TRAD_CORE_DSIZE_INCLUDES_TSIZE and
2843 TRAD_CORE_USER_OFFSET but not HOST_STACK_OFFSET.
2844
2845 Wed Mar 2 11:57:03 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2846
2847 * som.[ch]: Do not include libhppa.h in som.c, instead include
2848 it in som.h.
2849
2850 * elf32-hppa.[ch]: Do not include libhppa.h in elf32-hppa.c, instead
2851 include it in elf32-hppa.h.
2852
2853 * som.c (log2): Return -1 on error rather than aborting.
2854 (setup_sections): Bubble up an error from log2.
2855
2856 * Changes to make HP C compiler happy in both traditional
2857 and ANSI mode.
2858 * som.c (hppa_som_gen_reloc_type): Use correct enum type for
2859 field parameter.
2860 (bfd_som_set_section_attributes): Use unsigned int rather than
2861 unsigned char to avoid GNU-C extensions.
2862 (bfd_som_attach_aux_hdr): Return a boolean to indicate success
2863 or failure rather than aborting on failure.
2864
2865 * som.h (bfd_som_set_section_attributes): Fix prototype to match
2866 som.c changes.
2867 (bfd_som_attach_aux_hdr): Add prototype.
2868 (hppa_som-gen_reloc_type): Likewise.
2869
2870 * elf32-hppa.c: Add a couple casts to make HP compiler happy.
2871 (hppa_look_for_stubs_in_section): Do not return false on failure
2872 until rest of code is ready to handle it. Abort for now.
2873
2874 Tue Mar 1 18:33:59 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
2875
2876 * bfd-in2.h: Rebuilt.
2877
2878 Tue Mar 1 13:06:53 1994 Kung Hsu (kung@mexican.cygnus.com)
2879
2880 * i386os9k.c: use new functions bfd_set_error and bfd_get_error.
2881 * Makefile.in: delete an extra blank.
2882 * configure.in : Add i396os9k_vec.
2883
2884 Mon Feb 28 15:41:01 1994 Kung Hsu (kung@mexican.cygnus.com)
2885
2886 * config.bfd : Add i386-os9k.
2887 * config/i386-os9k.mt : Newly add os9k target makefile.
2888
2889 * i386os9k.c : new file to handle os9k format bfd.
2890 * Makefile.in : Handle new file i386os9k.c
2891 * targets.c : Add bfd_target_os9k_flavour and i386os9k_vec.
2892 * cache.c : Initialize cache_sentinel to 0.
2893
2894 Sun Feb 27 16:30:55 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2895
2896 * elf32-hppa.c (mismatches, retval_mismatches): Fix mismatch
2897 action in case where caller specified no argument relocation.
2898 (hppa_elf_build_linker_stub): Try again to get the sym_ptr_ptr
2899 right in the original relocation and the stub's relocation.
2900
2901 * elf32-hppa.h (hppa_look_for_stub_in_section): Fix typo. Delete
2902 unused symbols argument.
2903
2904 * elf32-hppa.c (hppa_elf_stub_reloc): Accept asymbol ** rather
2905 than asymbol * for original target symbol. All callers changed.
2906 Set reloc->sym_ptr_ptr appropriately.
2907 (hppa_elf_build_linker_stub): Set reloc->sym_ptr_ptr correctly.
2908 (hppa_elf_look_for_stubs_in_section): No longer need symbols
2909 argument. Use the output symbols when canonicalizing the relocs,
2910 creating them if necessary.
2911
2912 * linker.c (_bfd_generic_link_output_symbols): Do not
2913 rebuild/clobber the output symbols if they already exist.
2914
2915 Sun Feb 27 15:22:36 1994 Stan Shebs (shebs@andros.cygnus.com)
2916
2917 * targets.c (BFD_SEND, BFD_SEND_FMT): Add debugging versions that
2918 check all the pointer dereferences. Enabled via DEBUG_BFD_SEND.
2919 * bfd-in2.h: Rebuilt.
2920
2921 * srec.c (hex_value): Always set to a size of 256 bytes.
2922 (srec_init): Cosmetic changes.
2923
2924 Sun Feb 27 11:18:47 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2925
2926 * elf32-hppa.c: Second half of major cleanup. More comments,
2927 PARAMize and staticize rest of functions. Delete unused
2928 functions. Delete unused/unnecessary arguments to some functions.
2929 Group static vars together. Abort for bad errors until we have
2930 error code propogation working. Work on spacing and indention.
2931 Add FIXMEs for unresolved problems. Use enums rather than
2932 #defines for lots of things. Merge two functions which build
2933 linker stubs into a single function (so they can easily share a
2934 ton of common code).
2935
2936 Sat Feb 26 10:00:45 1994 Ian Lance Taylor (ian@cygnus.com)
2937
2938 * reloc.c (_bfd_relocate_contents): Adjust handling of overflow to
2939 avoid depending upon right shifts of signed numbers, and to
2940 correct handling of src_mask with lower bits zero.
2941
2942 * aoutx.h, archive.c: Add casts to avoid warnings from SVR4 cc.
2943 * ecoff.c, ecofflink.c, ecoffswap.h, srec.c: Likewise.
2944 * elf32-i386.c: Likewise.
2945 * elfcode.h (bfd_section_from_shdr): Make i unsigned; remove old
2946 #if 0 code.
2947 (elf_write_phdrs): Make i unsigned.
2948 (map_program_segments): Make i and n_left unsigned.
2949 (assign_file_positions_except_relocs): Make i unsigned.
2950 (write_shdrs_and_ehdr): Make count unsigned.
2951 (assign_file_positions_for_relocs): Make i unsigned.
2952 (NAME(bfd,elf_write_object_contents)): Make count unsigned.
2953 (section_from_elf_index): Make index argument unsigned.
2954
2955 Fri Feb 25 21:34:58 1994 Ian Lance Taylor (ian@cygnus.com)
2956
2957 * elfcode.h: Don't include assert.h.
2958 (swap_out_syms): Use BFD_ASSERT rather than assert.
2959
2960 * linker.c (_bfd_generic_link_write_global_symbol): Add missing
2961 break in switch.
2962
2963 * hosts/i386v4.h (qsort, strtol): Remove incorrect and useless
2964 declarations.
2965
2966 Fri Feb 25 16:35:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
2967
2968 * libhppa.h (hppa_rebuild_insn): Moved here from elf32-hppa.c.
2969
2970 * elf32-hppa.h (elf_hppa_tc_symbol): Add new arguments.
2971 (elf_hppa_tc_make_sections): Likewise.
2972 (elf_hppa_final_processing): Add extern decl.
2973
2974 * elf32-hppa.c: First half of major cleanup. Add/cleanup lots of
2975 comments. PARAMize some static functions. Delete unused functions.
2976 Delete unused/unnecessary arguments to many functions. Group
2977 static vars together. Collapse common case statements together
2978 in many places. Use default case when possible instead of listing
2979 each case separately. Abort for bad errors until we get error
2980 code propogation working. Work on spacing and indention problems.
2981 Add FIXMEs for some unresolved problems. Delete hopelessly broken
2982 COMPLEX relocation support (it's never used anyway).
2983 (hppa_elf_rebuild_insn): Delete. Moved into libhppa.h.
2984 (elf_hppa_tc_symbol): Accept and use new arguments (symext chains).
2985 (elf_hppa_tc_make_sections): Likewise.
2986
2987 * format.c (bfd_check_format_matches): Initialize matching_vector
2988 to keep gcc -Wall quiet.
2989
2990 * elfcode.h (elf_slurp_reloca_table): Fix typo.
2991
2992 * som.c (som_get_symtab_upper_bound): Use "sizeof (asymbol *)"
2993 not "sizeof (som_symbol_type *)".
2994
2995 * elfcode.h (elf_get_symtab_upper_bound): Use "sizeof (asymbol *)"
2996 not "sizeof (asymbol"). Opps.
2997
2998 Fri Feb 25 13:19:04 1994 Ted Lemon (mellon@pepper.ncd.com)
2999
3000 * bfd.c (bfd_get_gp_size): Can't return gp value on an archive.
3001 (bfd_set_gp_size): Can't set gp value on an archive.
3002
3003 Fri Feb 25 12:57:00 1994 Steve Chamberlain (sac@jonny.cygnus.com)
3004
3005 * srec.c (pass_over): Don't skip too many characters when
3006 end of line seen.
3007
3008 Fri Feb 25 11:41:57 1994 Ian Lance Taylor (ian@cygnus.com)
3009
3010 * ecoff.c (ecoff_sizeof_headers): Align result to 16 byte
3011 boundary.
3012
3013 Thu Feb 24 07:13:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3014
3015 * som.c (som_bfd_derive_misc_symbol_info): Derive symbol_info
3016 field for absolute symbols in the same manner as undefined
3017 and common symbols.
3018
3019 Thu Feb 24 04:29:19 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
3020
3021 * elfcode.h (elf_core_file_p): Check for core file e_machine match
3022 like in elf_object_p.
3023
3024 Wed Feb 23 18:28:37 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3025
3026 * elfcode.h (alloca): Delete declaration.
3027
3028 * som.c (som_prep_headers): Use CPU_PA_RISC1_0 for magic
3029 number rather than HP9000S800_ID. Note som.c is careful
3030 to make sure CPU_PA_RISC1_0 is always defined.
3031
3032 Mon Feb 21 10:12:02 1994 Stan Shebs (shebs@andros.cygnus.com)
3033
3034 * Makefile.in (targets.o, archures.o): Use ALL_CFLAGS to supply
3035 flags to explicit compile actions.
3036
3037 Mon Feb 21 09:50:06 1994 Ian Lance Taylor (ian@lisa.cygnus.com)
3038
3039 * ecofflink.c (ecoff_write_symhdr): Set symhdr->magic here.
3040 * ecoff.c (ecoff_write_object_contents): Make sure .bss section
3041 ends on a page boundary if there is no symbol table.
3042 (ecoff_bfd_final_link): Don't set symhdr->magic here.
3043
3044 * hosts/hp300.h: Include <stdlib.h>; don't declare free.
3045
3046 * som.c (som_bfd_count_ar_symbols): Use a pointer and alloca
3047 rather than an array of variable size.
3048 (som_bfd_fill_in_ar_symbols): Likewise.
3049 (som_bfd_ar_write_symbol_stuff): Likewise.
3050
3051 * coff-alpha.c (alpha_relocate_section): Rewrite mask and shift
3052 operation to avoid OSF 1.3 cc bug.
3053 * ecoff.c (ecoff_write_object_contents): Make text_size, data_size
3054 and bss_size bfd_size_type instead of unsigned long. Make
3055 text_start and data_start bfd_vma instead of unsigned long.
3056 * ecofflink.c (ecoff_add_string): Remove incorrect cast of return
3057 value.
3058
3059 Sun Feb 20 16:06:54 1994 Ian Lance Taylor (ian@lisa.cygnus.com)
3060
3061 * linker.c (_bfd_generic_link_add_archive_symbols): Consider
3062 symbols in the order they appear in the archive map.
3063
3064 Sat Feb 19 03:17:32 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
3065
3066 * coff-alpha.c (reloc_nil): Add forward declaration, add missing
3067 error_message argument.
3068 * coff-sparc.c (bfd_coff_generic_reloc): Add forward declaration,
3069 add missing error_message argument.
3070 * mipsbsd.c (mips_fix_hi16_s): Add forward declaration, add missing
3071 error_message argument.
3072
3073 Fri Feb 18 11:41:58 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3074
3075 Support for PowerPC NetWare.
3076 * nlm32-powerpc.c: New file.
3077 * config.bfd (powerpc-*-netware*): New target; use ppc-nlm.
3078 * config/ppc-nlm.mt: New file.
3079 * configure.in (nlm32_powerpc_vec): New target vector; use
3080 nlm32-powerpc.o, nlm32.o, nlm.o.
3081 * targets.c (nlm32_powerpc_vec): Declare.
3082 * Makefile.in (BFD32_BACKENDS): Add nlm32-powerpc.o.
3083 (CFILES): Add nlm32-powerpc.c.
3084
3085 Initial support for PowerPC ELF. Done without an ABI, and
3086 probably to be changed when I get an ABI.
3087 * config.bfd (powerpc-*-sysv4*): New target; use ppc-elf.
3088 * config/ppc-elf.mt: New file.
3089 * configure.in (bfd_elf32_powerpc_vec): New target vector; use
3090 elf32-powerpc.o, elf32.o, elf.o.
3091 * elf32-powerpc.c: New file.
3092 * elfcode.h (prep_headers): Add bfd_arch_powerpc case.
3093 (elf_set_arch_mach): Likewise.
3094 * targets.c (bfd_elf32_powerpc_vec): Declare.
3095 * Makefile.in (BFD32_BACKENDS): Add elf32-powerpc.o.
3096 (CFILES): Add elf32-powerpc.c.
3097 Rebuilt dependencies.
3098
3099 Thu Feb 17 15:29:55 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3100
3101 * coffgen.c (coff_write_linenumbers): Always return a value.
3102
3103 * elfcode.h (elf_slurp_symbol_table): Handle zero symbols
3104 reasonably. Allocate x_symp using alloca.
3105
3106 * elfcode.h (map_program_segments): ELF program header entries
3107 must be sorted by load address. This used to generate the entries
3108 in reverse order.
3109
3110 * section.c (SEC_IN_MEMORY): Define.
3111 (asection): Rename unused field otheruserdata to contents, and
3112 make it char *.
3113 (bfd_make_section_anyway): Initialize contents field to NULL.
3114 (bfd_get_section_contents): If SEC_IN_MEMORY is set, get section
3115 contents from contents field rather than from file.
3116 * bfd-in2.h: Rebuilt.
3117
3118 Thu Feb 17 08:30:53 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3119
3120 * bfd.c (bfd_get_error, bfd_set_error): New functions.
3121 (bfd_error): Make static.
3122 (bfd_error_type): Renamed from bfd_ec. Prepend "bfd_error_" to
3123 all values.
3124 * bfd-in2.h: Regenerated.
3125 * aix386-core.c, aout-adobe.c, aout-encap.c, aout-target.h,
3126 aoutf1.h, aoutx.h, archive.c, archures.c,
3127 bfd.c, bout.c, cache.c, coff-alpha.c, coff-mips.c,
3128 coff-rs6000.c, coffcode.h, coffgen.c, core.c, ctor.c,
3129 ecoff.c, ecofflink.c, elf.c, elf32-hppa.c, elf32-mips.c,
3130 elfcode.h, format.c, hash.c, hp300hpux.c, hppabsd-core.c,
3131 i386lynx.c, ieee.c, libbfd.c, libelf.h, linker.c,
3132 lynx-core.c, nlm.c, nlm32-alpha.c, nlm32-i386.c,
3133 nlm32-sparc.c, nlmcode.h, oasys.c, opncls.c, osf-core.c,
3134 ptrace-core.c, reloc16.c, rs6000-core.c, section.c, som.c,
3135 srec.c, sunos.c, syms.c, targets.c, tekhex.c,
3136 trad-core.c: Change callers.
3137
3138 Tue Feb 15 22:27:27 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3139
3140 * som.c: Remove FIXMEs for things which have been dealt with.
3141
3142 Tue Feb 15 19:39:24 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
3143
3144 * section.c (bfd_get_section_contents): Since this function reads
3145 unrelocated contents, the section's raw size is always the one to
3146 use for bounds checking.
3147
3148 * linker.c (default_indirect_link_order): In assertion, compare
3149 link_order size field against cooked size, not raw size, of input
3150 section.
3151
3152 * bout.c (b_out_get_reloc_upper_bound): For BSS section, just
3153 return 0.
3154 (aligncode): When shrinking, the addend should be set to the
3155 current offset in the section plus the number of bytes of padding
3156 that will actually be retained.
3157 (b_out_relax_section): If a section contains no relocations, don't
3158 bother processing them.
3159 (b_out_get_relocated_section_contents): Set reloc_done. Assert
3160 that bfd_get_section_contents returns true. Check that relocs are
3161 properly ordered.
3162 (b_out_get_relocated_section_contents, case ALIGNDONE): Assert
3163 that reloc->addend falls between the current source offset and the
3164 raw size of the input section.
3165
3166 * config.bfd: Support i960 vxworks versions > 5.0 with coff, not
3167 bout. Default with no version number is still bout. Support
3168 explicit i960-coff target too.
3169
3170 * bout.c: Changed some indentation, deleted trailing whitespace,
3171 fixed some comments, removed some "#if 1" lines.
3172 (output_addr): New macro.
3173 (calljx_callback, callj_callback, get_value, abs32code, aligncode,
3174 b_out_get_relocated_section_contents): Use it for readability.
3175
3176 Tue Feb 15 09:00:16 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3177
3178 * som.c (som_bfd_prep_for_ar_write): Iterate through the SOM
3179 symbols, not the BFD symbols.
3180 (som_bfd_ar_write_symbol_stuff): Likewise.
3181
3182 Mon Feb 14 22:55:20 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3183
3184 * som.c (som_slurp_symbol_table): Do not die if a BFD doesn't
3185 have any symbols.
3186
3187 * Finish basic read-write support for SOM archive libraries. Bugs
3188 surely remain as this hasn't been tested all that much.
3189 * som.c (SOM_LST_HASH_SIZE, SOM_LST_MODULE_LIMIT): Define.
3190 (struct som_misc_symbol_info): New structure to hold info necessary
3191 to build both normal and library symbol tables.
3192 (som_derive_misc_symbol_info): New function to derive info necessary
3193 to build both normal and library symbol tables.
3194 (som_build_and_write_symbol_table): Use new function to derive misc
3195 symbol information.
3196 (som_slurp_symbol_table): Update backend private data for symbols
3197 appropriately.
3198 (som_bfd_prep_for_ar_write): New function.
3199 (som_bfd_ar_symbol_hash): New function.
3200 (som_bfd_ar_write_symbol_stuff): New function.
3201 (som_write_armap): Flesh out.
3202 (som_vec): Fix ar padding character.
3203
3204 * som.c: Consistently use memset rather than bzero.
3205
3206 Mon Feb 14 17:02:28 1994 Stu Grossman (grossman at cygnus.com)
3207
3208 * coff-rs6000.c: Add Lynx core file support, use HOST_AIX, where
3209 appropriate.
3210 * rs6000-core.c: Use HOST_AIX instead of COREFILES_PLEASE.
3211 * config/rs6000.mh: Remove defs of ARCHIVES_PLEASE and
3212 COREFILES_PLEASE.
3213 * config/rs6000lynx.mh: Turn on Lynx core file support.
3214 * hosts/rs6000.h: #define HOST_AIX.
3215 * hosts/rs6000lynx.h: Create this to enable Lynx host support.
3216
3217 Sun Feb 13 14:30:00 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3218
3219 * som.h (som_symbol_data): Safely access backend private data
3220 for BFD symbols. All callers changed.
3221
3222 * Read-only SOM archive support.
3223 * som.c (som_bfd_count_ar_symbols): New helper function.
3224 (som_bfd_fill_in_ar_symbols): New helper function.
3225 (som_slurp_armap): New function to read a SOM LST.
3226
3227 * som.h: Include <lst.h> and <ar.h>.
3228
3229 Sat Feb 12 22:34:14 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3230
3231 * elfcode.h (elf_map_symbols): Fix typo.
3232 (write_object_contents): Check return values from prep_headers and
3233 elf_compute_section_file_positions.
3234 (set_section_contents): Likewise.
3235
3236 Fri Feb 11 16:56:50 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3237
3238 * archive.c (normalize) [VMS]: Call malloc, not bfd_xmalloc.
3239 (bfd_construct_extended_name_table): Check result of normalize.
3240
3241 Tue Feb 8 08:57:31 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3242
3243 Make all callers of malloc or realloc (including via obstacks)
3244 check the result for NULL. Most set bfd_error to no_memory and
3245 return in that case; a few are harder to fix, and are marked
3246 with "FIXME <return type>".
3247
3248 * elf32-hppa.c (hppa_elf_build_arg_reloc_stub
3249 hppa_elf_build_long_branch_stub): Check bfd_make_empty_symbol return.
3250 * linker.c (_bfd_generic_link_output_symbols
3251 _bfd_generic_link_write_global_symbol): Ditto
3252 * section.c (bfd_make_section_anyway): Ditto.
3253
3254 * tekhex.c (find_chunk tekhex_mkobject): Check bfd_alloc.
3255 (first_phase): Ditto. FIXME void
3256 (tekhex_make_empty_symbol): Check bfd_zalloc.
3257
3258 * sunos.c (sunos_read_dynamic_info): Check bfd_zalloc.
3259 (MY(read_dynamic_symbols) MY(read_dynamic_relocs)): Check bfd_alloc.
3260
3261 * stringhash.c (_bfd_stringtab_hash_newfunc): Check bfd_hash_allocate.
3262
3263 * srec.c: Indent.
3264 (fillup_symbols): Check bfd_alloc. FIXME void
3265 (srec_mkobject srec_get_section_contents
3266 srec_set_section_contents): Check bfd_alloc.
3267 (srec_make_empty_symbol): Check bfd_zalloc.
3268
3269 * som.c (hppa_som_gen_reloc_type): Check bfd_alloc_by_size_t.
3270 (make_unique_section): Check bfd_alloc.
3271 (som_new_section_hook): Check bfd_zalloc.
3272 (bfd_som_attach_aux_hdr): Ditto. FIXME void
3273
3274 * rs6000-core.c (rs6000coff_core_p): Check bfd_zalloc.
3275
3276 * osf-core.c (osf_core_make_empty_symbol): Check bfd_zalloc.
3277 (osf_core_core_file_p): Check bfd_alloc.
3278
3279 * oasys.c (oasys_slurp_symbol_table oasys_archive_p
3280 oasys_mkobject oasys_object_p oasys_new_section_hook
3281 oasys_set_section_contents): Check bfd_alloc.
3282 (oasys_slurp_section_data): Check bfd_zalloc and bfd_alloc.
3283 (oasys_make_empty_symbol): Check bfd_zalloc.
3284
3285 * nlmcode.h (nlm_make_empty_symbol): Check bfd_zalloc.
3286 (nlm_slurp_symbol_table): Check bfd_zalloc and bfd_alloc.
3287
3288 * nlm32-sparc.c (nlm_sparc_read_import): Check bfd_alloc.
3289
3290 * nlm32-i386.c (nlm_i386_read_import): Check bfd_alloc.
3291
3292 * nlm32-alpha.c (nlm_alpha_read_import): Check bfd_alloc.
3293
3294 * linker.c (_bfd_link_hash_newfunc
3295 (generic_link_hash_newfunc
3296 (archive_hash_newfunc
3297 (_bfd_generic_link_add_one_symbol): Check bfd_hash_allocate.
3298 (_bfd_generic_final_link
3299 (_bfd_generic_link_output_symbols
3300 (default_indirect_link_order): Check bfd_alloc.
3301 (bfd_new_link_order): Check bfd_alloc_by_size_t.
3302
3303 * irix-core.c (irix_core_make_empty_symbol): Check bfd_zalloc.
3304
3305 * ieee.c: Indent.
3306 (read_id get_symbol get_section_entry ieee_archive_p ieee_object_p
3307 ieee_slurp_section_data ieee_new_section_hook): Check bfd_alloc.
3308 (do_one): Check bfd_alloc. Return a boolean.
3309 (ieee_slurp_section_data): Check it.
3310 (init_for_output): Check bfd_alloc. Return a boolean.
3311 (ieee_set_section_contents): Check it.
3312 (do_with_relocs): Check bfd_alloc. Return a boolean.
3313 (ieee_bfd_debug_info_accumulate): Ditto. FIXME void.
3314 (ieee_mkobject): Check bfd_zalloc.
3315 (ieee_make_empty_symbol): Check bfd_zmalloc.
3316
3317 * hpux-core.c (hpux_core_make_empty_symbol): Check
3318 bfd_zalloc.
3319
3320 * hppabsd-core.c (hppabsd_core_make_empty_symbol): Check
3321 bfd_zalloc.
3322 (hppabsd_core_core_file_p): Check bfd_zalloc.
3323
3324 * hp300hpux.c (MY(slurp_symbol_table)): Check bfd_alloc.
3325
3326 * elfcode.h (elf_new_section_hook): Check bfd_alloc.
3327 (bfd_section_from_phdr): Ditto.
3328 (write_relocs): Ditto. FIXME void
3329 (elf_map_symbols assign_section_numbers map_program_segments):
3330 Ditto. Return a boolean.
3331 (swap_out_syms): Ditto. Check elf_map_symbols.
3332 (elf_slurp_symbol_table): Check bfd_zalloc.
3333 (elf_slurp_reloca_table): Check bfd_alloc.
3334 (elf_slurp_reloc_table): Ditto.
3335 (elf_compute_section_file_positions): Check assign_section_numbers.
3336 (assign_file_positions_except_relocs): Return a boolean.
3337 Check map_program_segments.
3338 (elf_compute_section_file_positions): Check it.
3339
3340 * elf32-mips.c (mips_elf_final_link): Check bfd_alloc.
3341
3342 * elf32-hppa.c (hppa_elf_stub_branch_reloc): Check bfd_zmalloc and
3343 realloc.
3344 (hppa_elf_stub_reloc): Ditto.
3345 (hppa_elf_build_arg_reloc_stub): Check bfd_zalloc.
3346 (hppa_elf_build_long_branch_stub): Ditto.
3347 (elf32_hppa_backend_symbol_table_processing): Ditto.
3348
3349 * ecoff.c (ecoff_set_symbol_info): Check bfd_alloc. Return a boolean.
3350 (ecoff_slurp_symbol_table): Check it.
3351 (ecoff_slurp_armap): Check bfd_alloc.
3352 (ecoff_write_armap): Check bfd_zalloc.
3353 (ecoff_link_hash_newfunc): Check bfd_hash_allocate and
3354 _bfd_link_hash_newfunc.
3355 (ecoff_link_add_externals): Check bfd_alloc.
3356
3357 * ctor.c (bfd_constructor_entry): Check bfd_alloc.
3358
3359 * coffgen.c (coff_real_object_p): Check bfd_alloc.
3360 (coff_renumber_symbols): Check bfd_alloc_by_size_t. Return a boolean.
3361 (coff_write_symbol): Check bfd_alloc. FIXME int
3362 (coff_write_linenumbers): Check bfd_alloc. Return a boolean.
3363 (coff_section_symbol): Check bfd_alloc_by_size_t.
3364 (coff_get_normalized_symtab): Check bfd_alloc.
3365 (coff_bfd_make_debug_symbol): Check bfd_zalloc.
3366 * libcoff-in.h: Change decls of coff_renumber_symbols,
3367 coff_write_linenumbers.
3368 * libcoff.h: Rebuilt.
3369 * coffcode.h (coff_write_object_contents): Check
3370 coff_renumber_symbols, coff_write_linenumbers.
3371
3372 * coffcode.h: Indent.
3373 (coff_add_missing_symbols): Check bfd_alloc_by_size_t. Return a
3374 boolean.
3375 (coff_write_object_contents): Check it.
3376
3377 * coff-alpha.c (alpha_relocate_section): Check bfd_alloc.
3378 * coff-mips.c (mips_relocate_section): Ditto.
3379
3380 * archive.c (bfd_slurp_bsd_armap_f2): Check bfd_alloc value.
3381 (do_slurp_bsd_armap): Ditto.
3382 (compute_and_write_armap): Check bfd_realloc value.
3383
3384 * aoutx.h (translate_from_native_sym_flags): Check bfd_alloc
3385 return value. Return boolean value.
3386 (NAME(aout,make_empty_symbol)): Check bfd_zalloc return value.
3387 (NAME(aout,slurp_symbol_table)): Check bf_alloc and bfd_zalloc
3388 return value.
3389 (add_to_stringtab): Ditto. FIXME void
3390 (aout_link_hash_newfunc): Check bfd_hash_allocate return value.
3391 (aout_link_add_symbols): Check bfd_alloc value.
3392 (translate_symbol_table): Check translate_from_native_sym_flags.
3393 * hp300hpux.c (MY(slurp_symbol_table)): Ditto.
3394 * aoutx.h (aout_link_hash_newfunc): Check _bfd_link_hash_newfunc.
3395
3396 * opncls.c (bfd_zalloc bfd_realloc): Check result of bfd_alloc.
3397
3398 * opncls.c (obstack_chunk_alloc): Define as malloc, not
3399 bfd_xmalloc_by_size_t.
3400 (_bfd_new_bfd): Check obstack_begin for 0 return.
3401
3402 * ieee.c (obstack_chunk_alloc): Define as malloc, not
3403 bfd_xmalloc_by_size_t.
3404 (ieee_archive_p): Check obstack_begin for 0 return and
3405 obstack_finish for NULL return.
3406
3407 * hash.c (obstack_chunk_alloc): Define as malloc, not
3408 bfd_xmalloc_by_size_t.
3409 (bfd_hash_table_init_n): Check obstack_begin for 0 return and
3410 obstack_finish for NULL return.
3411 (bfd_hash_lookup): Check obstack_alloc for NULL return.
3412
3413 * ecofflink.c (obstack_chunk_alloc): Define as malloc, not
3414 bfd_xmalloc_by_size_t.
3415 bfd_ecoff_debug_accumulate
3416 bfd_ecoff_debug_accumulate_other): Check obstack_alloc.
3417 (add_file_shuffle add_memory_shuffle): Check obstack_alloc for
3418 NULL return. Return boolean, not void.
3419 (bfd_ecoff_debug_init): Check obstack_begin for 0 return.
3420 (bfd_ecoff_debug_accumulate): Check add_file_shuffle
3421 and add_memory_shuffle return.
3422 (string_hash_newfunc): Check bfd_hash_allocate and bfd_hash_newfunc.
3423 (bfd_ecoff_debug_accumulate): Check bfd_alloc.
3424 (ecoff_add_string): Check add_memory_shuffle return.
3425
3426 * libbfd-in.h (xmalloc, bfd_xmalloc, bfd_xmalloc_by_size_t):
3427 Remove decls.
3428 * libbfd.h: Rebuilt.
3429
3430 Fri Feb 11 15:35:32 1994 Stu Grossman (grossman at cygnus.com)
3431
3432 * configure.host: Add Lynx/rs6000 support.
3433 * config/i386-nlm.mt: Enable a.out file support.
3434 * config/rs6000lynx.mh: Lynx/rs6000 host support.
3435
3436 Fri Feb 11 17:25:58 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3437
3438 * archive.c (compute_and_write_armap): Rewrite somewhat to improve
3439 memory usage.
3440
3441 Fri Feb 11 13:10:42 1994 Stan Shebs (shebs@andros.cygnus.com)
3442
3443 * archive.c: Change all references to '\n' in archive magic
3444 to '\012', for greater portability.
3445 * ecoff.c (ecoff_write_armap): Ditto.
3446
3447 Thu Feb 10 12:58:48 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3448
3449 * aoutx.h (aout_link_write_other_symbol): Check strip settings to
3450 see whether symbol should be output.
3451 * genlink.h (struct generic_write_global_symbol_info): Added info
3452 field.
3453 * linker.c (_bfd_generic_final_link): Initialize wginfo.info.
3454 (_bfd_generic_link_write_global_symbol): Check strip settings to
3455 see whether symbol should be output.
3456 * elf32-mips.c (mips_elf_final_link): Initialize wginfo.info.
3457
3458 Wed Feb 9 21:34:58 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3459
3460 * som.c (som_reloc_queue_find): Do not examine a NULL queue entry.
3461
3462 * som.c: Cast return values from BFD memory allocation routines to
3463 avoid warnings from the HP compiler.
3464
3465 Wed Feb 9 12:55:02 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3466
3467 * coff-alpha.c (alpha_relocate_section): Accept a LITERAL
3468 reloc on an "ldl" instruction too.
3469
3470 * archive.c (bfd_ar_hdr_from_filesystem): Cast status elements
3471 when passing them to sprintf. Use %ld instead of %d.
3472
3473 * coff-rs6000.c (rs6000coff_mkarchive): Return false.
3474 (rs6000_coff_snarf_ar_hdr): Don't declare errno; it's not used.
3475 Also removed unused variable namelen.
3476 (rs6000coff_write_armap): Declare orl_count and stridx parameters.
3477
3478 Tue Feb 8 18:00:34 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3479
3480 * libbfd-in.h (xmalloc): Don't declare parameter type, to avoid
3481 conflicts.
3482 * libbfd.h: Rebuilt.
3483
3484 Tue Feb 8 15:55:50 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
3485
3486 * coff-alpha.c (reloc_nil): New function.
3487 (alpha_howto_table): Use it as special_function to prevent certain
3488 relocs from being adjusted by bfd_perform_relocation. IGNORE
3489 reloc should be partial_inplace.
3490 (alpha_ecoff_get_relocated_section_contents): Accept a LITERAL
3491 reloc on an "ldl" instruction too.
3492
3493 Tue Feb 8 00:32:28 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
3494
3495 * elf32-hppa.c (CURRENT_STUB_OFFSET, hppa_elf_build_arg_reloc_stub,
3496 hppa_elf_build_long_branch_stub): Cast to char * instead of int
3497 before performing pointer arithmetic.
3498
3499 Mon Feb 7 20:56:27 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3500
3501 * config.bfd (hppa*-*-osf*): Use bfd_name hppaosf for this
3502 configuration.
3503 (hppa*-*-*elf*): This configuration used hppa-elf now.
3504
3505 * som.c: This file is also used for HOST_HPPAOSF.
3506
3507 * targets.c (bfd_target_vector): Enable som_vec for HOST_HPPAOSF.
3508
3509 * hosts/hppaosf.h: New host configuration file.
3510
3511 * config/hppabsd.mt (SELECT_VECS): Add bfd_elf32_hppa_vec as
3512 BSD handles both SOM and ELF object files.
3513
3514 * config/hppaosf.mh (HDEFINES): Delete. No longer needed.
3515 (RANLIB): Doesn't do anything, define it to be "echo".
3516
3517 * config/hppaosf.mt: New target makefile fragment for a PA running
3518 OSF1.
3519
3520 Mon Feb 7 15:02:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3521
3522 * archures.c (enum bfd_architecture): Added bfd_arch_powerpc.
3523 (archures_init_table): If SELECT_ARCHITECTURES is not defined,
3524 added bfd_powerpc_arch.
3525 * bfd-in2.h: Rebuilt.
3526 * cpu-powerpc.c: New file.
3527 * Makefile.in (ALL_MACHINES, CFILES): Added cpu-powerpc.c.
3528 Rebuilt dependencies.
3529
3530 * elfcode.h (bfd_section_from_shdr): Get vma and alignment_power
3531 of an SHT_STRTAB section from sh_addr and sh_addralign, rather
3532 than just setting them to zero.
3533
3534 Sun Feb 6 20:04:10 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3535
3536 * elfcode.h (prep_headers, swap_out_syms): Check for NULL return
3537 from bfd_new_strtab.
3538 (elf_compute_section_file_positions): Check for false return from
3539 swap_out_syms.
3540
3541 * linker.c (default_indirect_link_order): Check for NULL return
3542 from bfd_get_relocated_section_contents.
3543
3544 * syms.c: Make example application in doc call xmalloc, not
3545 bfd_xmalloc.
3546
3547 * aoutx.h (NAME(aout,slurp_symbol_table),
3548 aout_link_get_symbols, NAME(aout,link_hash_table_create)):
3549 * bout.c (b_out_slurp_reloc_table, b_out_squirt_out_relocs):
3550 * ecoff.c (ecoff_bfd_link_hash_table_create):
3551 * ecofflink.c (bfd_ecoff_debug_init):
3552 * format.c (bfd_check_format_matches):
3553 * linker.c (_bfd_generic_link_hash_table_create):
3554 (_bfd_generic_final_link):
3555 * reloc16.c (bfd_coff_reloc16_relax_section):
3556 (bfd_coff_reloc16_get_relocated_section_contents):
3557 * elf32-hppa.c (hppa_elf_build_arg_reloc_stub):
3558 * elf32-mips.c (mips_elf_final_link):
3559 * elfcode.h (bfd_new_strtab):
3560 (bfd_add_2_to_strtab):
3561 (elf_slurp_symbol_table):
3562 (elf_corefile_note):
3563 * libbfd.c (bfd_zmalloc):
3564 Use malloc and check the result, instead of bfd_xmalloc.
3565
3566 Sat Feb 5 12:39:28 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
3567
3568 * config.bfd: Put m68*-*-sysv* line after m68*-*-sysv4*.
3569
3570 Sat Feb 5 05:32:44 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
3571
3572 * srec.c (srec_write_record): Put CONST keyword for "src" before
3573 "unsigned", some compilers don't like it after "unsigned".
3574 * libcoff.h, libcoff-in.h (bfd_perform_slip): Rename "value" to
3575 "val" in prototype declaration because some compilers don't like
3576 arguments whose names are the same as types.
3577
3578 Sat Feb 5 01:14:38 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3579
3580 * aoutx.h (aout_link_check_ar_symbols): Correct test for whether
3581 object file defines symbol. Also, if skipping a symbol, skip the
3582 second symbol of a N_WARNING or N_INDR symbol as well.
3583
3584 Fri Feb 4 23:55:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3585
3586 Add basic support for writing RS/6000 XCOFF files.
3587 * coff-rs6000.c (dummy_reloc): Removed.
3588 (rs6000coff_howto_table): Defined XCOFF relocs.
3589 (RTYPE2HOWTO): Defined to use rs6000coff_rtype2howto.
3590 (rs6000coff_rtype2howto): New function.
3591 (coff_bfd_reloc_type_lookup): Defined to use
3592 rs6000coff_reloc_type_lookup.
3593 (rs6000coff_reloc_type_lookup): New function.
3594 (SELECT_RELOC): Defined to set r_type and r_size fields.
3595 (COFF_LONG_FILENAMES): Defined.
3596 * coffcode.h (combined_entry_type): Changed fix_tag and fix_end
3597 fields to bitfields. Added fields fix_value and fix_scnlen.
3598 (sec_to_styp_flags): If STYP_DEBUG is defined, use it rather than
3599 STYP_INFO for the type of a section named .debug.
3600 (coff_add_missing_symbols): Don't define if RS6000COFF_C.
3601 (coff_write_object_contents): If RS6000COFF_C, don't call
3602 coff_add_missing_symbols.
3603 (coff_slurp_symbol_table): If RS6000COFF_C, then if the last aux
3604 entry has type STY_LD change the x_scnlen into a pointer to a
3605 symbol and set fix_scnlen. Also, for a C_BSTAT symbol, change the
3606 value into a pointer to a symbol and set fix_value.
3607 * libcoff.h: Rebuilt.
3608 * coffgen.c (coff_mangle_symbols): Reindent. If fix_value is set,
3609 get the symbol offset. Likewise for fix_scnlen.
3610 (string_size): Change type to bfd_size_type.
3611 (debug_string_size, debug_string_section): New static variables.
3612 (coff_fix_symbol_name): If bfd_coff_symname_in_debug returns true,
3613 write the symbol name into the .debug section; assume that the
3614 section has already been created with the right size.
3615 (coff_write_symbols): Initialize debug_string_size to 0. If
3616 bfd_coff_symname_in_debug returns true, don't put symbol name in
3617 usual string table. After writing out all symbols, if
3618 debug_string_size is not 0, check that it matches the size of the
3619 .debug section.
3620 (coff_get_normalized_symtab): Clear new fix_value and fix_scnlen
3621 fields. If the string offset is 0, always use an empty string as
3622 the name.
3623 (coff_make_empty_symbol): Zero out the symbol structure.
3624 * reloc.c (bfd_perform_relocation): Work around one gross hack
3625 with another: actually look at the target name to avoid the broken
3626 COFF check.
3627 (bfd_reloc_code_real_type): Add BFD_RELOC_PPC_B26,
3628 BFD_RELOC_PPC_BA26 and BFD_RELOC_PPC_TOC16.
3629 * bfd-in2.h: Rebuilt.
3630
3631 Fri Feb 4 17:28:32 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3632
3633 * libbfd.c (bfd_zmalloc): Call bfd_xmalloc instead of malloc.
3634 (bfd_xmalloc, bfd_xmalloc_by_size_t): Functions deleted.
3635 * libbfd-in.h: Define them as macros calling xmalloc and declare
3636 xmalloc.
3637 * libbfd.h: Rebuilt.
3638
3639 Thu Feb 3 16:49:35 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3640
3641 * ecofflink.c (bfd_ecoff_debug_externals): If a small undefined
3642 symbol has a value in the ECOFF symbol but not in the BFD symbol,
3643 keep the value in the ECOFF symbol. This helps gas.
3644
3645 * linker.c (_bfd_generic_link_output_symbols,
3646 _bfd_generic_link_write_global_symbol): Don't require that all
3647 references to a common symbol be themselves common symbols.
3648
3649 * aoutx.h (aout_reloc_index_to_section): Handle N_UNDF.
3650
3651 Wed Feb 2 20:37:19 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
3652
3653 * libbfd.c, bfd-in.h, hosts/alphaosf.h, hosts/sparc-ll.h, aoutf1.h,
3654 sparclynx.c, Makefile.in: Change HOST_64_BIT to BFD_HOST_64_BIT.
3655 * bfd-in2.h: Rebuilt.
3656
3657 Wed Feb 2 12:30:13 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3658
3659 * coffswap.h (coff_swap_reloc_out): If RS6000COFF_C, handle type
3660 and size correctly.
3661 (coff_swap_aux_in): If RS6000COFF_C, change x_csect.x_scnlen to
3662 x_csect.x_scnlen.l to match change in coff/internal.h.
3663 (coff_swap_aux_out): Likewise.
3664
3665 * coff-mips.c (mips_ecoff_backend_data), coff-alpha.c
3666 (alpha_ecoff_backend_data): Change casts of aux_in and aux_out
3667 fields to match yesterday's changes.
3668
3669 * coffcode.h (coff_write_relocs): If SELECT_RELOC is defined, pass
3670 in the internal_reloc itself, not the type.
3671 * coff-apollo.c, coff-h8300.c, coff-h8500.c, coff-i386.c,
3672 coff-m68k.c, coff-sh.c, coff-we32k.c, coff-z8k.c: Changed
3673 definition of SELECT_RELOC accordingly.
3674
3675 Tue Feb 1 12:05:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3676
3677 * coffcode.h (bfd_coff_backend_data): Added new arguments to
3678 _bfd_coff_swap_aux_in and _bfd_coff_swap_aux_out: aux index number
3679 and number of aux entries.
3680 (bfd_coff_swap_aux_in, bfd_coff_swap_aux_out): Changed
3681 accordingly.
3682 * libcoff.h: Rebuilt.
3683 * coffswap.h (coff_swap_aux_in, coff_swap_aux_out): Accept new
3684 arguments. If RS6000COFF_C, only treat C_EXT and C_HIDEXT
3685 specially if this is the last aux entry.
3686 * coffgen.c (coff_write_symbol, coff_get_normalized_symtab): Pass
3687 new arguments to swap_aux functions.
3688
3689 Sun Jan 30 15:14:36 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
3690
3691 * gen-aout.c (main): Set DEFAULT_ARCH based on preprocessor macros
3692 (only testing for m68k and vax at the moment); do verify that the
3693 preprocessor didn't trash the arch name inside the string version.
3694 Don't print out "pagesize =" line that prevents output from
3695 compiling. Derive BYTES_IN_WORD and ARCH values from sizeof
3696 results.
3697 * Makefile.in (aout-params.h): Pass gen-aout a dummy target name.
3698 (check, installcheck): Identify directory in "no testsuites"
3699 message.
3700
3701 Sun Jan 30 13:25:28 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3702
3703 * aoutx.h (aout_link_write_symbols): Write out correct value for
3704 object file symbol.
3705
3706 Fri Jan 28 18:34:05 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
3707
3708 * hosts/vaxbsd.h (HOST_STACK_END_ADDR): Vax BSD doesn't define
3709 KERNBASE, so hard-code 0x80000000 instead.
3710
3711 Thu Jan 27 13:54:08 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3712
3713 * linker.c (generic_link_add_symbol_list): If symbol is common,
3714 set the BSF_OLD_COMMON flag.
3715
3716 Wed Jan 26 13:47:15 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3717
3718 * format.c (bfd_check_format_matches): Put the new entry in the
3719 correct element of matching_vector.
3720
3721 Tue Jan 25 11:43:28 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
3722
3723 * som.c, som.h (bfd_som_set_section_attributes,
3724 bfd_som_set_subsection_attributes): Change parameters from char
3725 to int. Following a prototype with an old-style function definition
3726 in the presence of widened parameters is a GCC-ism not supported
3727 by the HP compiler in ANSI mode.
3728
3729 Tue Jan 25 11:46:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3730
3731 * reloc.c (bfd_get_reloc_size): Size of type -2 is 4 bytes, not 2.
3732
3733 * hp300hpux.c (MY(write_object_contents)): Write out the symbols
3734 before writing out the relocs, so that the right symbol indices
3735 are used.
3736
3737 * archive.c (do_slurp_bsd_armap, bfd_slurp_bsd_armap_f2): Do not
3738 try to overlay the internal carsyms on the external symdefs. That
3739 can not work if the size of a host pointer is larger than 4 bytes.
3740
3741 * format.c (bfd_check_format_matches): Cast result of
3742 bfd_xmalloc_by_size_t.
3743 * opncls.c (_bfd_new_bfd): Avoid ANSI C prototype.
3744
3745 * archive.c: Reindented to GNU standards.
3746
3747 Mon Jan 24 14:41:23 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3748
3749 * opncls.c (_bfd_new_bfd, _bfd_new_bfd_contained_in): Add
3750 "_bfd_" to function names.
3751 * archive.c (_bfd_create_empty_archive_element_shell),
3752 libbfd-in.h: Change callers.
3753
3754 * libbfd.c (bfd_zmalloc): Renamed from zalloc.
3755 * libbfd.c (bfd_add_to_string_table),
3756 trad-core.c (trad_unix_core_file_p),
3757 targets.c (bfd_target_list),
3758 ptrace-core.c (ptrace_unix_core_file_p),
3759 opncls.c (new_bfd), libbfd-in.h,
3760 ieee.c (ieee_make_empty_symbol),
3761 elf32-hppa.c (hppa_elf_stub_branch_reloc),
3762 (hppa_elf_stub_reloc): Change callers.
3763 * libbfd.h: Regenerated.
3764
3765 * archive.c (_bfd_look_for_bfd_in_cache): Add "_bfd_" to name.
3766 (_bfd_get_elt_at_filepos),
3767 coff-rs6000.c (rs6000coff_get_elt_at_filepos), libbfd-in.h:
3768 Change callers.
3769
3770 * format.c (bfd_check_format_matches), libbfd-in.h, targets.c,
3771 elfcode.h (elf_object_p): Rename target_vector to bfd_target_vector
3772 and default_vector to bfd_default_vector.
3773 * libbfd.h: Regenerated.
3774
3775 * format.c (bfd_check_format_matches): New function.
3776 (bfd_check_format): Call it.
3777 (bfd_matching_formats): Function removed.
3778 * targets.c: Replace the vector added on Jan 21 with a count of
3779 entries in default_vector.
3780 * bfd-in2.h: Regenerated.
3781
3782 Mon Jan 24 12:38:54 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3783
3784 * coff-alpha.c (alpha_ecoff_object_p): New function. Set size of
3785 .pdata section based on lnnoptr field, not section header.
3786 (alpha_relocate_section): Don't bother to check if r_symndx >= 0,
3787 since it is unsigned.
3788 (ecoffalpha_little_vec): Use alpha_ecoff_object_p rather than
3789 coff_object_p.
3790 * ecoff.c (ecoff_new_section_hook): Set alignment_power field of
3791 .pdata section to 3.
3792 (ecoff_compute_section_file_positions): Save the size of the
3793 .pdata section in the line_filepos field, and actually align the
3794 .pdata section to an alignment power of 4.
3795 (ecoff_compute_reloc_file_positions): Set output_has_begun after
3796 calling ecoff_compute_section_file_positions.
3797 (ecoff_write_object_contents): Set s_lnnoptr for the .pdata
3798 section from the line_filepos field. Set vstamp for the optional
3799 header from the vstamp of the symbolic header.
3800 (ecoff_bfd_final_link): Set vstamp of the symbolic header to the
3801 vstamp used by the first object file in the link.
3802
3803 * ecofflink.c (ecoff_align_debug): Align RFDs to debug_align.
3804
3805 * linker.c (generic_link_check_achive_element): Set SEC_ALLOC flag
3806 for a created common section.
3807 (_bfd_generic_link_add_one_symbol): Likewise.
3808
3809 * elfcode.h (swap_out_syms): Use elf_section_from_bfd_section to
3810 get the index of a common section, rather than always using
3811 SHN_COMMON (MIPS has multiple common sections).
3812
3813 * elf32-hppa.c (hppa_elf_gen_reloc_type): Typo (== for =).
3814
3815 * bfd/aoutx.h (aout_link_input_section_std,
3816 aout_link_input_section_ext): Pass additional arguments to
3817 reloc_overflow callback.
3818 * coff-alpha.c (alpha_ecoff_get_relocated_section_contents,
3819 alpha_relocat_section): Likewise.
3820 * coff-h8300.c (h8300_reloc16_extra_cases): Likewise.
3821 * coff-h8500.c (extra_case): Likewise.
3822 * coff-mips.c (mips_relocate_section): Likewise.
3823 * coff-z8k.c (extra_case): Likewise.
3824 * elf32-hppa.c (hppa_elf_stub_finish): Likewise.
3825 * reloc.c (bfd_generic_get_relocated_section_contents): Likewise.
3826
3827 * bout.c (calljx_callback, callj_callback): Use get_value to get
3828 the symbol value and check for undefined symbols.
3829 (get_value): If the symbol is undefined, look it up in the linker
3830 hash table.
3831 (b_out_get_relocated_section_contents): For PCREL24 and PCREL13
3832 use get_value to get the symbol value and check for undefined
3833 symbols.
3834 * reloc16.c (bfd_coff_reloc16_get_value): If the symbol is
3835 undefined, look it up in the linker hash table.
3836
3837 * aoutx.h (translate_symbol_table): The string index 0 has a
3838 special meaning for normal symbols, but not for dynamic symbols.
3839
3840 Sat Jan 22 12:26:01 1994 Stu Grossman (grossman at cygnus.com)
3841
3842 * sparclynx.c: Setup appropriate macros to enable core file
3843 support.
3844
3845 Fri Jan 21 16:25:35 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3846
3847 * targets.c: Add a vector of matching format names.
3848 * format.c (bfd_matching_formats): New function to return it.
3849 (bfd_check_format): Set it.
3850 * bfd-in2.h: Regenerated.
3851
3852 * bfd-in.h: Remove decls of bfd_ec type and error printing functions.
3853 Remove decl of type symclass; wasn't used.
3854 * bfd.c: Document error handling, including code fragments
3855 containing the error decls that were in bfd-in.h.
3856 Remove DEFUNs.
3857 * bfd-in2.h: Regenerated.
3858
3859 Fri Jan 21 14:11:16 1994 Sean Fagan (sef@cygnus.com)
3860
3861 * nlmcode.h, liblnm.h, nlm32-alpha.c nlm32-i386.c nlm32-sparc.c:
3862 The sparc (and possibly other?) NLM format requires a different
3863 way to write exports, so add a write_export field to the backend
3864 data (and set it to NULL for everything but the sparc).
3865
3866 Fri Jan 21 14:11:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
3867
3868 * sunos.c (MY(read_dynamic_relocs)): Compare info->dynrel with NULL,
3869 not (struct external_nlist *) NULL. info->dynrel is a PTR, not
3870 a struct external_nlist *.
3871
3872 Fri Jan 21 09:29:01 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3873
3874 * bfd.c: Remove error strings for errors removed below.
3875 * aoutx.h (translate_to_native_sym_flags), bfd-in.h (bfd_ec),
3876 oasys.c (oasys_write_sections): Rename
3877 bfd_error_nonrepresentable_section to nonrepresentable_section.
3878 None of the other bfd error names start with "bfd_error".
3879 Remove errors symbol_not_found and no_relocation_info, which seem
3880 to be unused.
3881 * bfd-in2.h: Regenerated.
3882
3883 Fri Jan 21 01:11:55 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3884
3885 * bfd.c (bfd_get_gp_size): Added support for ELF.
3886
3887 * syms.c (BSF_DYNAMIC): New symbol flag.
3888 (bfd_print_symbol_vandf): Print it.
3889 * bfd-in2.h: Rebuilt.
3890 * libaout.h (struct aout_backend_data): New read_dynamic_symbols
3891 and read_dynamic_relocs fields.
3892 (struct aoutdata): New dynamic_info field.
3893 (obj_aout_dynamic_info): New accessor macro.
3894 * sunos.c (struct sunos_dynamic_info): New structure.
3895 (sunos_read_dynamic_info, MY(read_dynamic_symbols),
3896 MY(read_dynamic_relocs)): New functions to read dynamic symbols
3897 and relocs.
3898 * aoutx.h (NAME(aout,some_aout_object_p)): If the object is
3899 dynamically linked, set SEC_RELOC for both the .text and .data
3900 sections.
3901 (translate_from_native_sym_flags): Don't set BSF_LOCAL for an
3902 undefined symbol.
3903 (translate_symbol_table): New function, split out of
3904 slurp_symbol_table; set the BSF_DYNAMIC flag appropriately.
3905 (NAME(aout,slurp_symbol_table)): Read dynamic symbols, if any.
3906 (NAME(aout,slurp_reloc_table)): Read dynamic relocs, if any.
3907 (NAME(aout,get_reloc_upper_bound)): Include dynamic reloc count in
3908 return value.
3909 * aoutf1.h (NAME(aout,sunos4_write_object_contents)): Don't write
3910 out dynamic symbols or relocs against reloc symbols, since they
3911 are already in the .text section and we wouldn't know where to
3912 write them anyhow.
3913 (sunos4_aout_backend): Initialize read_dynamic_symbols and
3914 read_dynamic_relocs fields.
3915 * aout-target.h (MY(backend_data)): Initialize
3916 read_dynamic_symbols and read_dynamic_relocs fields.
3917
3918 Thu Jan 20 20:57:27 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
3919
3920 * hosts/alphaosf.h (uint64e_type, uint64_type, int64_type): Delete
3921 typedefs, since HOST_64_BIT will take care of defining them in
3922 bfd.h.
3923
3924 Wed Jan 19 17:28:59 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
3925
3926 * config/alphaosf.mh (HDEFINES): Don't define HOST_64_BIT here;
3927 that's dealt with elsewhere.
3928 * hosts/alphaosf.h (sprintf_vma, fprintf_vma): New macros.
3929 (uint64_typeHIGH, uint64_typeLOW): Comment with HOST_64_BIT so
3930 they get copied to bfd.h.
3931
3932 * reloc.c (enum bfd_reloc_code_real): Add some Alpha relocation
3933 types. Reorganized some of the existing ones.
3934 * coff-alpha.c (alpha_howto_table): Construct 64-bit negative one
3935 values in case of compilation on a 32-bit machine. Fix pcrel
3936 fields of some reloc types.
3937 (alpha_bfd_reloc_type_lookup): Handle more relocation types.
3938
3939 * bfd-in.h (uint64_typeHIGH, uint64_typeLOW): Supply default
3940 definitions when not defined, regardless of whether uint64_type is
3941 a defined macro or not.
3942 (fprintf_vma, sprintf_vma): Define only if fprintf_vma is not
3943 already defined.
3944
3945 Wed Jan 19 00:02:54 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3946
3947 * aoutx.h (translate_to_native_sym_flags): Set the type of a
3948 BSF_WARNING symbol to N_WARNING.
3949
3950 Tue Jan 18 16:43:19 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3951
3952 * aoutx.h (aout_link_add_symbols): Increment sym_hash as well as p
3953 for an indirect or warning symbol.
3954 (aout_link_write_symbols): Update sym_hash with the target of an
3955 indirect or warning symbol. If an indirect symbol is defined,
3956 output the calculated value and don't output the target symbol.
3957
3958 Tue Jan 18 03:54:59 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3959
3960 * aoutx.h (translate_from_native_sym_flags): Give warning symbols
3961 an (unused) nonzero section value, needed for check below.
3962
3963 Mon Jan 17 15:12:07 1994 David J. Mackenzie (djm@thepub.cygnus.com)
3964
3965 * aoutx.h (translate_from_native_sym_flags,
3966 aout_link_add_symbols): Treat N_SET[ABDT] | N_EXT like
3967 N_SET[ABDT].
3968
3969 Fri Jan 14 16:45:43 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3970
3971 * elfcode.h (elf_object_p): If there is a SHT_DYNAMIC section, set
3972 the DYNAMIC flag for the BFD.
3973 (NAME(bfd_elf,write_object_contents)): Don't try to write out a
3974 BFD with the DYNAMIC flag set, since we don't generate the program
3975 header table correctly.
3976
3977 Fri Jan 14 01:04:36 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
3978
3979 * elfcode.h (elf_slurp_symbol_table): Free x_symp at the end
3980 of the function to avoid storage leak.
3981
3982 Thu Jan 13 23:07:32 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
3983
3984 * ecoff.c (ecoff_link_write_external): An ifd can be -1.
3985
3986 Thu Jan 13 12:33:27 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
3987
3988 * som.c (som_set_reloc_info): Provide a default symbol for
3989 relocations which don't actually have an associated symbol.
3990
3991 * som.c (hppa_som_reloc): Add new "error message" argument.
3992
3993 Wed Jan 12 13:36:43 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
3994
3995 Enable gdb to write to core files on more core file readers.
3996 * libbfd.c (bfd_generic_set_section_contents): Remove range check
3997 for section size, it is already done in bfd_set_section_contents
3998 with bfd_get_section_size_now.
3999 * aix386-core.c, hppabsd-core.c, hpux-core.c, irix-core.c,
4000 osf-core.c, ptrace-core.c, trad-core.c (*_set_section_contents):
4001 Use bfd_generic_set_section_contents instead of bfd_false.
4002
4003 Wed Jan 12 15:31:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4004
4005 * linker.c: Added initial documentation.
4006
4007 * linker.c (default_indirect_link_order): Don't expect space for
4008 output relocations if there aren't any input relocations.
4009
4010 Tue Jan 11 14:37:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4011
4012 * aoutx.h (NAME(aout,final_link)): Set a_entry before computing
4013 file offsets.
4014
4015 * elfcode.h (swap_out_syms): A common symbol is STT_OBJECT, not
4016 STT_NOTYPE.
4017
4018 Tue Jan 11 09:10:56 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
4019
4020 * config.bfd: Use ELF, not COFF for m88*-*-dgux*.
4021 Combine m88k-*-* and m88110-*-* cases into m88*-*-*.
4022
4023 Tue Jan 11 00:07:19 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4024
4025 * ecofflink.c: Extensive changes to compress and merge debugging
4026 information, and to write some of out directly rather than saving
4027 it in memory. Several new functions and structures, and new
4028 arguments to existing functions.
4029 * ecoff.c (ecoff_compute_reloc_file_positions): Compute
4030 sym_filepos as well.
4031 (ecoff_get_extr): Use ifdmap instead of ifdbase.
4032 (ecoff_write_object_contents): Don't compute sym_filepos here.
4033 Only output symbols if outsymbols is not NULL.
4034 (ecoff_bfd_final_link): Adjust for changes in ecoff_debug_info and
4035 bfd_ecoff_debug functions. Write out debugging information here.
4036 (ecoff_final_link_debug_accumulate): Adjust for changes in
4037 bfd_ecoff_debug functions.
4038 (ecoff_link_write_external): Use ifdmap rather than ifdbase.
4039 * elf32-mips.c (mips_elf_read_ecoff_info): Read external symbols
4040 first, to put them in the first memory buffer. Clear fdr field.
4041 (mips_elf_get_extr): Use pointer to unswapped external symbol.
4042 (mips_elf_final_link): Adjust for changes in bfd_ecoff functions.
4043 Preserve .text, .data and .bss even if they are empty. Save
4044 pointer to unswapped external symbol rather than copying it.
4045 Don't free up the external symbols.
4046 * libelf.h (elf_symbol_type): Change mips_extr to PTR.
4047 * bfd-in.h (bfd_ecoff_debug_init, bfd_ecoff_debug_free): Declare.
4048 (bfd_ecoff_debug_accumulate): Update declaration.
4049 (bfd_ecoff_debug_accumulate_other): Rename declaration from
4050 bfd_ecoff_debug_link_other and update.
4051 (bfd_ecoff_write_accumulated_debug): Declare.
4052 * bfd-in2.h: Rebuilt.
4053 * Makefile.in: Rebuilt dependencies.
4054
4055 Mon Jan 10 20:46:53 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
4056
4057 * Makefile.in (install): Remove "@" which follows a backslash. In
4058 this position it just causes errors, not suppresses echoes.
4059
4060 Mon Jan 10 09:06:21 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
4061
4062 * som.c (hppa_som_gen_reloc_type): Fix handling of LT and RT
4063 field selectors.
4064
4065 Sun Jan 9 04:32:25 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
4066
4067 * config/i386-netbsd.mt (SELECT_VECS): Include i386bsd_vec.
4068
4069 Fri Jan 7 10:27:27 1994 David J. Mackenzie (djm@rtl.cygnus.com)
4070
4071 * aoutx.h (adjust_z_magic): Don't merge the start of bss with the
4072 end of data if they are not contiguous.
4073
4074 * aoutf1.h (sunos4_aout_backend): Comment the fields' meanings.
4075
4076 Fri Jan 7 15:40:16 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4077
4078 * ecoff.c (ecoff_mkobject_hook): Don't set SEC_SHARED_LIBRARY flag
4079 for .reginfo section here.
4080 (ecoff_new_section_hook): Set it here instead.
4081
4082 Fri Jan 7 10:29:27 1994 Stan Shebs (shebs@andros.cygnus.com)
4083
4084 * bfd-in.h: (bfd_boolean): Add workaround for systems that also
4085 define true and false as enums.
4086 (ALMOST_STDC): Add as alternative to __STDC__.
4087 * bfd-in2.h: Rebuilt.
4088 * syms.c (bfd_print_symbol_vandf): Convert a PTR to FILE*.
4089
4090 Thu Jan 6 14:24:44 1994 David J. Mackenzie (djm@thepub.cygnus.com)
4091
4092 * aoutx.h (translate_to_native_sym_flags): Catch the case where
4093 there is no output section.
4094
4095 Thu Jan 6 14:37:42 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4096
4097 * nlmcode.h (nlm_object_p): If we can't read the fixed header,
4098 count it as a wrong format error, not a system call error, since
4099 the object file might simply be too small.
4100
4101 * targets.c (target_vector): Added nlm32_alpha_vec inside #ifdef
4102 BFD64.
4103 * Makefile.in (BFD32_BACKENDS): Remove nlm32-alpha.o.
4104 (BFD64_BACKENDS): Add nlm32-alpha.o. It depends on 64 bit
4105 support, even though it is for an Alpha in 32 bit mode.
4106 * configure.in (nlm32_alpha_vec): Set target64 to true.
4107
4108 * nlm32-gen.c, nlm64-gen.c: Removed. All nlm targets are
4109 different, so there is no point to providing a generic one.
4110 * libnlm.h: Don't bother to check for nlm_backend(bfd) being NULL
4111 in the backend accessor macros; that should no longer be possible.
4112 * targets.c (target_vector): Removed nlm32_big_generic_vec,
4113 nlm64_big_generic_vec, nlm64_little_generic_vec.
4114 * configure.in (nlm32_big_generic_vec, nlm32_little_generic_vec,
4115 nlm64_big_generic_vec, nlm64_little_generic_vec): Removed.
4116 * Makefile.in: Rebuilt dependencies, and
4117 (BFD32_BACKENDS): Removed nlm32-gen.o.
4118 (BFD64_BACKENDS): Removed nlm64-gen.o.
4119 (CFILES): Removed nlm32-gen.c and nlm64-gen.c.
4120
4121 * hp300hpux.c (ARCH_SIZE): Define before including aoutx.h.
4122
4123 * linker.c (_bfd_generic_link_add_one_symbol): Add constructor and
4124 bitsize arguments. Changed all callers (aoutx.h).
4125 * libbfd-in.h (_bfd_generic_link_add_one_symbol): Add constructor
4126 and bitsize arguments to declaration.
4127 * libbfd.h: Rebuilt.
4128
4129 * ecoff.c: First cut at new style of linker backend for
4130 ECOFF--added a bunch of functions. Also:
4131 (ecoff_sec_to_styp_flags): Set flags for .pdata and .xdata.
4132 (ecoff_slurp_symbolic_header): New function.
4133 (ecoff_slurp_symbolic_info): Call ecoff_slurp_symbolic_header.
4134 (ecoff_compute_reloc_file_positions): New function.
4135 (ecoff_set_section_contents): Get out quickly if count is zero.
4136 Check errors better.
4137 (ecoff_write_object_contents): Put .xdata section in data segment.
4138 Call ecoff_compute_reloc_file_positions. Don't output relocs or
4139 external symbols if outsymbols is NULL.
4140 (ecoff_bfd_final_link): Completely rewritten.
4141 * libecoff.h: Include bfdlink.h.
4142 (struct ecoff_backend_data): Add relocate_section field.
4143 (ecoff_data_type): Add sym_hashes and symndx_to_section fields.
4144 (struct ecoff_link_hash_entry): Define.
4145 (struct ecoff_link_hash_table): Define.
4146 (ecoff_bfd_link_add_symbols): Declare as function, not macro.
4147 (ecoff_bfd_link_hash_table_create): Likewise.
4148 * ecofflink.c (bfd_ecoff_debug_one_external): New function.
4149 (bfd_ecoff_debug_externals): Call bfd_ecoff_debug_one_external.
4150 * bfd-in.h (bfd_ecoff_debug_one_external): Declare.
4151 * bfd-in2.h: Rebuilt.
4152 * coff-alpha.c (alpha_howto_table): Mark BRADDR as
4153 partial_inplace, and set the src_mask to 0x1fffff.
4154 (alpha_ecoff_get_relocated_section_contents): Remove unused
4155 variable gp_warned.
4156 (alpha_convert_external_reloc): New static function.
4157 (alpha_relocate_section): New static function.
4158 (alpha_ecoff_backend_data): Initialize relocate_section field.
4159 * coff-mips.c (mips_relocate_refhi): New static function.
4160 (mips_relocate_section): New static function.
4161 (mips_ecoff_backend_data): Initialize relocate_section field.
4162
4163 * reloc.c (_bfd_relocate_contents): Corrected signed overflow
4164 checking when there is an addend.
4165
4166 * aoutx.h (NAME(aout,final_link)): Don't abort when trying to link
4167 a non a.out file, just pass it to _bfd_default_link_order.
4168 (aout_link_input_section_std): When doing a final PC relative link
4169 against a section symbol, subtract the VMA of the input section.
4170 (aout_link_input_section_ext): Likewise.
4171
4172 * linker.c (default_indirect_link_order): Renamed from
4173 _bfd_generic_indirect_link_order and made static.
4174 (_bfd_generic_final_link): Don't switch on link_order type, just
4175 call _bfd_default_link_order.
4176 (_bfd_default_link_order): Handle bfd_indirect_link_order type.
4177 * genlink.h: Removed declaration of
4178 _bfd_generic_indirect_link_order.
4179 * elf32-mips.c (mips_elf_final_link): Don't switch on link_order
4180 type, just call _bfd_default_link_order.
4181
4182 Tue Jan 4 21:23:37 1994 Ian Lance Taylor (ian@cygnus.com)
4183
4184 * linker.c (generic_link_check_archive_element): Base the name of
4185 the created common section on the name of the section the symbol
4186 came from.
4187 (_bfd_generic_link_add_one_symbol): (case BIG): A common symbol
4188 must have a section, so don't bother to create one.
4189
4190 Mon Jan 3 15:32:16 1994 David J. Mackenzie (djm@thepub.cygnus.com)
4191
4192 * aout-target.h (MY(vec)): Add DYNAMIC to mask of object flags.
4193 * aoutf1.h (NAME(aout,sunos4_write_object_contents)):
4194 If the DYNAMIC flag is set, set it in the exec header.
4195 * aoutx.h (NAME(aout,some_aout_object_p)): If the object is
4196 dynamically linked, set the DYNAMIC flag in the BFD.
4197 * libaout.h (N_SET_DYNAMIC): New macro.
4198 (N_DYNAMIC): Add missing 0 in mask.
4199
4200 Mon Jan 3 11:41:45 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4201
4202 * ecoff.c (ecoff_get_extr): Don't output section symbols as
4203 external symbols.
4204
4205 * bfd-in.h, hash.c: Change bfd_hash_allocate argument from size_t
4206 to unsigned int, because size_t may not be defined in bfd.h.
4207 * bfd-in2.h: Rebuilt.
4208
4209 * bfd-in.h (bfd_get{b,l}[_signed_]{16,32,64}): Declare argument to
4210 be a const pointer.
4211 * bfd-in2.h: Rebuilt.
4212 * libbfd.c (bfd_get{b,l}[_signed_]{16,32,64}): Declare argument to
4213 be a const pointer.
4214 * targets.c (bfd_target): Change swap function pointers
4215 accordingly.
4216 * archive.c (do_slurp_coff_armap): Change swap accordingly.
4217 * aix386-core.c: Change NO_GET and NO_GETS accordingly.
4218 * hppabsd-core.c, hpux-core.c, irix-core.c, osf-core.c,
4219 ptrace-core.c, trad-core.c: Change NO_GET and NO_SIGNED_GET
4220 accordingly.
4221
4222 * libbfd-in.h (struct artdata): Added tdata field.
4223 (_bfd_add_bfd_to_archive_cache): Declare.
4224 (_bfd_get_elt_at_filepos): Declare.
4225 (_bfd_snarf_ar_hdr): Renamed from snarf_ar_hdr.
4226 * libbfd.h: Rebuilt.
4227 * archive.c: Cleaned up some more.
4228 (_bfd_generic_mkarchive, bfd_generic_archive_p): Initialize
4229 pointer elements of artdata.
4230 (_bfd_add_bfd_to_archive_cache): Renamed from add_bfd_to_cache.
4231 (_bfd_snarf_ar_hdr): Renamed from snarf_ar_hdr.
4232 (_bfd_get_elt_at_filepos): Renamed from get_elt_at_filepos.
4233 (get_extended_arelt_filename, bfd_construct_extended_name_table,
4234 bfd_ar_hdr_from_filesystem, compute_and_write_armap): Made static.
4235 * ecoff.c: Some comment changes.
4236 (ecoff_slurp_armap): Handle rename of snarf_ar_hdr. Set
4237 ardata->tdata to raw_armap.
4238 (ecoff_archive_p): Initialize pointer elements of artdata.
4239 * coff-rs6000.c (rs6000coff_get_elt_at_filepos): Handle rename of
4240 add_bfd_to_cache.
4241
4242 * hash.c: Added some documentation.
4243
4244 Mon Jan 3 11:09:28 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
4245
4246 * aout-target.h, netbsd386.c: Replace NO_SWAP_MAGIC with SWAP_MAGIC,
4247 and do the swapping here rather than calling ntohl from the N_*
4248 macros. This cleans up assumptions about the size of a host long,
4249 the existence to ntohl, etc.
4250
4251 Sat Jan 1 13:50:05 1994 Rob Savoye (rob@darkstar.cygnus.com)
4252
4253 * config.bfd: Add support for VSTa micro-kernel. It currently uses
4254 i386-aout.
4255
4256 Sat Jan 1 10:18:54 1994 David J. Mackenzie (djm@thepub.cygnus.com)
4257
4258 * hosts/i386mach3.h (HOST_SEGMENT_SIZE): Fix value.
4259 * i386mach3.c (SEGMENT_SIZE): Fix value.
4260
4261 Fri Dec 31 16:23:43 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4262
4263 Minor cleanups suggested by CodeCenter.
4264 * aoutx.h, coffgen.c, ecoff.c, ecofflink.c, elf.c, libbfd.c,
4265 linker.c, reloc.c, section.c, srec.c: Added /*ARGSUSED*/ as
4266 appropriate.
4267 * aoutx.h (struct external_exec): Removed unnecessary declaration.
4268 (NAME(aout,some_aout_object_p)): Set some tdata pointers to NULL.
4269 (adjust_z_magic): Removed useless variable data_vma.
4270 (stringtab_init): Initialize hash_zero.
4271 (add_to_stringtab): Removed unused fourth argument.
4272 (NAME(aout,swap_std_reloc_out)): Removed useless variable
4273 r_addend.
4274 (aout_link_input_section): Added some casts.
4275 * archive.c (get_extended_arelt_filename, do_slurp_coff_armap,
4276 bfd_ar_hdr_from_filesystem, bsd_write_armap, coff_write_armap):
4277 Minor code rewriting to make it more C like.
4278 (do_slurp_bsd_armap): Added some casts.
4279 * ecoff.c (ecoff_write_object_contents): Removed useless variable
4280 scn_base.
4281 (ecoff_write_armap): Added some casts. Use "" rather than "\0".
4282 * ecofflink.c (bfd_ecoff_write_debug): Added a cast.
4283 * libaout.h (struct internal_exec): Removed unnecessary
4284 declaration.
4285 * linker.c (_bfd_generic_indirect_link_order): Added a cast.
4286 * opncls.c (new_bfd): Removed a cast.
4287 * reloc.c (bfd_generic_get_relocated_section_contents): Added
4288 some casts.
4289 * srec.c (internal_srec_write_object_contents): Removed useless
4290 variable bytes_written.
4291
4292 Fri Dec 31 11:46:13 1993 David J. Mackenzie (djm@thepub.cygnus.com)
4293
4294 * i386mach3.c (N_TXTADDR): Don't define after all.
4295 (TEXT_START_ADDR): Don't include exec header size in value.
4296
4297 Thu Dec 30 15:47:54 1993 David J. Mackenzie (djm@thepub.cygnus.com)
4298
4299 * i386mach3.c (N_TXTADDR): Define.
4300
4301 Thu Dec 30 13:37:24 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4302
4303 Extensive changes to move the bulk of the linker into BFD so that
4304 more efficient backend code can be written for specific object
4305 files. Only existing efficient backend is a.out.
4306 * seclet.c, seclet.h: Removed.
4307 * hash.c, linker.c, genlink.h: New files.
4308 * bfd-in.h: Removed bfd_error_vector. Declared hash table
4309 structures and functions.
4310 (JUMP_TABLE): Removed bfd_seclet_link, added
4311 bfd_link_hash_table_create, bfd_link_add_symbols and
4312 bfd_final_link.
4313 * All backends: Changed accordingly.
4314 * bfd-in2.h: Rebuilt.
4315 * bfd.c (struct _bfd): Added link_next and archive_pass fields.
4316 Removed ld_symbols field.
4317 (bfd_nonrepresentable_section, bfd_undefined_symbol,
4318 bfd_reloc_value_truncated, bfd_reloc_is_dangerous,
4319 bfd_error_vector): Removed.
4320 (bfd_default_error_trap, bfd_error_trap,
4321 bfd_error_nonrepresentabltrap): Removed.
4322 (bfd_get_relocated_section_contents): Pass link_info. Pass
4323 link_order instead of seclet. Pass symbols.
4324 (bfd_relax_section): Pass link_info.
4325 (bfd_seclet_link): Removed.
4326 (bfd_link_hash_table_create, bfd_link_add_symbols,
4327 bfd_final_link): New macros.
4328 * libbfd-in.h: If __GNUC__ is defined and alloca is not, define
4329 alloca as __builtin_alloca. Declare internal linking functions.
4330 * libbfd.h: Rebuilt.
4331 * libbfd.c (bfd_seek): Comment out fseek assertion. It's worked
4332 for months.
4333 * reloc.c (reloc_howto_type): Added error_message argument to
4334 special_function field. Changed all callers and all definitions.
4335 (bfd_get_reloc_size): Make argument a const pointer.
4336 (bfd_perform_relocation): Add error_message argument to hold
4337 string set if return value if bfd_reloc_dangerous. Changed all
4338 callers.
4339 (_bfd_final_link_relocate, _bfd_relocate_contents): New functions.
4340 * section.c (asection): Renamed seclets_head and seclets_tail to
4341 link_order_head and link_order_tail.
4342 * targets.c (bfd_target): Replaced seclet argument with link_info
4343 and link_order and symbols arguments in
4344 bfd_get_relocated_section_contents. Added symbols argument to
4345 bfd_relax_section. Removed bfd_seclet_link. Added
4346 bfd_link_hash_table_create, bfd_link_add_symbols and
4347 bfd_final_link.
4348 * libaout.h (struct aoutdata): Added external_syms,
4349 external_sym_count, external_strings, sym_hashes fields.
4350 (obj_aout_external_syms, obj_aout_external_sym_count,
4351 obj_aout_external_strings, obj_aout_sym_hashes): New accessor
4352 macros.
4353 (WRITE_HEADERS): Only output symbols if outsymbols is not NULL.
4354 * aoutx.h: Wrote new back end linker routines.
4355 (translate_to_native_sym_flags): Return boolean value. Don't use
4356 bfd_error_vector.
4357 (NAME(aout,write_syms)): Return boolean value. Check return value
4358 of translate_to_native_sym_flags and bfd_write.
4359 * aout-target.h (final_link_callback): New function.
4360 (MY_bfd_final_link): New function.
4361 * aout-adobe.c (aout_adobe_write_object_contents): Check return
4362 value of aout_32_write_syms.
4363 * hp300hpux.c (MY(write_object_contents)): Likewise.
4364 * i386lynx.c (WRITE_HEADERS): Likewise.
4365 * libaout.h (WRITE_HEADERS): Likewise.
4366 * bout.c: Changed functions to use link_info->callbacks rather
4367 than bfd_error_vector, and link_orders rather than seclets.
4368 * coff-alpha.c: Likewise.
4369 * coff-h8300.c: Likewise.
4370 * coff-h8500.c: Likewise.
4371 * coff-sh.c: Likewise.
4372 * coff-z8k.c: Likewise.
4373 * elf32-hppa.c: Likewise.
4374 * reloc16.c: Likewise.
4375 * coff-alpha.c (alpha_ecoff_get_relocated_section_contents): Look
4376 up _gp in the hash table rather than in outsymbols.
4377 * coff-a29k.c (a29k_reloc): Pass errors back in new error_message
4378 argument rather than printing them.
4379 * coffcode.h (bfd_coff_reloc16_extra_cases): Take link_info and
4380 link_order arguments rather than seclet. Changed all uses and
4381 definitions.
4382 (bfd_coff_reloc16_estimate): Pass link_info arguments. Changed
4383 all uses and definitions.
4384 * libcoff.h: Rebuilt.
4385 * ecoff.c (ecoff_get_extr): If symbol is defined by linker, but
4386 not by ECOFF, make it scAbs.
4387 (ecoff_bfd_final_link): Renamed from ecoff_bfd_seclet_link and
4388 rewritten.
4389 * elf32-mips.c (mips_elf_final_link): Renamed from
4390 mips_elf_seclet_link and rewritten.
4391 * elf32-hppa.c (elf32_hppa_stub_description): Added link_info
4392 field.
4393 (new_stub, add_stub_by_name, hppa_elf_build_arg_reloc_stub,
4394 hppa_elf_build_long_branch_stub, hppa_look_for_stubs_in_section):
4395 Added link_info arguments. Changed all callers.
4396 * elfcode.h (elf_slurp_symbol_table): Don't quit if outsymbols is
4397 not NULL.
4398 * oasys.c (oasys_write_sections): Return boolean value rather than
4399 using bfd_error_vector.
4400 (oasys_write_object_contents): Check return value of
4401 oasys_write_sections.
4402 * hosts/std-host.h: Don't declare qsort or strtol.
4403 * Makefile.in: Rebuild dependencies.
4404 (BFD_LIBS): Removed seclet.o. Added hash.o and linker.o.
4405 (CFILES): Removed seclet.c. Added hash.c and linker.c.
4406 (HFILES): Removed seclet.h. Added genlink.h.
4407
4408 Thu Dec 30 07:41:36 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
4409
4410 * section.c (bfd_get_section_contents): Return zero filled buffer
4411 if section has no contents.
4412
4413 Tue Dec 28 12:43:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4414
4415 * elf.c (bfd_elf_generic_reloc): If this is not an inplace reloc,
4416 then skip bfd_perform_relocation even if the addend is non-zero.
4417
4418 Tue Dec 21 09:22:19 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
4419
4420 * coffcode.h (coff_write_relocs) [SWAP_OUT_RELOC_OFFSET]: Copy
4421 addend to r_offset field.
4422
4423 * Makefile.in (CFILES): Added coff-sparc.c. Rebuild dependencies.
4424
4425 * coff-sparc.c (SWAP_IN_RELOC_OFFSET, SWAP_OUT_RELOC_OFFSET,
4426 CALC_ADDEND): Define.
4427
4428 * aix386-core.c (aix386_core_file_p): Use cd_regs[0] for computing
4429 the offsetof because AIX /bin/cc does not like to take the address
4430 of an array. (From Minh Tran-Le.)
4431
4432 Thu Dec 16 13:06:32 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4433
4434 * Thu Dec 16 15:41:06 1993 Peter Hoogenboom (hoogen@cs.utah.edu)
4435
4436 * elf32-hppa.c (hppa_elf_build_arg_reloc_stub): Make sure to copy
4437 the return pointer into %r2 if no jump-in-call-delay-slot
4438 optimization was done.
4439
4440 * hosts/hp300bsd.h: Correctly identify 4.3BSD vs 4.4BSD.
4441
4442 Wed Dec 15 08:04:16 1993 David J. Mackenzie (djm@thepub.cygnus.com)
4443
4444 * hosts/std-host.h: (time): Don't declare; conflicts on Mach3.
4445
4446 * hosts/i386mach3.h (HOST_PAGE_SIZE): Set to 1 to avoid padding.
4447 (HOST_SEGMENT_SIZE): Set to 0 for same reason.
4448
4449 * i386mach3.c (PAGE_SIZE, SEGMENT_SIZE): Same changes as above.
4450 (TEXT_START_ADDR): Correct.
4451 (MY_backend_data): Define.
4452
4453 * aoutx.h (adjust_o_magic, adjust_z_magic, adjust_n_magic):
4454 New functions; code moved from aout_<size>_adjust_sizes_and_vmas.
4455
4456 Tue Dec 14 21:48:33 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4457
4458 * som.c (som_begin_writing): Fix thinkos in auxiliary header
4459 support.
4460 (bfd_som_attach_aux_hdr): Likewise.
4461
4462 Mon Dec 13 23:34:48 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4463
4464 * elf32-hppa.c (hppa_elf_gen_reloc_type): Handle 'T' field
4465 selectors for PIC code.
4466
4467 * som.c (hppa_som_gen_reloc_type): Handle 'T' field selectors.
4468 (som_write_fixups): Handle R_DLT_REL, R_FSEL, R_RSEL, R_LSEL
4469 relocations needed by PIC.
4470
4471 Tue Dec 7 15:47:51 1993 Stu Grossman (grossman at cygnus.com)
4472
4473 * nlmcode.h: Fixes to avoid compiler warnings...
4474
4475 Tue Dec 7 15:10:54 1993 Ian Lance Taylor (ian@cygnus.com)
4476
4477 * libnlm.h (nlm_backend_data): Removed macro definition.
4478 (nlm_alpha_backend_data): Adjusted accordingly.
4479
4480 Sun Dec 5 19:32:08 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4481
4482 * som.c (som_begin_writing): Flesh out code for handling simple
4483 auxiliary headers.
4484 (bfd_som_attach_aux_hdr): New function.
4485
4486 * som.h (struct somdata): Add fields for attaching version and
4487 copyright headers. Add accessor macros.
4488
4489 * som.c (R_DLT_REL, R_AUX_UNWIND, R_SEC_STMT): Add protected
4490 definitions for old versions of HPUX which fail to define them.
4491 (som_hppa_howto_talbe): Add R_DLT_REL, R_AUX_UNWIND, and R_SEC_STMT
4492 now that they're safe. Delete bogus R_STATEMENT relocations.
4493
4494 * som.c (som_hppa_howto_table): Add missing R_END_TRY. Delete
4495 extra R_DATA_OVERRIDE.
4496 (hppa_som_gen_reloc_type): Generate a relocation for the rounding
4497 mode selector if needed.
4498 (som_write_fixups): Handle requests for a change in the default
4499 rounding mode. Rounding modes do not consume input bytes, but
4500 are just markers much like R_ENTRY and R_EXIT.
4501
4502 Sat Dec 4 19:40:32 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4503
4504 Fri Dec 3 09:55:17 1993 Pete Hoogenboom (hoogen@cs.utah.edu)
4505
4506 * elf32-hppa.c: (hppa_elf_reloc): Do not do code reordering when
4507 the branch instruction as originally been nullified.
4508 hppa_elf_reloc): Avoid useless call to bfd_put_32 () in the
4509 case of no code reordering due to an LDO instruction in the
4510 delay slot of the branch. Make sure to relocate the correct
4511 instruction. Do not perform instruction reordering for millicode
4512 calls.
4513 (hppa_elf_build_arg_reloc_stub): Change the relocation type
4514 to R_HPPA_STUB_CALL_17 when special processing might be needed.
4515 (hppa_elf_build_long_branch_stub): Prevent code reordering on
4516 a call from a linker stub to another linker stub and for millicode
4517 calls. Do not trash the return register for calls from one linker
4518 stub to a second linker stub.
4519
4520 * elf32-hppa.c: (elf_hppa_howto_table): PLABEL and DLT
4521 relocations are not pc-relative.
4522
4523 * hppa_stubs.h: (BLE_N_XXX_0_31): New instruction used in
4524 linker stub code.
4525 (COPY_2_31): Likewise.
4526
4527 Fri Dec 3 18:40:58 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4528
4529 * config/solaris2.mh (HDEFINES): Remove -Dconst=
4530 * hosts/solaris.h: If not __GNUC__, define const as empty.
4531
4532 Thu Dec 2 15:43:32 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4533
4534 * ecoff.c: Added various casts for 32/64 bit cross targeting.
4535 (ecoff_mkobject_hook): Set SEC_SHARED_LIBRARY for the .reginfo
4536 section so that the linker ignores it.
4537 * ecofflink.c: Added various casts for 32/64 bit cross targeting.
4538 (ecoff_add_bytes): Changed need argument to size_t.
4539 (bfd_ecoff_debug_link_other): Check return value of
4540 ecoff_add_string.
4541
4542 * libbfd-in.h (new_bfd): Use void rather than an empty parameter
4543 list.
4544 * libbfd.h: Rebuilt.
4545
4546 * libnlm.h (struct nlm_obj_tdata): New field backend_data.
4547 (nlm_backend_data, nlm_alpha_backend_data): New accessor macros.
4548 (struct nlm_backend_data): New field no_uninitialized_data.
4549 (nlm_no_uninitialized_data): New accessor macro.
4550 * nlmcode.h (nlm_compute_section_file_positions): Handle
4551 no_uninitialized_data.
4552 (nlm_external_reloc_compare): Sort relocs by address for a
4553 particular symbol, to make the sort more stable.
4554 (nlm_write_object_contents): Cast the arguments to qsort. Get the
4555 value of a debugging symbol the same way we get the value of a
4556 normal symbol.
4557 * nlm32-alpha.c: Various changes. Write out GP and .lita relocs.
4558 Set no_uninitialized_data to true.
4559 * nlm32-i386.c (nlm32_i386_backend), nlm32-sparc.c
4560 (nlm32_sparc_backend): Set no_uninitialized_data field false.
4561 * nlmswap.h (nlm_swap_fixed_header_out): Zero out destination
4562 before filling it in.
4563
4564 Wed Dec 1 21:47:58 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4565
4566 * som.c (som_section_type, som_decode_symcalss): New functions.
4567 (som_get_symbol_info): Use them.
4568 (som_slurp_symbol_table): Set the section of common and undefined
4569 symbols correctly.
4570
4571 Wed Dec 1 14:15:10 1993 Ken Raeburn (raeburn@cygnus.com)
4572
4573 * elfcode.h (write_relocs): Initialize local var LAST_SYM_IDX, to
4574 make gcc happy.
4575
4576 * mipsbsd.c: Changes from Ralph Campbell:
4577 (mips_howto_table_ext): MIPS_RELOC_LO16 should use
4578 complain_overflow_dont.
4579 (aout_mips_*_vec): Make name use "a.out" instead of "aout", to
4580 make gdb happy.
4581
4582 * bfd.c (bfd_errmsgs): Reword invalid-target message.
4583
4584 * config.bfd: For sparc*-*-coff, use sparc-coff.
4585 * configure.in: Handle sparccoff_vec.
4586 * targets.c (sparccoff_vec): Declare.
4587
4588 * reloc.c (bfd_get_reloc_size): New function.
4589 (struct reloc_howto_type): Update documentation of size field.
4590
4591 Wed Dec 1 14:39:05 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4592
4593 * nlm32-alpha.c: New file; preliminary Alpha NetWare support.
4594 * config.bfd (alpha-*-netware*): New target; use alpha-nlm.
4595 * config/alpha-nlm.mt: New file.
4596 * configure.in (nlm32_alpha_vec): New vector; use nlm32-alpha.o,
4597 nlm32.o, and nlm.o.
4598 * Makefile.in (BFD32_BACKENDS): Added nlm32-alpha.o.
4599 (CFILES): Added nlm32-alpha.c.
4600 Rebuilt dependencies.
4601 * targets.c (nlm32_alpha_vec): Declare.
4602
4603 * libnlm.h (struct nlm_backend_data): New fields
4604 optional_prefix_size, nlm_backend_object_p, nlm_write_prefix,
4605 nlm_set_public_section, nlm_get_public_offset. Removed unused
4606 nlm_write_reloc field. Changed nlm_write_import to remove
4607 unnecessary symbol argument. Renamed nlm_write_externals to
4608 nlm_write_external, and changed cound argument from bfd_vma to
4609 bfd_size_type.
4610 (nlm_optional_prefix_size, nlm_backend_object_p_func,
4611 nlm_write_prefix_func, nlm_set_public_section_func,
4612 nlm_get_public_offset_func): New accessor macros.
4613 (nlm_write_reloc_func): Removed.
4614 (nlm_write_external_func): Adjusted for field renaming.
4615 * nlm32-i386.c (nlm_i386_write_import): Renamed from
4616 nlm_i386_write_reloc. Removed old nlm_i386_write_import which
4617 just called old nlm_i386_write_reloc.
4618 (nlm_i386_write_external): Renamed from nlm_i386_write_externals.
4619 Declared. Changed second argument from bfd_vma to bfd_size_type.
4620 (nlm32_i386_backend): Adjusted for changes to fields and names.
4621 * nlm32-sparc.c (nlm_sparc_mangle_relocs): Removed unused,
4622 ifdeffed out code.
4623 (nlm_sparc_write_import): Removed second argument.
4624 (nlm_sparc_write_external): Renamed from
4625 nlm_sparc_write_externals. Changed second argument from bfd_vma
4626 to bfd_size_type.
4627 (nlm32_sparc_backend): Adjusted for changes to fields and names.
4628 * nlmcode.h: Removed some unused code.
4629 (nlm_object_p): Don't destroy tdata pointer. Call
4630 backend_object_p function if it exists.
4631 (nlm_slurp_symbol_table): Removed unused variable rcount. Call
4632 set_public_section_func if it exists instead of checking
4633 NLM_HIBIT.
4634 (nlm_compute_section_file_positions): Account for
4635 optional_prefix_size.
4636 (nlm_write_object_contents): Account for optional_prefix_size.
4637 Removed useless variable write_reloc_func. Changed declaration
4638 and call of write_import_func. Call write_prefix_func if it
4639 exists. Removed unused variables len and temp. Call
4640 get_public_offset_func if it exists rather than setting NLM_HIBIT.
4641 * nlmswap.h: Declare functions.
4642
4643 * bfd-in.h (uint64_typeLOW, uint64_typeHIGH): Fully parenthesize
4644 for clarity.
4645 (fprintf_vma, sprintf_vma): Use %lx, not %x.
4646 * bfd-in2.h: Rebuilt.
4647 * hosts/alphaosf.h (uint64_typeLOW, uint64_typeHIGH): Cast results
4648 to unsigned long.
4649
4650 * config.bfd: Don't set target64 here, as the setting is ignored.
4651 * configure.in (ecoffalpha_little_vec): Set target64.
4652
4653 * config/alphaosf.mt (TDEFINES): Removed; setting host parameters
4654 in TDEFINES is wrong.
4655
4656 * coff-alpha.c (alpha_ecoff_get_relocated_section_contents):
4657 Remove unused variable output_section.
4658
4659 Tue Nov 30 16:45:23 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4660
4661 * irix-core.c: New file for Irix 4 and Irix 5 core support.
4662 Functions taken out of coff-mips.c. Handle vmap type VMAPFILE.
4663 * coff-mips.c: Irix 4 core file support moved to irix-core.c.
4664 * targets.c: If IRIX_CORE defined, include irix_core_vec in
4665 target_vector.
4666 * config/irix4.mh (HDEFINES): Add -DIRIX_CORE.
4667 (HDEPFILES): Define to be irix-core.o.
4668 * config/irix5.mh (HDEFINES): Define to be -DIRIX_CORE.
4669 (HDEPFILES): Define to be irix-core.o.
4670 * Makefile.in (OPTIONAL_BACKENDS): Added irix-core.o. Removed
4671 sco-core.o, which no longer exists.
4672 (CFILES): Added all *-core.c files.
4673 Rebuilt dependencies.
4674
4675 Wed Nov 24 02:02:41 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4676
4677 * elfcode.h (map_program_segments): Restore check of file_size !=
4678 mem_size, but only if SHT_PROGBITS.
4679
4680 * ecofflink.c: New file to hold ECOFF debug information linking
4681 routines.
4682 * ecoff.c (ecoff_clear_output_flags, ecoff_rel, ecoff_dump_seclet,
4683 ecoff_add_string, ecoff_get_debug): Removed. Functionality now in
4684 ecofflink.c.
4685 (ecoff_get_extr, ecoff_set_index): New functions.
4686 (ecoff_slurp_symbolic_info): Don't save raw_size.
4687 (ecoff_bfd_seclet_link): Rewrote to use ecofflink.c functions.
4688 (ecoff_compute_section_file_positions): Don't set EXEC_P just
4689 because there is a start address.
4690 (ecoff_write_object_contents): Handle external symbols here. Use
4691 ecofflink.c functions to write out debugging information.
4692 * elf32-mips.c (mips_elf_read_ecoff_info, mips_elf_get_extr,
4693 mips_elf_set_index): New functions.
4694 (mips_elf_seclet_link): Discard empty sections, the .options
4695 section and .gptab sections. Handle linking .mdebug section.
4696 * libecoff.h (ecoff_data_type): Removed raw_size and ifdbase.
4697 * libelf.h (elf_symbol_type): Added mips_extr to tc_data union.
4698 * bfd-in.h: Added prototypes for routines in ecofflink.c (some are
4699 called by gas, so they are public).
4700 * bfd-in2.h: Rebuilt.
4701 * Makefile.in (BFD_LIBS): Added ecofflink.o.
4702 (CFILES): Added ecofflink.c.
4703 (ecofflink.o): New target. Rebuilt dependencies.
4704
4705 Mon Nov 22 22:26:42 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4706
4707 * som.c (hppa_object_p): Also recognize SHARED_MAGIC_CNX as
4708 a valid magic number if it's been defined.
4709
4710 Mon Nov 22 14:17:36 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4711
4712 * ecoff.c (ecoff_mkobject): Don't create .scommon section; linker
4713 no longer requires it.
4714 (ecoff_bfd_seclet_link, ecoff_sizeof_headers,
4715 ecoff_write_object_contents): Don't treat .scommon section
4716 specially.
4717
4718 Mon Nov 22 10:54:27 1993 Fred Fish (fnf@cygnus.com)
4719
4720 Merged changes from kev@spuds.geg.mot.com (Kevin A. Buettner):
4721 * bfd/config/delta88.mh (HDEFINES): Define this to be -DPTRACE_CORE.
4722 * bfd/config/delta88.mh (HDEPFILES): Defined to be ptrace-core.o.
4723 * bfd/ptrace-core.c: New file for dealing with core files with
4724 start with the ptrace_user structure found on BCS compliant systems.
4725 * bfd/targets.c (ptrace_core_vec): New vector.
4726
4727 Mon Nov 22 02:33:12 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4728
4729 * Minimal support for reading SOM fixup streams. Allows
4730 objdump -r to do something reasonable.
4731 * som.c (som_get_reloc_upper_bound): Implement.
4732 (som_canonicalize_reloc): Implement.
4733 (som_set_reloc_info, som_slurp_reloc_table): New functions.
4734
4735 Sun Nov 21 13:46:55 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
4736
4737 * hosts/lynx.h (FPRINTF_ALREADY_DECLARED): Define.
4738 * hosts/sparclynx.h: Include lynx.h instead of duplicating it.
4739
4740 Fri Nov 19 14:34:04 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4741
4742 * coff-a29k.c (a29k_reloc): For R_IREL, don't left shift
4743 signed_value before sign extending it. Don't subtract out
4744 reloc_entry->address. This makes it compatible with what gas is
4745 generating.
4746
4747 * elfcode.h (elf_fake_sections): Accept .sbss as the name for a
4748 SHT_NOBITS sections.
4749 (map_program_segments): Don't leave the loop after the first
4750 SHT_NOBITS section.
4751 (assign_file_positions_except_relocs): Only force sh_offset and
4752 sh_addr to match modulo maxpagesize for a section which is not
4753 SHT_NOBITS. Changed the method used to force page alignment after
4754 a SHT_NOBITS section to only do it for the last such consecutive
4755 section, and to really force page alignment.
4756
4757 Fri Nov 19 04:02:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
4758
4759 * coffcode.h (coff_slurp_symbol_table): Print more verbose message
4760 in the case of an unknown (or unhandled) storage class.
4761
4762 * config/i386-lynx.mt (TDEFINES): FPRINTF_ALREADY_DECLARED should
4763 not be defined here, since it is a host attribute, not a target
4764 one.
4765 * config/m68k-lynx.mt, config/sparc-lynx.mt: Ditto.
4766
4767 * coffcode.h (coff_bfd_reloc_type_lookup): Don't define if already
4768 defined.
4769
4770 * coff-sparc.c: Define some relocations, based on ELF relocations.
4771 (enum reloc_type, bfd_coff_generic_reloc, coff_sparc_howto_table,
4772 struct coff_reloc_map, sparc_reloc_map,
4773 coff_sparc_reloc_type_lookup): Borrowed from elf32-sparc.c and
4774 elf.c, renamed.
4775 (coff_bfd_reloc_type_lookup): Define to be coff_sparc_reloc_....
4776 (rtype2howto): Index into coff_sparc_howto_table using
4777 dst->r_type.
4778
4779 Thu Nov 18 11:45:39 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4780
4781 * config.bfd (mips*-*-irix5*): New target; use mipsbelf.
4782 * configure.host (mips-sgi-irix5*) New host; use irix5 (no
4783 hosts/irix5.h created; just use std-host.h).
4784 * config/irix5.mh: New file; like irix4.mh, but don't use -G or
4785 -lmalloc.
4786 * Makefile.in: Rebuilt dependencies.
4787
4788 * ecoffswap.h: Changed type of internal pointers for swap out
4789 functions to const *.
4790
4791 * elf32-mips.c (mips_elf_got16_reloc): New function. Handle GOT16
4792 correctly for assembler, but linker support not implemented.
4793 (elf_mips_howto_table): Use mips_elf_got16_reloc for GOT16.
4794 (mips_elf_sym_is_global): New function; at least on Irix 5, all
4795 non section symbols are considered global.
4796 (elf_backend_sym_is_global): Define.
4797 (mips_elf_final_write_processing): New function. Set the MIPS
4798 architecture level correctly.
4799 (elf_backend_final_write_processing): Define.
4800 (mips_elf_section_from_shdr): Handle SHT_MIPS_OPTIONS.
4801 (mips_elf_fake_sections): Set entsize of .mdebug or .reginfo
4802 section to 1. Handle .options section.
4803 (mips_elf_acom_section, mips_elf_acom_symbol,
4804 mips_elf_acom_symbol_ptr): New static variables, used to build a
4805 generic .acommon section to hold SHN_MIPS_ACOMMON symbols.
4806 (mips_elf_symbol_processing): Handle SHN_MIPS_ACOMMON symbols by
4807 putting them all in a global .acommon section.
4808
4809 * elfcode.h (bfd_section_from_shdr): Don't dump core if target
4810 section has no ELF section data.
4811 (elf_make_sections): Set addralign of reloc section to 4.
4812 (elf_fake_sections): Likewise.
4813 (map_program_segments): Don't consider section 0.
4814 (assign_file_positions_except_relocs): Don't consider section 0.
4815 In the main loop, skip the symtab and strtab sections, since their
4816 positions are set elsewhere.
4817 (swap_out_syms): Set addralign of symtab section to 4. Set
4818 addralign of strtab sections to 1.
4819 (assign_file_positions_for_relocs): Don't consider section 0.
4820 (write_object_contents): Don't write out section 0.
4821
4822 * libelf.h (struct elf_backend_data): Added fields
4823 elf_backend_sym_is_global and elf_backend_final_write_processing.
4824 * elf32-target.h (elf32_bed): Added corresponding initializers.
4825 * elf64-target.h (elf64_bed): Likewise.
4826 * elfcode.h (sym_is_global): Take abfd argument. Call
4827 elf_backend_sym_is_global if it is not NULL.
4828 (elf_map_symbols): Pass abfd to sym_is_global.
4829 (write_object_contents): Call elf_backend_final_write_processing
4830 if it is defined.
4831
4832 Wed Nov 17 18:43:28 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4833
4834 * libecoff.h: Include coff/ecoff.h.
4835 (struct ecoff_backend_data): Move external debugging information
4836 fields into a single field pointing to an ecoff_debug_swap
4837 structure.
4838 (ecoff_data_type): Move debugging information fields into a single
4839 field pointing to an ecoff_debug_info structure.
4840 * coff-alpha.c, coff-mips.c, ecoff.c: Corresponding changes.
4841
4842 Wed Nov 17 17:38:58 1993 Sean Eric Fagan (sef@cygnus.com)
4843
4844 * nlmswap.h: New file to swap fixed header. Included by NLM
4845 backends.
4846 * libnlm.h (struct reloc_and_sec): Define.
4847 (struct nlm_backend_data): Add fields fixed_header_size,
4848 nlm_read_import, nlm_write_import, nlm_swap_fhdr_in,
4849 nlm_swap_fhdr_out.
4850 (nlm_fixed_header_size, nlm_read_import_func,
4851 nlm_write_import_func, nlm_swap_fixed_header_in_func,
4852 nlm_swap_fixed_header_out_func, nlm_write_external_func): New
4853 accessor macros.
4854 * nlmcode.h: Use new functions.
4855 * nlm32-i386.c: Provide new functions.
4856 * nlm32-sparc.c: New file; SPARC NLM backend.
4857
4858 Wed Nov 17 13:56:10 1993 Stan Shebs (shebs@rtl.cygnus.com)
4859
4860 * i386lynx.c (swap_std_reloc_in, swap_ext_reloc_in): Ignore
4861 garbage bits appearing in the upper end of symbolnums.
4862
4863 * config/sparc-lynx.mt (TDEFINES): Add -DFPRINTF_ALREADY_DECLARED.
4864
4865 Tue Nov 16 17:03:41 1993 Stu Grossman (grossman at cygnus.com)
4866
4867 * lynx-core.c (lynx_core_file_p): Change bfd_zalloc to bfd_alloc.
4868 * m68klynx.c: Define core file macros.
4869 * hosts/i386lynx.h, hosts/m68klynx.h, hosts/lynx.h: Move all
4870 non-architecture specific stuff into lynx.h.
4871
4872 Tue Nov 16 15:45:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
4873
4874 * i386linux.c: Define new macro ZMAGIC_DISK_BLOCK_SIZE to 1024, and
4875 change PAGE_SIZE to 4096.
4876
4877 Mon Nov 15 11:48:08 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
4878
4879 * Makefile.in (diststuff): New target.
4880
4881 * VERSION: Updated.
4882
4883 Sun Nov 14 23:33:01 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4884
4885 * som.c (som_object_setup): Do not create dummy ".text", ".data",
4886 and ".bss" sections.
4887 (setup_sections): Do not set SEC_HAS_CONTENTS if a section's size
4888 is zero. Recognize BSS type sections and turn off SEC_LOAD and
4889 SEC_DATA (so binutils/size works). Set the correct value for
4890 a section's _raw_size.
4891 (som_slurp_symbol_table): Program entry points, and millicode are
4892 also functions. Mark them as such. Also mark L$* symbols as
4893 debugging symbols.
4894
4895 * bfd-in2.h: Rebuilt.
4896
4897 Sat Nov 13 15:27:15 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4898
4899 * som.c (som_bfd_reloc_type_lookup): Add missing prototype. Returns
4900 a pointer to constant data. Delete bogus #define which made the
4901 function useless.
4902
4903 * som.c (som_prep_for_fixups): New function.
4904 (som_write_fixups): New function.
4905 (som_write_space_strings): New function.
4906 (som_write_symbol_strings): New function.
4907 (som_begin_writing): New function.
4908
4909 Fri Nov 12 15:29:36 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4910
4911 * som.c (som_write_object_contents): Do not abort. Flesh out.
4912 (som_set_section_contents): Do not abort. Flesh out.
4913
4914 * som.c (som_write_headers): New function.
4915 (som_prep_headers): New function.
4916 (som_build_and_write_symbol_table): New function.
4917
4918 * som.c (som_sizeof_headers): Add missing prototype.
4919 (som_set_arch_mach): Do not abort.
4920
4921 * som.c (som_count_spaces): New function.
4922 (som_count_subspaces): New function.
4923 (compare_syms): New function.
4924 (som_compute_checksum): New function.
4925
4926 * som.c (hppa_som_gen_reloc_type): New function.
4927 (som_bfd_reloc_type_lookup): New function.
4928
4929 * som.c (try_prev_fixup): New function.
4930 (som_reloc_skip): New function.
4931 (som_reloc_addend): New function.
4932 (som_reloc_call): New function.
4933
4934 * som.c (som_initialize_reloc_queue): New function.
4935 (som_reloc_queue_insert): Likewise.
4936 (som_reloc_queue_fix): Likewise.
4937 (som_reloc_queue_find): Likewise.
4938
4939 * som.c (som_hppa_howto_table): SOM howto relocation table.
4940 (hppa_som_reloc): New function.
4941
4942 * som.c (struct reloc_queue): New structure to keep track of
4943 the last four multibyte relocations emitted.
4944 (enum pa_symbol_type): Type to fully describe the symbol types
4945 associated with .import/.export assembler directives.
4946
4947 * som.c: Include libhppa.h
4948
4949 * som.c (bfd_som_set_section_attributes): New function.
4950 (bfd_som_set_subsection_attributes): Likewise.
4951 (bfd_som_set_symboL_type): Likewise.
4952 (bfd_som_attach_unwind_info): Likewise.
4953 * som.h: Declare new exported functions.
4954
4955 * som.h (struct som_symbol): Add new fields to hold additional
4956 information needed to build/write symbol tables and fixup streams.
4957 (struct som_section_data_struct): Add new fields to hold additional
4958 information needed to build/write space and subspace headers.
4959 (som_symbol_data): New accessor macro for SOM symbol information.
4960 (R_HPPA_*): Basic relocation types to be used by the assembler.
4961
4962 Fri Nov 12 11:00:28 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
4963
4964 * trad-core.c (trad_unix_core_file_p): If new hook
4965 TRAD_CORE_ALLOW_ANY_EXTRA_SIZE defined, then skip the check for the
4966 corefile being too big.
4967 * hosts/i386sco.h: Define it.
4968
4969 Thu Nov 11 15:16:28 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
4970
4971 * bfd.c (struct _bfd): Add hppabsd_core_data.
4972 * targets.c (target_vector): Add hppabsd_core_vec.
4973 * hpux-core.c (hpux_core_core_file_p): Fail if an unknown core
4974 section is encountered during core section scanning.
4975 * hppabsd-core.c: New file.
4976 * config/hppabsd.mh: Enable HPPA BSD core files.
4977
4978 * elf32-hppa.c (hppa_elf_reloc): Remove DEFUN crud. Remove code
4979 which is either commented out or ifdef'd out. Add, update and
4980 clean comments. Fix various indention and spacing problems. Handle
4981 problems related to using "ble" to jump to a stub rather than "bl"
4982 (%r31 is trashed by "ble", but not by "bl").
4983 (NEW_INSTRUCTION): Put inside curly braces.
4984 (CURRENT_STUB_OFFSET): Fix indention problems.
4985 (hppa_elf_build_arg_reloc_stub): Fix indention and spacing problems.
4986 Add, update and clean comments. Handle "ble" %r31 lossage problems.
4987 (hppa_elf_build_long_branch_stub): Likewise.
4988 (hppa_look_for_stubs_in_section): Likewise.
4989 (hppa_elf_stub_check): Remove obsolete function.
4990
4991 * hppa_stubs.h: Add new instructions to deal with %r31 lossage
4992 problems. Delete unused instructions.
4993
4994 Tue Nov 9 11:40:27 1993 Stan Shebs (shebs@rtl.cygnus.com)
4995
4996 * m68klynx.c (TARGET_IS_BIG_ENDIAN_P): Define.
4997
4998 Tue Nov 9 11:26:05 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
4999
5000 * elfcode.h (elf_object_p): Rather than looking through an array
5001 of architectures, get the ELF EM_xxx code from the backend
5002 information. Let the generic ELF target match any EM_xxx code not
5003 matched by another ELF target. Call elf_backend_object_p to let
5004 the backend do more checks and set global information.
5005 * libelf.h (struct elf_backend_data): Added elf_machine_code and
5006 elf_backend_object_p fields.
5007 (struct bfd_elf_arch_map): Removed.
5008 (bfd_elf_arch_map, bfd_elf_arch_map_size): Don't declare.
5009 * elf32-target.h, elf64-target.h: Initialize elf_machine_code
5010 field with ELF_MACHINE_CODE. Initialize elf_backend_object_p
5011 field with elf_backend_object_p (if it is defined).
5012 * elf32-gen.c, elf32-hppa.c, elf32-i386.c, elf32-i860.c,
5013 elf32-m68k.c, elf32-m88k.c, elf32-mips.c, elf32-sparc.c,
5014 elf64-gen.c (ELF_MACHINE_CODE): Defined.
5015 * elf32-mips.c: Include ecoffswap.h to get ECOFF swapping
5016 routines.
5017 (mips_elf_object_p): Set the right machine number.
5018 (mips_elf_ecoff_debug_swap): Defined.
5019 (elf_backend_object_p): Defined to be mips_elf_object_p.
5020 (elf_backend_ecoff_debug_swap): Defined to be
5021 mips_elf_ecoff_debug_swap.
5022 * elf.c (bfd_elf_arch_map, bfd_elf_arch_map_size): Removed.
5023
5024 * libbfd-in.h (target_vector, default_vector): Declare.
5025 * libbfd.h: Rebuilt.
5026 * format.c (target_vector, default_vector): Don't declare.
5027
5028 * elf32-mips.c (elf_mips_howto_table): Don't complain on overflow
5029 for R_MIPS_26. Correct overflow detection requires matching the
5030 upper four bits of the destination against the PC. From Ted Lemon
5031 <mellon@pepper.ncd.com>.
5032
5033 * bout.c (b_out_reloc_type_lookup): Return type should point to
5034 const data.
5035 * coff-i960.c (coff_i960_reloc_type_lookup): Likewise.
5036 * elf32-hppa.c (elf_hppa_reloc_type_lookup): Likewise.
5037 * mipsbsd.c (MY(reloc_howto_type_lookup)): Likewise.
5038 * coff-i386.c (coff_i386_reloc): Made howto const.
5039 * oasys.c (oasys_write_data): Made how const.
5040
5041 * libelf.h: Added some comments.
5042 (struct elf_backend_data): Added elf_backend_ecoff_debug_swap
5043 field. Removed unused write_relocs field.
5044 * elf32-target.h: Adjusted elf_backend_data initialization
5045 accordingly.
5046 * elf64-target.h: Corrected elf_backend_data initialization to
5047 fill in all fields and to set elf_64_p to 1.
5048
5049 Mon Nov 8 18:13:14 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
5050
5051 * elfcode.h (bfd_section_from_shdr): Remove duplicate assignment
5052 to filepos in SHT_STRTAB case.
5053 (assign_file_position_for_section): Set BFD section filepos as
5054 well as ELF section sh_offset.
5055
5056 * reloc.c: Use const instead of CONST.
5057 (bfd_perform_relocation): Make variable howto a const pointer.
5058 * bfd-in2.h, libbfd.h: Rebuilt.
5059
5060 Mon Nov 8 12:19:15 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
5061
5062 * Makefile.in (realclean): Don't remove generated headers. Reverts
5063 change of 2 Jul 1993.
5064
5065 Mon Nov 8 06:08:31 1993 D. V. Henkel-Wallace (gumby@cirdan.cygnus.com)
5066
5067 * configure.bfd: make unixware equivalent to sysv4.
5068
5069 * config/i386-nlm.mt: bring in elf config; make it the default.
5070
5071 Sun Nov 7 20:21:38 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
5072
5073 * libbfd.c (bfd_put_8): Add parens around reference to "val"
5074 argument.
5075
5076 Fri Nov 5 21:45:09 1993 David J. Mackenzie (djm@thepub.cygnus.com)
5077
5078 * hosts/i386mach3.h (HOST_SEGMENT_SIZE),
5079 i386mach3.c (SEGMENT_SIZE, TEXT_START_ADDR): Correct values (?).
5080
5081 Fri Nov 5 15:17:57 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
5082
5083 * coffcode.h (coff_write_object_contents): Zero out internal_a.
5084
5085 Fri Nov 5 10:41:07 1993 David J. Mackenzie (djm@thepub.cygnus.com)
5086
5087 * aoutx.h, archive.c, archures.c, bfd.c, cache.c, coffcode.h,
5088 core.c, ctor.c, format.c, init.c, libbfd.c, opncls.c, reloc.c,
5089 section.c, syms.c, targets.c:
5090 Doc cleanup (spelling, punctuation, grammar, formatting).
5091 * bfd-in2.h, libbfd.h: Rebuild.
5092
5093 Thu Nov 4 14:46:14 1993 John Gilmore (gnu@rtl.cygnus.com)
5094
5095 * bfd-in.h (bfd_get_cacheable, bfd_set_cacheable): New accessors.
5096 * bfd.c, opncls.c: Improve comments on file descriptor cacheing.
5097
5098 Thu Nov 4 08:54:30 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
5099
5100 * From Pete Hoogenboom (hoogen@cs.utah.edu)
5101 * elf32-hppa.c (hppa_elf_get_section_contents): Fix logic error
5102 in last change. Always rebuild symbol extension section the first
5103 time though if output sections exist (fixes ld -r problems).
5104
5105 Thu Nov 04 08:08:46 1993 Jeffrey Wheat (cassidy@cygnus.com)
5106
5107 * Makefile.in: Add .PHONY for check and installcheck rules.
5108
5109 Tue Nov 2 14:42:27 1993 Bill Cox (bill@tarkas.cygnus.com)
5110
5111 * libbfd-in.h (artdata): Use long, not time_t for portability, at
5112 least to HPUX. File below is a derived file.
5113
5114 Tue Nov 2 14:42:27 1993 Bill Cox (bill@tarkas.cygnus.com)
5115
5116 * libbfd.h (artdata): Use long, not time_t for portability, at
5117 least to HPUX.
5118
5119 Tue Nov 2 09:32:25 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
5120
5121 * config.bfd: Use bigmips for mips*-*-bsd*.
5122
5123 Mon Nov 1 14:30:09 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
5124
5125 * elfcode.h (elf_slurp_reloca_table, elf_slurp_reloc_table):
5126 Handle symbol number of zero.
5127
5128 * reloc.c (enum bfd_reloc_code_real): Added
5129 BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MIPS_GOT16,
5130 BFD_RELOC_MIPS_CALL16, BFD_RELOC_MIPS_GPREL32.
5131 * bfd-in2.h: Rebuilt.
5132 * coff-mips.c (mips_bfd_reloc_type_lookup): Handle
5133 BFD_RELOC_MIPS_LITERAL.
5134 * elf32-mips.c (mips_reloc_map): Handle new relocs.
5135 (mips_elf_hi16_reloc, mips_elf_lo16_reloc): Rearrange _gp_disp
5136 checks slightly.
5137
5138 * aout-target.h (MY_bfd_debug_info_start, MY_bfd_debug_info_end,
5139 MY_bfd_debug_info_accumulat [sic]): Remove unused definitions.
5140 (MY_bfd_get_relocated_section_contents, MY_bfd_relax_section,
5141 MY_bfd_seclet_link): Define.
5142 (MY_bfd_reloc_type_lookup): Rename from
5143 MY_reloc_howto_type_lookup.
5144 (MY_bfd_make_debug_symbol): Rename from MY_make_debug_symbol.
5145 (MY(vec)): Use JUMP_TABLE rather than listing functions.
5146 * hp300hpux.c (MY_get_symtab, MY_get_symtab_upper_bound,
5147 MY_canonicalize_reloc, MY_write_object_contents): Don't define in
5148 terms of MY, because that causes a recusive invocation of CAT when
5149 expanded within JUMP_TABLE, and ANSI compilers don't expand
5150 recursive macros.
5151 * mipsbsd.c (MY_bfd_reloc_type_lookup): Rename from
5152 MY_reloc_howto_type_lookup, and don't define in terms of MY.
5153 (MY_canonicalize_reloc): Don't define in terms of MY.
5154 (aout_mips_little_vec, aout_mips_big_vec): Use JUMP_TABLE rather
5155 than listing functions.
5156
5157 Mon Nov 1 09:12:25 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
5158
5159 * config.bfd: Use m68k-elf for m68*-*-sysv4*.
5160
5161 See file ChangeLog.1
5162
5163 \f
5164 Local Variables:
5165 mode: indented-text
5166 left-margin: 8
5167 fill-column: 74
5168 version-control: never
5169 End:
This page took 0.136909 seconds and 5 git commands to generate.