deliverable/binutils-gdb.git
29 years ago * targets.c (BFD_JUMP_TABLE_ARCHIVE): Add case for
Ian Lance Taylor [Fri, 21 Oct 1994 23:43:29 +0000 (23:43 +0000)] 
* targets.c (BFD_JUMP_TABLE_ARCHIVE): Add case for
_construct_extended_name_table.
(bfd_target): Add _bfd_construct_extended_name_table.
* archive.c (_bfd_archive_bsd_construct_extended_name_table): New
function.
(_bfd_archive_coff_construct_extended_name_table): New function.
(_bfd_construct_extended_name_table): Renamed by adding a leading
underscore, and made externally visible.  Added trailing_slash
argument, and used it instead of elf_style.  Changed type of
tablen to bfd_size_type *.
(_bfd_write_archive_contents): Use BFD_SEND to call
construct_extended_name_table.  Use the returned name.
* libbfd-in.h (_bfd_construct_extended_name_table): Declare.
(_bfd_noarchive_construct_extended_name_table): Define.
(_bfd_archive_bsd_construct_extended_name_table): Declare.
(_bfd_archive_coff_construct_extended_name_table): Declare.
* bfd-in2.h: Rebuild.
* libbfd.h: Rebuild.
* som.c (som_construct_extended_name_table): New static function.
* aout-target.h (MY_construct_extended_name_table): Define.
* coff-rs6000.c (rs6000coff_construct_extended_name_table):
Define.
* ieee.c (ieee_construct_extended_name_table): Define.
* libecoff.h (_bfd_ecoff_construct_extended_name_table): Define.
* oasys.c (oasys_construct_extended_name_table): Define.

29 years agofix BFD_ASSERT calls
Ian Lance Taylor [Fri, 21 Oct 1994 23:40:59 +0000 (23:40 +0000)] 
fix BFD_ASSERT calls

29 years agoremove unused variable
Ian Lance Taylor [Fri, 21 Oct 1994 23:21:19 +0000 (23:21 +0000)] 
remove unused variable

29 years ago Fix the ELF linker to not require an interpreter if no dynamic
Ian Lance Taylor [Fri, 21 Oct 1994 22:00:18 +0000 (22:00 +0000)] 
Fix the ELF linker to not require an interpreter if no dynamic
objects were seen, even when linking PIC code.
* libelf.h (ELF_LINK_HASH_NEEDS_PLT): Define.
(struct elf_link_hash_table): Add field dynamic_sections_created.
* elfcode.h (elf_link_record_dynamic_symbol): Create dynstr if it
doesn't already exist.
(elf_link_add_object_symbols): Create dynamic sections based on
dynamic_sections_created field, not dynobj field.  Don't bother to
set dynobj.
(elf_link_create_dynamic_sections): If dynamic sections were
already created, don't do anything.  If dynobj is already set, use
it; otherwise, set it to the bfd argument.  Don't initialize
dynsymcount.  Only create dynstr if it does not exist.  Set
dynamic_sections_created to true.
(NAME(bfd_elf,size_dynamic_sections)): Skip most of this function
if no dynamic objects were seen.
(elf_adjust_dynamic_symbol): If a symbol has the
ELF_LINK_HASH_NEEDS_PLT flag set, let the backend adjust it.
(elf_bfd_final_link): Change most decisions based on dynobj to
check dynamic_sections_created instead.
(elf_link_output_extsym): Only handle dynamic symbols if a dynamic
object was seen.
* elf.c (_bfd_elf_link_hash_table_init): Initialize new field
dynamic_sections_created.  Set dynsymcount to 1, not 0.
* elf32-i386.c (elf_i386_create_dynamic_sections): Call
elf_i386_create_got_section rather than creating the .got and
.got.plt sections.
(elf_i386_create_got_section): New static function.
(elf_i386_check_relocs): Just call elf_i386_create_got_section if
a GOT table is needed, not bfd_elf32_link_create_dynamic_sections.
Only create the .rel.got section, and only make space for a reloc,
for a global symbol or when generating a shared object.  For a
R_386_PLT32 reloc, just set the ELF_LINK_HASH_NEEDS_PLT flag.
(elf_i386_adjust_dynamic_symbol): Rework initial assertion to
permit ELF_LINK_HASH_NEEDS_PLT non dynamic symbols.  Create a
procedure linkage table entry for such symbols.  But, if no
dynamic objects were seen, never create a PLT entry.
(elf_i386_size_dynamic_sections): If no dynamic objects were seen,
skip most of this function, and force the size of the .rel.got
section to zero.
(elf_i386_relocate_section): For a R_386_GOT32 reloc against a global
symbol when no dynamic object was seen, initialize the contents of
the .got section.  For a R_386_GOT32 against a local symbol, only
create a R_386_RELATIVE reloc when generating a shared object.
Treat a R_386_PLT32 reloc against a symbol for which we did not
create a PLT entry as a R_386_PC32 reloc.
(elf_i386_finish_dynamic_sections): Only fiddle with the dynamic
entries and the PLT if we saw a dynamic object.
* elf32-sparc.c (elf_sparc_howto_table): Fix R_SPARC_PC22 by
setting rightshift to 10.  Fix R_SPARC_WPLT20 by setting
rightshift to 2, size to 2, bitsize to 30, and dst_mask to
0x3fffffff.
(elf32_sparc_create_dynamic_sections): Don't set the size of the
.plt section.  Call elf32_sparc_create_got_section rather than
creating the .got section.
(elf32_sparc_check_relocs): Call elf32_sparc_create_got_section if
a GOT table is needed, not bfd_elf32_link_create_dynamic_sections.
Only create the .rela.got section, and only make space for a
reloc, for a global symbol or when generating a shared object.
Set the alignment of the .rela.got section to 2.  For a
R_SPARC_WPLT30 reloc, just set the ELF_LINK_HASH_NEEDS_PLT flag.
(elf32_sparc_adjust_dynamic_symbol): Rework initial assertion to
permit ELF_LINK_HASH_NEDS_PLT non dynamic symbols.  Create a
procedure linkage table for such symbols.  But, if no dynamic
objects were seen, never create a PLT entry.  Initialize the size
of the .plt section.
(elf32_sparc_size_dynamic_sections): If no dynamic objects were
seen, skip most of this function, and force the size of the
.rela.got section to zero.  Strip empty reloc sections, and strip
an empty .plt section.
(elf32_sparc_relocate_section): For a GOT reloc against a global
symbol when no dynamic object was seen, initialize the contents of
the .got section.  For a GOT reloc against a local symbol, only
create a R_SPARC_RELATIVE reloc when generating a shared object.
Treat a R_SPARC_WPLT30 reloc against a symbol for which we did not
create a PLT entry as a R_SPARC_WDISP30 reloc.
(elf32_sparc_finish_dynamic_sections): Only fiddle with the
dynamic entries and the PLT if we saw a dynamic object.

