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