29 years ago* configure.in (*-*-netware): Use config/mt-netware.
J.T. Conklin [Fri, 21 Oct 1994 18:34:40 +0000 (18:34 +0000)] 
* configure.in (*-*-netware): Use config/mt-netware.

* config/mt-netware: New file.
* config/mt-i386-netware: Removed, separate configs for different
  netware architectures are no longer needed now that we have
  --with-headers.

29 years ago * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
Per Bothner [Fri, 21 Oct 1994 02:27:38 +0000 (02:27 +0000)] 
* configure.in (target_libs):  Remove libstdc++ for libg++-2.6.1.

29 years ago * configure.in: Add * at the end of m68k-hp-hpux.
Ian Lance Taylor [Fri, 21 Oct 1994 02:02:54 +0000 (02:02 +0000)] 
* configure.in: Add * at the end of m68k-hp-hpux.

29 years ago * config.guess: Merge with FSF.
Per Bothner [Fri, 21 Oct 1994 01:55:14 +0000 (01:55 +0000)] 
* config.guess:  Merge with FSF.
* configure.in:  Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.

29 years ago * defs.h, infrun.c (wait_for_inferior), top.c: Call
Stu Grossman [Fri, 21 Oct 1994 00:59:20 +0000 (00:59 +0000)] 
* defs.h, infrun.c (wait_for_inferior), top.c:  Call
target_wait_hook to allow GUI to handle blocking for inferior.  Call
call_command_hook in execute_command to provide means for wrapping
commands with GUI state change updates.
* gdbtk.c (gdb_cmd):  Force GUI into idle mode when errors occur.
* (gdb_stop):  New tcl command to stop the target process.
* (x_event, gdbtk_wait):  Allow GUI to interrupt gdb out of target
waits.
* (gdbtk_call_command):  Wrapper around command processing to
alert GUI of target state changes.
* (gdbtk_init):  Get the fd of X server for doing async
notification of X events (via x_event).  Setup new hooks.
* gdbtk.tcl:  Add scrollbars to assembly and command windows.
* Change window foreground & background colors.
* Create margin tag for breakpoints in source and assembly windows.
* Add new routines to be invoked when target state changes to/from
idle.
* Add start of expression window.
* Change bindings of mouse button 1 in assembly and source window
to just set or clear breakpoints when in the margin tag.
* Change shape of register window to be more vertical to better
reflect it's contents.
* Add stop button.
* Cleanup some code around command window bindings.

* infrun.c (wait_for_inferior):  Make sure
through_sigtramp_breakpoint is non-null before deleting.

29 years ago* configure: Since the "trap 0" handler will override the exit status on many
Ken Raeburn [Thu, 20 Oct 1994 23:32:46 +0000 (23:32 +0000)] 
* configure: Since the "trap 0" handler will override the exit status on many
systems, only use it for "exit 1", and make it set a non-zero exit status;
reset it before "exit 0".  Also, check exit status of config.sub, and error out
if it failed.

29 years agoAdded irix5 info
Karen Christiansen [Thu, 20 Oct 1994 19:25:23 +0000 (19:25 +0000)] 
Added irix5 info

29 years ago * objcopy.c (gap_fill_set, gap_fill): New static variables.
Ian Lance Taylor [Thu, 20 Oct 1994 17:58:23 +0000 (17:58 +0000)] 
* objcopy.c (gap_fill_set, gap_fill): New static variables.
(copy_options): Accept --gap-fill.
(copy_usage): Mention --gap-fill.
(copy_object): Support --gap-fill.
(get_sections, compare_section_vma): New static functions.
(copy_main): Handle --gap-fill.
* binutils.texi, objcopy.1: Document --gap-fill.

29 years agoAdded --with-stabs for alpha and sgi5.2
Karen Christiansen [Thu, 20 Oct 1994 17:49:11 +0000 (17:49 +0000)] 
Added --with-stabs for alpha and sgi5.2

29 years ago* config/powerpc/ppc-nw.mt (TDEPFILES): Removed exec.o.
J.T. Conklin [Thu, 20 Oct 1994 17:33:05 +0000 (17:33 +0000)] 
* config/powerpc/ppc-nw.mt (TDEPFILES): Removed exec.o.

29 years ago * elfcode.h (elf_map_symbols): Don't worry about section symbols
Ian Lance Taylor [Thu, 20 Oct 1994 17:32:33 +0000 (17:32 +0000)] 
* elfcode.h (elf_map_symbols): Don't worry about section symbols
in a section not owned by any BFD.
(elf_section_from_bfd_section): Separate out loop which calls
backend routine.  Check bfd_section and call the backend routine
even for a section not owned by any BFD.
* elf32-mips.c (mips_elf_section_from_bfd_section): Handle
.acommon section.

29 years ago * Makefile.in (coffread.o): Depend on target.h.
Jim Kingdon [Thu, 20 Oct 1994 14:01:39 +0000 (14:01 +0000)] 
* Makefile.in (coffread.o): Depend on target.h.
(remote-vx.o): Depend on gdb-stabs.h objfiles.h symfile.h $(bfd_h).

29 years ago * gas/hppa/reloc/blebug3.s: New test.
Jeff Law [Thu, 20 Oct 1994 06:56:55 +0000 (06:56 +0000)] 
* gas/hppa/reloc/blebug3.s: New test.
* gas/hppa/reloc/reloc.exp: Run it.

29 years ago * config/tc-hppa.c (md_apply_fix): Set new_val to 8 for all
Jeff Law [Thu, 20 Oct 1994 06:45:55 +0000 (06:45 +0000)] 
* config/tc-hppa.c (md_apply_fix): Set new_val to 8 for all
fixups to branch instructions (not just pc-relative ones) which
will generate SOM relocations.

29 years ago* TODO: Fix typo.
Jim Kingdon [Thu, 20 Oct 1994 05:52:41 +0000 (05:52 +0000)] 
* TODO: Fix typo.

29 years ago * objfiles.c (objfile_relocate): When relocating ->sections, use
Jim Kingdon [Thu, 20 Oct 1994 05:15:46 +0000 (05:15 +0000)] 
* objfiles.c (objfile_relocate): When relocating ->sections, use
objfile not symfile_objfile.

* symtab.h, minsyms.c (minsyms_sort): New function.
* objfiles.c (objfile_relocate): Call it.

* remote-vx.c (vx_add_symbols): Call breakpoint_re_set.

* objfiles.c, objfiles.h (objfile_to_front): New function.
* remote-vx.c (vx_add_symbols): Call it.

* coffread.c (coff_symtab_read): Handle common symbols the same
way that partial-stab.h does.

29 years ago * hppa-tdep.c: Remove include files a.out.h, ioctl.h, and
Rob Savoye [Thu, 20 Oct 1994 04:08:52 +0000 (04:08 +0000)] 
    * hppa-tdep.c: Remove include files a.out.h, ioctl.h, and
machine/psl.h. These are host files.

29 years ago * objfiles.h (struct objfile): Fix comment--minimal_symbol_count
Jim Kingdon [Wed, 19 Oct 1994 22:17:38 +0000 (22:17 +0000)] 
* objfiles.h (struct objfile): Fix comment--minimal_symbol_count
does *not* include the terminating NULL msymbol.

29 years ago * coffgen.c (coff_print_symbol): Make names for section number and
Jim Kingdon [Wed, 19 Oct 1994 20:49:03 +0000 (20:49 +0000)] 
* coffgen.c (coff_print_symbol): Make names for section number and
storage class slightly more verbose.  It's not clear how many
characters I can justify using up, but before this change they
both were abbreviated "sc" which is (IMHO) clearly unacceptable.

29 years agoremoved i386-nlmstub.c
J.T. Conklin [Wed, 19 Oct 1994 18:41:25 +0000 (18:41 +0000)] 
removed i386-nlmstub.c

29 years ago * Makefile.in (check): Add a dummy else clause to the if
Ian Lance Taylor [Wed, 19 Oct 1994 18:40:45 +0000 (18:40 +0000)] 
* Makefile.in (check): Add a dummy else clause to the if
statement.

29 years ago * objcopy.c (copy_object): Revert yesterday's change.
Ian Lance Taylor [Wed, 19 Oct 1994 18:11:10 +0000 (18:11 +0000)] 
* objcopy.c (copy_object): Revert yesterday's change.
* binutils.texi, objcopy.1: Remove special mention of --set-start
and `binary' output format.

29 years ago * binary.c (binary_set_section_contents): Set the base file
Ian Lance Taylor [Wed, 19 Oct 1994 18:08:42 +0000 (18:08 +0000)] 
* binary.c (binary_set_section_contents): Set the base file
position from the lowest section VMA, not the start address.

29 years ago * config/tc-a29k.c: Include ctype.h with angle brackets.
Ian Lance Taylor [Wed, 19 Oct 1994 17:46:43 +0000 (17:46 +0000)] 
* config/tc-a29k.c: Include ctype.h with angle brackets.
(define_some_regs): Add new special register names defined on the
29040.
(parse_operand): Add argument opt.  If non-zero, don't warn about
a missing operand.
(machine_ip): If handling argument type 'I', pass opt as non-zero
to parse_operand.  Handle new optional operand type 'I'.
(md_undefined_symbol): Handle special register names (srNN).

29 years ago * a29k-dis.c (print_special): Add special register names defined
Ian Lance Taylor [Wed, 19 Oct 1994 17:41:18 +0000 (17:41 +0000)] 
* a29k-dis.c (print_special): Add special register names defined
on 29030, 29040 and 29050.
(print_insn): Handle new operand type 'I'.

29 years ago * a29k.h: Add operand type 'I' for `inv' and `iretinv'. On
Ian Lance Taylor [Wed, 19 Oct 1994 17:36:38 +0000 (17:36 +0000)] 
* a29k.h: Add operand type 'I' for `inv' and `iretinv'.  On
systems with a separate instruction and data cache, such as the
29040, these instructions take an optional argument.

29 years ago * aoutx.h (NAME(aout,slurp_symbol_table)): Don't return an error
Ian Lance Taylor [Wed, 19 Oct 1994 05:30:15 +0000 (05:30 +0000)] 
* aoutx.h (NAME(aout,slurp_symbol_table)): Don't return an error
if there are no symbols.
* coffgen.c (coff_get_normalized_symtab): Likewise.
* hp300hpux.c (MY(slurp_symbol_table)): Likewise.

29 years ago * monitor.c (monitor_load_srec,monitor_make_srec): Add an asrecord
Rob Savoye [Wed, 19 Oct 1994 03:02:17 +0000 (03:02 +0000)] 
* monitor.c (monitor_load_srec,monitor_make_srec): Add an asrecord
loader that reads files using BFD and converts it on the fly.
* monitor.c (set_loadtype_command): Fixed so it doesn't core dump.
* monitor.c (monitor_load): check the load type and load the file
accordingly. Default to gr_load_image().
* monitor.c (monitor_load_ascii_srec): Load an ascii file in
srecord format by downloading to the monitor.
* w89k-rom.c, op50n-rom.c: set supported load types.

29 years agoAdd a ^C to the init string.
Rob Savoye [Wed, 19 Oct 1994 03:00:29 +0000 (03:00 +0000)] 
Add a ^C to the init string.

29 years agorebuilt dependencies
Ian Lance Taylor [Tue, 18 Oct 1994 21:42:41 +0000 (21:42 +0000)] 
rebuilt dependencies

29 years ago * ldlex.l: Cast assignment to yy_ch_buf field to char *, not to
Ian Lance Taylor [Tue, 18 Oct 1994 19:59:52 +0000 (19:59 +0000)] 
* ldlex.l: Cast assignment to yy_ch_buf field to char *, not to
YY_CHAR *.

29 years ago * Makefile.in (all-binutils): Depend upon all-byacc.
Ian Lance Taylor [Tue, 18 Oct 1994 19:34:31 +0000 (19:34 +0000)] 
* Makefile.in (all-binutils): Depend upon all-byacc.

29 years ago * configure.in: Don't build emacs on Irix 5.
Ian Lance Taylor [Tue, 18 Oct 1994 19:26:16 +0000 (19:26 +0000)] 
* configure.in: Don't build emacs on Irix 5.

29 years ago * objcopy.c (copy_object): If the output file format is `binary',
Ian Lance Taylor [Tue, 18 Oct 1994 19:20:58 +0000 (19:20 +0000)] 
* objcopy.c (copy_object): If the output file format is `binary',
and the start address was not set using --set-start, default the
start address to zero.  This hack is because the `binary' output
file format uses the start address to set the virtual address of
the first byte in the file.
* binutils.texi, objcopy.1: Add some notes on generating S-records
and binary files.

29 years ago * binary.c: New file for raw binary output format.
Ian Lance Taylor [Tue, 18 Oct 1994 18:51:01 +0000 (18:51 +0000)] 
* binary.c: New file for raw binary output format.
* Makefile.in (BFD_LIBS): Add binary.o.
(CFILES): Add binary.c.
* targets.c (binary_vec): Declare.
(bfd_target_vector): Include binary_vec.

29 years ago * aout-target.h (MY_bfd_copy_private_section_data): Only copy
Ian Lance Taylor [Tue, 18 Oct 1994 18:49:34 +0000 (18:49 +0000)] 
* aout-target.h (MY_bfd_copy_private_section_data): Only copy
subformat to another bfd_target_aout_flavour file.

29 years ago * srec.c (tdata_type): Add field tail.
Ian Lance Taylor [Tue, 18 Oct 1994 16:58:24 +0000 (16:58 +0000)] 
* srec.c (tdata_type): Add field tail.
(srec_mkobject): Initialize tail.
(srec_set_section_contents): Sort S record list by address.

29 years ago * nm.c (print_symdef_entry): Call print_symname to print the
Ian Lance Taylor [Tue, 18 Oct 1994 16:03:05 +0000 (16:03 +0000)] 
* nm.c (print_symdef_entry): Call print_symname to print the
symbol name, so that --demangle works.

29 years ago * Makefile.in (mostlyclean): Remove tmpdir.
Ian Lance Taylor [Tue, 18 Oct 1994 15:55:10 +0000 (15:55 +0000)] 
* Makefile.in (mostlyclean): Remove tmpdir.

29 years ago * binutils-all/objcopy.exp: New file.
Ian Lance Taylor [Tue, 18 Oct 1994 15:51:03 +0000 (15:51 +0000)] 
* binutils-all/objcopy.exp: New file.
* config/default.exp: Initialize OBJCOPY and OBJCOPYFLAGS.

29 years ago * objcopy.c (struct section_list): Add fields used, adjust, val.
Ian Lance Taylor [Tue, 18 Oct 1994 15:49:53 +0000 (15:49 +0000)] 
* objcopy.c (struct section_list): Add fields used, adjust, val.
(adjust_start, set_start_set, set_start): New static variables.
(adjust_section_vma, adjust_sections): New static variables.
(copy_options): Add --adjust-start, --adjust-vma,
--adjust-section-vma, --adjust-warnings, --no-adjust-warnings,
--set-start.
(parse_vma): New static function.
(copy_usage): Mention new options.
(copy_object): Handle --set-start and --adjust-start.
(setup_section): Correct type of last argument to PTR.  Set used
field if section is removed.  Handle --adjust-vma and
--adjust-section-vma.
(copy_section): Correct type of last argument to PTR.
(mark_symbols_used_in_relocations): Likewise.
(strip_main): Clear used field when handling -R.
(copy_main): Handle new options.
* binutils.texi (objcopy): Document new options.
* objcopy.1: Document new options.

29 years ago * write.c (renumber_sections): New static BFD_ASSEMBLER function.
Ian Lance Taylor [Tue, 18 Oct 1994 04:46:45 +0000 (04:46 +0000)] 
* write.c (renumber_sections): New static BFD_ASSEMBLER function.
(write_object_file): Call it after removing gas created sections.

29 years ago * monitor.c (set_loadtype_command): Fixed so it doesn't core dump.
Rob Savoye [Tue, 18 Oct 1994 00:55:51 +0000 (00:55 +0000)] 
* monitor.c (set_loadtype_command): Fixed so it doesn't core dump.
* monitor.c (monitor_load): check the load type and load the file
accordingly. Default to gr_load_image().
* monitor.c (monitor_load_ascii_srec): Load an ascii file in
srecord format by downloading to the monitor.
* w89k-rom.c, op50n-rom.c: set supported load types.

29 years ago * oasys.c (oasys_slurp_symbol_table): Use udata.p rather than just
Ian Lance Taylor [Mon, 17 Oct 1994 23:59:36 +0000 (23:59 +0000)] 
* oasys.c (oasys_slurp_symbol_table): Use udata.p rather than just
udata.

29 years ago * symbols.c (symbol_create): Use udata.p, not just udata.
Ian Lance Taylor [Mon, 17 Oct 1994 23:52:27 +0000 (23:52 +0000)] 
* symbols.c (symbol_create): Use udata.p, not just udata.
* config/obj-elf.c (obj_ecoff_set_ext): Likewise.
(elf_get_extr): Likewise.

29 years ago * elfcode.h (elf_map_symbols): Sort the symbols into a new array,
Ian Lance Taylor [Mon, 17 Oct 1994 23:51:25 +0000 (23:51 +0000)] 
* elfcode.h (elf_map_symbols): Sort the symbols into a new array,
rather than messing with Elf_Sym_Extra.  Store the symbol index in
the udata.i field.
(swap_out_syms): Use outbound_syms as a pointer rather than as an
array.  Don't worry about elf_sym_num.
(elf_symbol_from_bfd_symbol): Use udata.i rather than just udata.
* libelf.h (struct elf_sym_extra): Don't define.
(Elf_Sym_Extra): Don't define.
(struct elf_obj_tdata): Remove sym_extra field.
(elf_sym_extra): Don't define.
* elf32-hppa.c (elf32_hppa_backend_final_write_processing): Use
udata.i rather than elf_sym_extra array.
(elf32_hppa_backend_symbol_table_processing): Don't set
symextn_hdr->size; just use sh_size.

29 years ago* configure.in (*-*-netware*): Add libio.
J.T. Conklin [Mon, 17 Oct 1994 23:23:31 +0000 (23:23 +0000)] 
* configure.in (*-*-netware*): Add libio.

29 years ago * read.c (read_a_source_file): The second argument to as_where is
Ian Lance Taylor [Mon, 17 Oct 1994 22:07:16 +0000 (22:07 +0000)] 
* read.c (read_a_source_file): The second argument to as_where is
unsigned int *, not int *.

29 years ago Use a hash table when writing out ELF symbol names.
Ian Lance Taylor [Mon, 17 Oct 1994 22:03:14 +0000 (22:03 +0000)] 
Use a hash table when writing out ELF symbol names.
* elfcode.h (elf_stringtab_init): New static function.
(bfd_new_strtab, bfd_add_to_strtab, bfd_add_2_to_strtab): Remove.
Change all callers to use elf_stringtab_init or
_bfd_stringtab_add, and get stringtab lengths using
_bfd_stringtab_size.
(elf_fake_sections): Change ignored argument to pointer to
boolean, and set the boolean to true if an error occurs.  If an
error has already occurred, don't do anything.
(assign_section_numbers): Just set sh_size, not contents.
(elf_compute_section_file_positions): Pass the address of a
boolean to elf_fake_sections.  Pass the address of a
bfd_strtab_hash to swap_out_syms.  Write out the .strtab section.
(prep_headers): Change shstrtab to bfd_strtab_hash.
(swap_out_syms): Take a pointer to a bfd_strtab_hash as an
argument.  Set it to the symbol names.
(NAME(bfd_elf,write_object_contents)): Write out the section
header names using _bfd_stringtab_emit.
(elf_debug_section): Remove first argument; get the section name
via the bfd_section pointer.  Change caller.
(elf_bfd_final_link): Write out the symbol names using
_bfd_stringtab_emit.  Likewise for the .dynstr section contents.
Free the symbol names at the end of the function.
(elf_link_input_bfd): Remove the last argument, output_names,
from relocate_section.  Save the old symbol contents before
calling elf_link_output_sym, and restore them afterward.
* libelf.h (struct elf_link_hash_table): Change dynstr field to
struct bfd_strtab_hash.
(struct elf_backend_data): Remove last argument, output_names,
from elf_backend_relocate_section field.
(struct strtab): Don't define.
(struct elf_obj_tdata): Change strtab_ptr field to struct
bfd_strtab_hash.
* elf32-hppa.c (elf32_hppa_relocate_section): Remove last
argument, output_names.
* elf32-i386.c (elf_i386_relocate_section): Likewise.
* elf32-mips.c (mips_elf_relocate_section): Likewise.
* elf32-sparc.c (elf32_sparc_relocate_section): Likewise.

29 years ago* scripttempl/nw.sc: Gather constructors and destructors and
J.T. Conklin [Mon, 17 Oct 1994 22:03:09 +0000 (22:03 +0000)] 
* scripttempl/nw.sc: Gather constructors and destructors and
  define __CTOR__LIST__ and __DTOR_LIST__ appropriately.

29 years agoFix typo in my recent ChangeLog entry.
Jim Kingdon [Mon, 17 Oct 1994 21:44:25 +0000 (21:44 +0000)] 
Fix typo in my recent ChangeLog entry.

29 years agoFix thinko in ian's ChangeLog entry
Jim Kingdon [Mon, 17 Oct 1994 21:41:20 +0000 (21:41 +0000)] 
Fix thinko in ian's ChangeLog entry

29 years ago * Makefile.in (ALLDEPFILES): Remove xcoffexec.c.
Jim Kingdon [Mon, 17 Oct 1994 21:21:52 +0000 (21:21 +0000)] 
* Makefile.in (ALLDEPFILES): Remove xcoffexec.c.
* Makefile.in: Remove xcoffexec.o rule.

* exec.c (exec_file_command): Add comment.

Fix data and bss relocation for VxWorks 5.1:
* remote-vx.c (vx_add_symbols): New function.
(vx_load_command, add_symbol_stub): Call it instead of
symbol_file_add.
(vx_wait): Remove comment which was wrong to useless.
* remote-vx.c: Reindent much of file.
* coffread.c (cs_to_section, find_targ_sec): New functions.
(process_coff_symbol): Set SYMBOL_SECTION to result
from cs_to_section.
(coff_symtab_read): Call cs_to_section and deal appropriate
rather than assuming sections are in a certain order.  Deal with
BSS.
* coffread.c: Remove text_bfd_scnum variable.

29 years agoupdated version
Ken Raeburn [Mon, 17 Oct 1994 20:33:46 +0000 (20:33 +0000)] 
updated version

29 years ago * libbfd-in.h (DEFAULT_STRING_SPACE_SIZE): Don't define.
Ian Lance Taylor [Mon, 17 Oct 1994 19:31:23 +0000 (19:31 +0000)] 
* libbfd-in.h (DEFAULT_STRING_SPACE_SIZE): Don't define.
(bfd_add_to_string_table): Don't declare.
* libbfd.h: Rebuild.
* libbfd.c (bfd_add_to_string_table): Remove.

29 years ago * elfcode.h (elf_swap_shdr_in): Use rawdata, not bfd_section.
Ian Lance Taylor [Mon, 17 Oct 1994 18:27:40 +0000 (18:27 +0000)] 
* elfcode.h (elf_swap_shdr_in): Use rawdata, not bfd_section.
Clear contents field.
(bfd_section_from_shdr): In SHT_STRTAB case, check bfd_section,
not rawdata.  Don't set rawdata if e_shstrndx.  Use bfd_section
rather than rawdata in commented out code.  In SHT_REL[A] case,
don't bother to check elf_section_data of section returned by
section_from_elf_index.
(elf_fake_sections): Set bfd_section, not rawdata.  Don't set
size.
(elf_map_symbols): Don't set elf_num_section_syms.  Don't create
section symbols that already exist.
(assign_file_position_for_section): Use bfd_section, not rawdata.
(section_from_elf_index): Just check bfd_section field.
(elf_section_from_bfd_section): Likewise.
(elf_debug_section): Don't print rawdata, contents, or size.
(elf_link_add_object_symbols): Don't error out if
section_from_elf_index returns NULL.
(elf_bfd_final_link): Check return value from
section_from_elf_index against NULL, not bfd_is_abs_section.
(elf_link_input_bfd): Don't check section_from_elf_index return
value.
* libelf.h (struct elf_obj_tdata): Remove num_section_syms field.
(elf_num_section_syms): Don't define.
* elf.c (elf_get_str_section): Store section contents in contents
field rather than rawdata field.
(elf_string_from_elf_section): Likewise.
(_bfd_elf_make_section_from_shdr): Store BFD section pointer in
bfd_section field rather than rawdata field.
* elf32-hppa.c (elf32_hppa_read_symext_info): Use bfd_section
rather than rawdata.
(elf32_hppa_size_stubs): Likewise.
* elf32-mips.c (mips_elf_final_write_processing): Use bfd_section
rathern than rawdata.
(mips_elf_section_from_shdr): Likewise.
(mips_elf_section_processing): Likewise.
(mips_elf_section_from_bfd_section): Remove rawdata check.

29 years ago * srec.c (pass_over): Set the start address for S7, S8 or S9.
Ian Lance Taylor [Mon, 17 Oct 1994 15:39:37 +0000 (15:39 +0000)] 
* srec.c (pass_over): Set the start address for S7, S8 or S9.

29 years ago * gas/hppa/reloc/reduce3.s: New test.
Jeff Law [Mon, 17 Oct 1994 08:45:18 +0000 (08:45 +0000)] 
* gas/hppa/reloc/reduce3.s: New test.
* gas/hppa/reloc/reloc.exp: run it.

29 years ago * gas/hppa/reloc/reloc.exp (r_no_reloc): Tweak output to match
Jeff Law [Mon, 17 Oct 1994 04:27:13 +0000 (04:27 +0000)] 
    * gas/hppa/reloc/reloc.exp (r_no_reloc): Tweak output to match
        current reality.

29 years ago * corelow.c: Format to standard.
Stan Shebs [Sun, 16 Oct 1994 00:19:02 +0000 (00:19 +0000)] 
* corelow.c: Format to standard.
(core_close): Use name instead of bfd_filename.

29 years ago * symfile.c (reread_symbols): Include bfd_errmsg string in error
Jim Kingdon [Sat, 15 Oct 1994 18:28:35 +0000 (18:28 +0000)] 
* symfile.c (reread_symbols): Include bfd_errmsg string in error
message if bfd_close fails.
* exec.c (exec_close), solib.c (clear_solib), corelow.c
(core_close), objfiles.c (free_objfile), irix5-nat.c
(clear_solib), osfsolib.c (clear_solib), remote-utils.c
(gr_load_image): Check for errors from bfd_close.
* solib.c (look_for_base), remote-utils.c (gr_load_image),
remote-udi.c (download), corelow.c (core_open), symfile.c
(symfile_bfd_open), symfile.c (generic_load): Add comment
regarding error from bfd_close.
* remote-udi.c (download), remote-utils.c (gr_load_image): Add
comment about bogus handling of errors from bfd_openr.
* exec.c (exec_close): Add comment regarding memory leak and
dangling reference to vp->name.

29 years ago * exec.c (map_vmap): Cast return from xmalloc to its proper type,
Jim Kingdon [Sat, 15 Oct 1994 18:13:47 +0000 (18:13 +0000)] 
* exec.c (map_vmap): Cast return from xmalloc to its proper type,
not to PTR.

* symfile.c (reread_symbols): Include bfd_errmsg string in error
message if bfd_close fails.
* exec.c (exec_close), solib.c (clear_solib), corelow.c
(core_close), objfiles.c (free_objfile), irix5-nat.c
(clear_solib), remote-utils.c (gr_load_image):
Check for errors from bfd_close.
* solib.c (look_for_base), remote-utils.c (gr_load_image),
remote-udi.c (download), corelow.c (core_open), symfile.c
(symfile_bfd_open), symfile.c (generic_load): Add comment
regarding error from bfd_close.
* remote-udi.c (download), remote-utils.c (gr_load_image): Add
comment about bogus handling of errors from bfd_openr.
* exec.c (exec_close): Add comment regarding memory leak and
dangling reference to vp->name.

29 years ago * .Sanitize: Add nm-nbsd.h.
Peter Schauer [Sat, 15 Oct 1994 10:53:17 +0000 (10:53 +0000)] 
* .Sanitize:  Add nm-nbsd.h.

29 years ago * eval.c (evaluate_subexp): Make fnptr a LONGEST instead
Peter Schauer [Sat, 15 Oct 1994 10:50:07 +0000 (10:50 +0000)] 
* eval.c (evaluate_subexp):  Make fnptr a LONGEST instead
of using longest_to_int.

* infcmd.c (run_stack_dummy):  Reinstate set_current_frame call,
mips and alpha targets need the real breakpoint pc for
creating the breakpoint frame.

* stack.c (return_command):  Cast return value to the return
type of the function from which we return.
* values.c (set_return_value):  Pass VALUE_CONTENTS unmodified
to STORE_RETURN_VALUE.

* symtab.c (lookup_symbol):  Remove search for `static mangled
symbols', the search for `static symbols' already looks for
mangled and demangled symbols via lookup_block_symbol.

* valarith.c (value_binop):  Use ANSI C arithmetic conversions
when performing integral evaluations, implement BINOP_EQUAL and
BINOP_LESS.
(value_equal, value_less):  Use value_binop to perform the
comparison if both operands have TYPE_CODE_INT.

* rs6000-tdep.c (pop_frame):  Make sure all registers are valid,
as they are written back later. Handle sp restore for frameless
functions. Use fdata.nosavedpc instead of fdata.frameless to
determine if the pc has been saved.
(function_frame_info):  Handle `mr r31,r1', which is generated by
gcc-2.6, as a synonym for `oril r31,r1,0'.
(skip_trampoline_code):  Handle shared library trampolines.
* xcoffread.c (read_xcoff_symtabs):  Record XMC_GL symbols with
their real name. Enables setting of breakpoints in shared libraries
before the executable is run.

29 years ago * monitor.h, remote-mon.c: Hack up to so the old ROM monitor
Rob Savoye [Sat, 15 Oct 1994 01:45:59 +0000 (01:45 +0000)] 
* monitor.h, remote-mon.c: Hack up to so the old ROM monitor
interface code still works with the new ROM monitor
structures. Fake out a couple of fields.

29 years agoupdate to version 2.5
Ken Raeburn [Fri, 14 Oct 1994 23:17:15 +0000 (23:17 +0000)] 
update to version 2.5

29 years agoFrom 2.5 release:
Ken Raeburn [Fri, 14 Oct 1994 23:08:21 +0000 (23:08 +0000)] 
From 2.5 release:

* Makefile.in (BISON): Use bison -y, not bison.

* Makefile.in (VERSION): Updated to 2.5.
(clean-here): Delete stamp-mk.com.
(distclean): Delete .gdbinit.

Also, note release in changelog.

29 years ago* Makefile.in (ALL_EMULATIONS): Add ei386nw.o and eppcnw.o.
J.T. Conklin [Fri, 14 Oct 1994 22:57:12 +0000 (22:57 +0000)] 
* Makefile.in (ALL_EMULATIONS): Add ei386nw.o and eppcnw.o.
  (ei386nw.c, eppcnw.c): New targets.

* config/{i386,ppc}-nw.mt, emulparams/{i386,ppc}nw.sh,
  scripttmpl/nw.sc: New files, for i386 and powerpc netware.

* configure.in: Changed netware ld_target name to be {i386,ppc}-nw
  instead of {i386,ppc}-elf.

* configure.in (sparc*-*-netware): Removed.  There is no such
  thing anymore.

29 years agoclobbered somehow by previous checkin
Ian Lance Taylor [Fri, 14 Oct 1994 22:34:50 +0000 (22:34 +0000)] 
clobbered somehow by previous checkin

29 years ago * h8500-tdep.c (target_read_sp, target_write_sp, target_read_pc,
Stan Shebs [Fri, 14 Oct 1994 22:05:54 +0000 (22:05 +0000)] 
* h8500-tdep.c (target_read_sp, target_write_sp, target_read_pc,
target_write_pc, target_read_fp, target_write_fp): Rename to
h8500_read_sp, etc.
(h8500_read_pc, h8500_write_pc): Add pid argument.
* config/h8500/tm-h8500.h (TARGET_READ_SP, TARGET_WRITE_SP,
TARGET_READ_PC, TARGET_WRITE_PC, TARGET_READ_FP, TARGET_WRITE_FP):
Change to match functions above.

29 years ago* ldint.texinfo: Move misplaced `@end iftex'.
J.T. Conklin [Fri, 14 Oct 1994 21:38:10 +0000 (21:38 +0000)] 
* ldint.texinfo: Move misplaced `@end iftex'.

29 years ago * configure.in (configdirs): Remove definition--testsuite is no
Ian Lance Taylor [Fri, 14 Oct 1994 18:57:57 +0000 (18:57 +0000)] 
* configure.in (configdirs): Remove definition--testsuite is no
longer configured.
* Makefile.in (testsuite): Remove target.
(site.exp): New target.
(check): Rewrite.
(clean, distclean): Don't recur into testsuite directory.

29 years ago Rewrite testsuite.
Ian Lance Taylor [Fri, 14 Oct 1994 18:56:29 +0000 (18:56 +0000)] 
Rewrite testsuite.
* configure.in, Makefile.in: Remove.
* binutils-all/configure.in, binutils-all/Makefile.in: Remove.
* binutils-all/bintest.c: Remove.
* binutils-all/bintest.s: New file.
* binutils-all/nm.exp, binutils-all/objdump.exp: Rewrite.
* binutils-all/size.exp: Rewrite.
* config/default.exp: Load utils-lib.exp.  Set AS and ASFLAGS.
Don't go up one directory from $base_dir.  Create tmpdir.
(binutils_run, binutils-assemble): New procedures.
* config/unix.exp: Remove.
* config/mt-a29k-udi, config/mt-i386-aout: Remove.
* config/mt-i960-nindy, config/mt-lynx, config/mt-m68k: Remove.
* config/mt-mips-ecoff, config/mt-slite: Remove.
* config/mt-sparc-aout, config/mt-vxworks: Remove.
* lib/utils-lib.exp (binutil_version): Don't redirect standard
input when getting version.  Don't unset errorInfo.
(default_binutils_run): New procedure.
(default_binutils_assemble): New procedure.

29 years agoFri Oct 14 12:02:18 1994 Eric Youngdale (eric@aib.com)
Ian Lance Taylor [Fri, 14 Oct 1994 16:04:27 +0000 (16:04 +0000)] 
Fri Oct 14 12:02:18 1994  Eric Youngdale  (eric@aib.com)

* scripttempl/elf.sc: Add .rel.ctors, .rela.ctors, .rel.dtors, and
.rela.dtors to the list of .rel* sections.

29 years ago * bfd.c (bfd_scan_vma): Cast end to be non const before passing it
Ian Lance Taylor [Fri, 14 Oct 1994 15:09:07 +0000 (15:09 +0000)] 
* bfd.c (bfd_scan_vma): Cast end to be non const before passing it
to strtoul.

29 years agoThu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
Jason Merrill [Thu, 13 Oct 1994 22:52:54 +0000 (22:52 +0000)] 
Thu Oct 13 15:51:20 1994  Jason Merrill  (jason@phydeaux.cygnus.com)

* Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
(CHECK_TARGET_MODULES): Ditto.
(INSTALL_TARGET_MODULES): Ditto.
(TARGET_LIBS): Ditto.
(all-libstdc++): Note dependencies.

29 years ago* NEWS: Add item about if and while.
Jim Kingdon [Thu, 13 Oct 1994 20:44:08 +0000 (20:44 +0000)] 
* NEWS: Add item about if and while.

29 years ago * .gdbinit: Restore `end'; it was not excess. Reindent
Jim Kingdon [Thu, 13 Oct 1994 20:36:04 +0000 (20:36 +0000)] 
* .gdbinit: Restore `end'; it was not excess.  Reindent
list-objfiles to make this clear.  Comment out all of
list-objfiles because old gdb's choke on it.

29 years ago * bfd.c (bfd_scan_vma): Pass end argument on to strtoul.
Ian Lance Taylor [Thu, 13 Oct 1994 18:41:39 +0000 (18:41 +0000)] 
* bfd.c (bfd_scan_vma): Pass end argument on to strtoul.

29 years agoconfigure.in: handle i[345]86-*-linux*, not just -linux
Ken Raeburn [Thu, 13 Oct 1994 18:17:11 +0000 (18:17 +0000)] 
configure.in: handle i[345]86-*-linux*, not just -linux

29 years agote-netbsd532.h -> te-nbsd532.h
Ken Raeburn [Thu, 13 Oct 1994 15:45:43 +0000 (15:45 +0000)] 
te-netbsd532.h -> te-nbsd532.h

29 years ago * scripttempl/aout.sc: Set _etext and __etext to ., not
Ian Lance Taylor [Thu, 13 Oct 1994 15:26:35 +0000 (15:26 +0000)] 
* scripttempl/aout.sc: Set _etext and __etext to ., not
${DATA_ALIGNMENT}.  This is compatible with SunOS, and, with luck,
will not break any other system.  From Eric Valette
<ev@chorus.fr>.

29 years agocorrect comment
Ian Lance Taylor [Thu, 13 Oct 1994 03:21:47 +0000 (03:21 +0000)] 
correct comment

29 years ago * config/mips/tm-bigmips64.h: Just define TARGET_BYTE_ORDER and
Ian Lance Taylor [Thu, 13 Oct 1994 03:20:47 +0000 (03:20 +0000)] 
* config/mips/tm-bigmips64.h: Just define TARGET_BYTE_ORDER and
include tm-mips64.h.

29 years agoxcoffexec.c is gone
Stan Shebs [Thu, 13 Oct 1994 02:37:31 +0000 (02:37 +0000)] 
xcoffexec.c is gone

29 years ago * Makefile.in (ANNOTATE_OBS): New definition.
Stan Shebs [Thu, 13 Oct 1994 02:28:24 +0000 (02:28 +0000)] 
* Makefile.in (ANNOTATE_OBS): New definition.
(COMMON_OBS): Add exec.o.
(annotate.o): Remove extra compile rule.
* config/*/*.mh, config/*/*.mt: Remove exec.o from *DEPFILES lists
everywhere.

29 years agoIt works fully now.
Rob Savoye [Thu, 13 Oct 1994 02:04:51 +0000 (02:04 +0000)] 
It works fully now.

29 years agoCleanup debugging messages.
Rob Savoye [Thu, 13 Oct 1994 02:03:09 +0000 (02:03 +0000)] 
Cleanup debugging messages.

29 years ago * .gdbinit: Remove excess `end'.
Stan Shebs [Thu, 13 Oct 1994 02:00:07 +0000 (02:00 +0000)] 
  * .gdbinit: Remove excess `end'.

29 years ago * exec.c: Merge in RS6000 support from xcoffexec.c.
Stan Shebs [Thu, 13 Oct 1994 01:16:19 +0000 (01:16 +0000)] 
* exec.c: Merge in RS6000 support from xcoffexec.c.
(symfile.h, objfiles.h, xcoffsolib.h): Include.
(vmap): New global variable.
(exec_close): Close and free objects in vmap chain.
(exec_file_command) [IBM6000_TARGET]: Set up initial vmap.
(bfdsec_to_vmap, map_vmap): Moved here from xcoffexec.c.
(exec_files_info): Print vmap information.
* xcoffexec.c: Remove.
* config/rs6000/rs6000.mt, config/rs6000/rs6000lynx.mt
(TDEPFILES): Use exec.o instead of xcoffexec.o.
* TODO: Remove pertinent items.

29 years agoRenamed config/te-netbsd532.h to te-nbsd532.h.
Ken Raeburn [Thu, 13 Oct 1994 00:33:21 +0000 (00:33 +0000)] 
Renamed config/te-netbsd532.h to te-nbsd532.h.

29 years ago* config/cplus-dem.c: Removed. It isn't used. Even if it was,
J.T. Conklin [Wed, 12 Oct 1994 23:35:54 +0000 (23:35 +0000)] 
* config/cplus-dem.c: Removed.  It isn't used.  Even if it was,
  it's better to use the one in libiberty.

29 years agoCleanup debug logging, fix single stepping. WinBond works good!
Rob Savoye [Wed, 12 Oct 1994 23:12:47 +0000 (23:12 +0000)] 
Cleanup debug logging, fix single stepping. WinBond works good!

29 years ago* symbols.c (resolve_symbol_value, case O_symbol): Undo last change; it breaks
Ken Raeburn [Wed, 12 Oct 1994 22:53:26 +0000 (22:53 +0000)] 
* symbols.c (resolve_symbol_value, case O_symbol): Undo last change; it breaks
the rs6000 support, and doesn't seem to be needed.

29 years ago * ecoff.c (ecoff_set_symbol_info): Mark local stProc or stLabel
Ian Lance Taylor [Wed, 12 Oct 1994 21:51:04 +0000 (21:51 +0000)] 
* ecoff.c (ecoff_set_symbol_info): Mark local stProc or stLabel
symbols as BSF_DEBUGGING.
PR 5769.

29 years ago* opncls.c (bfd_realloc): Deleted, since it's broken and fixing it would make
Ken Raeburn [Wed, 12 Oct 1994 21:39:54 +0000 (21:39 +0000)] 
* opncls.c (bfd_realloc): Deleted, since it's broken and fixing it would make
it slow.  Besides, it isn't used much.
* elfcode.h (elf_map_symbols): Always allocate new storage for the symbol table.

This page took 0.050315 seconds and 4 git commands to generate.