2003-10-23 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index b160034ee2f1d0ca326d79e5961d94f0180da785..9d4e324f1c68a130448b164b147a8add9d63080c 100644 (file)
@@ -1,3 +1,360 @@
+2003-10-23  Andrew Cagney  <cagney@redhat.com>
+
+       * Makefile.in (stack.o): Add $(regcache_h).
+       * stack.c: Include "regcache.h"
+       (return_command): Rewrite.  Use get_frame_id and
+       get_selected_frame.  Eliminate "deprecated_selected_frame".  Warn
+       about unhandled return-values.
+       * value.h (set_return_value): Delete declaration.
+       * values.c (set_return_value): Delete function.
+
+2003-10-23  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * ia64-tdep.c: (ia64_frame_cache): Add new prev_cfm field.
+       (pseudo_regs): Add comment regarding register stack registers.
+       (ia64_alloc_frame_cache):  Initialize new prev_cfm field to 0.
+       (floatformat_valid): New static routine.
+       (floatformat_ia64_ext): Add name field and set up is_valid routine
+       to floatformat_valid().
+       (examine_prologue):  For the previous cfm, use
+       frame_unwind_register()
+       if the cfm is not stored in a register-stack register.  Save the
+       previous cfm value in the prev_cfm field.  Add debug output.
+       (ia64_frame_this_id): Use frame_id_build_special() to also register
+       the bsp.  Add debug output.
+       (ia64_sigtramp_frame_this_id): Ditto.
+       (ia64_frame_prev_register):  Look at cache saved_regs for a few more
+       registers and also add some checks for framelessness before accepting
+       current register values for fields such as return address.  For cfm,
+       use the cached prev_cfm field if available.  Add comment to explain
+       PSR logic.  Add debug output.
+       (ia64_sigtramp_frame_init_saved_regs): Save the bsp and sp addresses
+       as part of initialization.
+       (ia64_sigtramp_frame_cache): Hard-code stack size as it can't be
+       calculated.  Cache the bsp and cfm values.
+       (ia64_sigtramp_frame_prev_register): Add logic to this routine out
+       instead of using ia64_frame_prev_register() which doesn't expect most
+       registers to be saved.  The saved values for bsp and sp
+       can be taken from the cache.  Add debug output.
+       (ia64_push_dummy_call): Use frame_id_build_special() to also register
+       the bsp.
+
+2003-10-23  Jim Blandy  <jimb@redhat.com>
+
+       * osabi.c (gdbarch_init_osabi): A handler is okay if it's for an
+       architecture the current arch can run code for --- but not if it's
+       a superset.
+       (can_run_code_for): New function.
+
+2003-10-22  James E Wilson  <wilson@specifixinc.com>
+
+       * MAINTAINERS: Move myself from paper trail section back to write
+       after approval section.
+
+2003-10-22  Andrew Cagney  <cagney@redhat.com>
+
+       * exec.h: New file.
+       * win32-nat.c: Include "exec.h".
+       * solib.c: Include "exec.h".
+       * target.h (build_section_table): Delete declaration.
+       * somsolib.c: Include "exec.h".
+       (exec_ops): Delete extern declaration.
+       * rs6000-nat.c: Update copyright.  Include "exec.h".
+       (exec_ops): Delete extern declaration.
+       * pa64solib.c: Update copyright.  Include "exec.h".
+       (exec_ops): Delete extern declaration.
+       * exec.c: Update copyright.  Include "exec.h".
+       * corelow.c: Update dependencies.  Include "exec.h".
+       * Makefile.in (exec_h): Define.
+       (exec.o, somsolib.o): Update dependencies.
+       (pa64solib.o, corelow.o): Update dependencies.
+
+2003-10-22  Andrew Cagney  <cagney@redhat.com>
+
+       * target.c: Include "gdb_assert.h" (target_read): Call
+       "target_read_partial", not "target_write_partial".
+       (default_read_partial, default_write_partial): New function.
+       (target_read_partial, target_write_partial): Simplify, assume that
+       there is always a read/write method.
+       (update_current_target, add_target): Always set "to_read_partial"
+       and "to_write_partial".
+       (target_write, target_read): Fail on a zero byte transfer.
+       * Makefile.in (target.o): Update dependencies.
+       * target.h: Update copyright date.
+       (target_object): Fix typo.
+
+2003-10-22  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (convert_from_func_ptr_addr): Convert to a pure
+       multi-arch method, add "targ" parameter.
+       (struct target_ops): Declare.   
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * Makefile.in (c-valprint.o): Update dependencies.
+       * arch-utils.h: Update copyright.
+       (convert_from_func_ptr_addr_identity): Declare.
+       * arch-utils.c (convert_from_func_ptr_addr_identity): New function.
+       * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Update.
+       * rs6000-tdep.c (rs6000_convert_from_func_ptr_addr): Upate.
+       * ppc-linux-tdep.c (ppc64_linux_convert_from_func_ptr_addr): Update.
+       * infcall.c (find_function_addr, call_function_by_hand): Update.
+       * c-valprint.c: Include "target.h".
+       (print_function_pointer_address): Update.
+
+2003-10-22  Andrew Cagney  <cagney@redhat.com>
+
+       * target.c (target_close): New function.
+       (debug_to_close): Use "target_close".
+       (push_target): Use "target_close".
+       (unpush_target): Use "target_close".
+       (pop_target): Use "target_close".
+       * target.h (struct target_ops): Add "to_xclose".
+       (target_open): Delete macro.  Move comment to "to_open".
+       (target_close): Replace macro with function that takes a target.
+       * top.c (quit_target): Pass "current_target" to "target_close".
+
+2003-10-21  Elena Zannoni  <ezannoni@redhat.com>
+
+       * minsyms.c (lookup_minimal_symbol_text): Remove unused parameter.
+       Remove SOFUN_ADDRESS_MAYBE_MISSING ifdeffed code.
+       * symtab.h (lookup_minimal_symbol_text): Update.
+       * breakpoint.c (create_overlay_event_breakpoint,
+       create_longjmp_breakpoint): Update callers.
+       * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Update caller.
+       * symtab.c (find_pc_sect_line): Ditto.
+
+2003-10-21  Andrew Cagney  <cagney@redhat.com>
+
+       * target.c (errno): Delete extern declaration.
+
+2003-10-20  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * ia64-tdep.c: Change all occurrences of
+       DEPRECATED_REGISTER_RAW_SIZE to use register_size() instead.
+       (ia64_frame_prev_register): Minor whitespace change.
+
+2003-10-20  Michael Chastain  <mec@shout.net>
+
+       * config/djgpp/fnchange.lst: Add lines for:
+       sim/testsuite/sim/frv/interrupts/Ipipe-fr400.cgs,
+       sim/testsuite/sim/frv/interrupts/Ipipe-fr500.cgs,
+       sim/testsuite/sim/frv/interrupts/badalign-fr550.cgs,
+       sim/testsuite/sim/frv/interrupts/compound-fr550.cgs,
+       sim/testsuite/sim/frv/interrupts/data_store_error-fr550.cgs,
+       sim/testsuite/sim/frv/interrupts/fp_exception-fr550.cgs,
+       sim/testsuite/sim/frv/interrupts/insn_access_error-fr550.cgs.
+
+2003-10-20  Andrew Cagney  <cagney@redhat.com>
+
+       * values.c (register_value_being_returned): Update comments.  Use
+       "gdbarch_return_value" when available.
+       (using_struct_return): Ditto.
+       (set_return_value): Ditto.  Use "gdbarch_return_value" when
+       available..  Print a warning, and not an error, when an unhandled
+       return type is encountered.
+       * infcmd.c: Include "gdb_assert.h".
+       (print_return_value): When gdbarch_return_value_p, and using
+       struct return, assume that the value is not available.
+       * defs.h (return_value_convention): Define.
+       * gdbarch.sh (gdbarch_return_value): New predicate method.
+       * gdbarch.h, gdbarch.c: Re-generate
+       * ppc-sysv-tdep.c (return_value_convention): Delete definition.
+
+2003-10-20  Andrew Cagney  <cagney@redhat.com>
+
+       * symtab.c: Replace "struct sec" with "struct bfd_section".
+       * objfiles.c, linespec.c, blockframe.c, block.c: Ditto.
+
+2003-10-19  Michael Chastain  <mec@shout.net>
+
+       * config/djgpp/fnchange.lst: Add lines for:
+       gdb/amd64nbsd-nat.c, gdb/amd64nbsd-tdep.c,
+       gdb/i386fbsd-nat.c, gdb/i386fbsd-tdep.c,
+       gdb/sparc64fbsd-nat.c, gdb/sparc64bsd-tdep.c.
+
+2003-10-19  Mark Kettenis  <kettenis@gnu.org>
+
+       * amd64fbsd-nat.c (fetch_inferior_registers,
+       store_inferior_registers): Remove functions.
+       * config/i386/fbsd64.mh (NATDEPFILES): Add amd64bsd-nat.o.
+
+2003-10-18  Mark Kettenis  <kettenis@gnu.org>
+
+       Add NetBSD/amd64 native configuration:
+       * x86-64-tdep.h (amd64nbsd_r_reg_offset): Add extern declarations.
+       * amd64nbsd-tdep.c: New file.
+       * amd64nbsd-nat.c: New file.
+       * amd64bsd-nat.c: New file.
+       * config/i386/nbsd64.mh: New file.
+       * config/i386/nbsd64.mt: New file.
+       * configure.host: Add x86_64-*-netbsd*.
+       * configure.tgt: Add x86_64-*-netbsd*.
+       * Makefile.in (amd64bsd-nat.o, amd64nbsd-nat.o, amd64nbsd-tdep.o):
+       New targets.
+       * NEWS (New native configurations): Mention NetBSD/amd64.
+
+2003-10-17  Michael Chastain  <mec@shout.net>
+
+       * config/djgpp/fnchange.lst: Remove dead lines for:
+       bfd/elf32-i386qnx.c, bfd/elf32-ppcqnx.c, bfd/elf32-shqnx.c,
+       bfd/elf32-sh-lin.c, bfd/elf32-sh-nbsd.c, bfd/elf32-sh64-nbsd.c,
+       bfd/elf64-alpha-fbsd.c, bfd/elf64-sh64-nbsd.c,
+       gdb/alphanbsd-nat.c, gdb/config/i386/tm-i386mk.h,
+       gdb/config/i386/tm-i386v42mp.h, gdb/config/i386/xm-i386mach.h,
+       gdb/config/i386/xm-i386mk.h, gdb/config/i386/xm-i386v32.h,
+       gdb/config/m68k/apollo68v.mh, gdb/config/m68k/nm-apollo68v.h,
+       gdb/config/m68k/xm-apollo68v.h, gdb/config/m88k/tm-delta88v4.h,
+       gdb/config/mips/tm-bigmips64.h, gdb/config/mips/tm-embed64.h,
+       gdb/config/mips/tm-embedl.h, gdb/config/mips/tm-embedl64.h,
+       gdb/config/mips/tm-vr4300el.h, gdb/config/mips/tm-vr4xxxel.h,
+       gdb/config/mips/tm-vr5000el.h, gdb/config/sparc/tm-sparclet.h,
+       gdb/config/sparc/tm-sparclite.h,
+       gdb/gdbtk/generic/ChangeLog-2001,
+       gdb/gdbtk/library/ChangeLog-2001, gdb/remote-adapt.c,
+       gdb/remote-eb.c, gdb/remote-mm.c, gdb/remote-nrom.c,
+       gdb/remote-udi.c, gdb/remote-vx29k.c, gdb/remote-vx960.c,
+       gdb/sparclet-rom.c, gdb/sparclet-stub.c,
+       gdb/testsuite/gdb.mi/mi0-var-block.exp,
+       gdb/testsuite/gdb.mi/mi0-var-child.exp,
+       gdb/testsuite/gdb.mi/mi0-var-cmd.exp,
+       gdb/testsuite/gdb.mi/mi0-var-display.exp,
+       itcl/iwidgets3.0.0/demos/extfileselectionbox,
+       itcl/iwidgets3.0.0/demos/extfileselectiondialog,
+       itcl/iwidgets3.0.0/demos/fileselectionbox,
+       itcl/iwidgets3.0.0/demos/fileselectiondialog,
+       itcl/iwidgets3.0.0/demos/html/buttonbox.n.html,
+       itcl/iwidgets3.0.0/demos/html/canvasprintbox.n.html,
+       itcl/iwidgets3.0.0/demos/html/canvasprintdialog.n.html,
+       itcl/iwidgets3.0.0/demos/html/combobox.n.html,
+       itcl/iwidgets3.0.0/demos/html/dialog.n.html,
+       itcl/iwidgets3.0.0/demos/html/dialogshell.n.html,
+       itcl/iwidgets3.0.0/demos/html/entryfield.n.html,
+       itcl/iwidgets3.0.0/demos/html/feedback.n.html,
+       itcl/iwidgets3.0.0/demos/html/fileselectionbox.n.html,
+       itcl/iwidgets3.0.0/demos/html/fileselectiondialog.n.html,
+       itcl/iwidgets3.0.0/demos/html/hyperhelp.n.html,
+       itcl/iwidgets3.0.0/demos/html/iwidgets2.2.0UserCmds.html,
+       itcl/iwidgets3.0.0/demos/html/labeledwidget.n.html,
+       itcl/iwidgets3.0.0/demos/html/menubar.n.html,
+       itcl/iwidgets3.0.0/demos/html/messagedialog.n.html,
+       itcl/iwidgets3.0.0/demos/html/notebook.n.html,
+       itcl/iwidgets3.0.0/demos/html/optionmenu.n.html,
+       itcl/iwidgets3.0.0/demos/html/panedwindow.n.html,
+       itcl/iwidgets3.0.0/demos/html/promptdialog.n.html,
+       itcl/iwidgets3.0.0/demos/html/pushbutton.n.html,
+       itcl/iwidgets3.0.0/demos/html/radiobox.n.html,
+       itcl/iwidgets3.0.0/demos/html/scrolledcanvas.n.html,
+       itcl/iwidgets3.0.0/demos/html/scrolledframe.n.html,
+       itcl/iwidgets3.0.0/demos/html/scrolledhtml.n.html,
+       itcl/iwidgets3.0.0/demos/html/scrolledlistbox.n.html,
+       itcl/iwidgets3.0.0/demos/html/scrolledtext.n.html,
+       itcl/iwidgets3.0.0/demos/html/selectionbox.n.html,
+       itcl/iwidgets3.0.0/demos/html/selectiondialog.n.html,
+       itcl/iwidgets3.0.0/demos/html/shell.n.html,
+       itcl/iwidgets3.0.0/demos/html/spindate.n.html,
+       itcl/iwidgets3.0.0/demos/html/spinint.n.html,
+       itcl/iwidgets3.0.0/demos/html/spinner.n.html,
+       itcl/iwidgets3.0.0/demos/html/spintime.n.html,
+       itcl/iwidgets3.0.0/demos/html/tabnotebook.n.html,
+       itcl/iwidgets3.0.0/demos/html/tabset.n.html,
+       itcl/iwidgets3.0.0/demos/html/toolbar.n.html,
+       itcl/iwidgets3.0.0/demos/scrolledcanvas,
+       itcl/iwidgets3.0.0/demos/scrolledframe,
+       itcl/iwidgets3.0.0/demos/scrolledhtml,
+       itcl/iwidgets3.0.0/demos/scrolledlistbox,
+       itcl/iwidgets3.0.0/demos/scrolledtext,
+       itcl/iwidgets3.0.0/demos/selectionbox,
+       itcl/iwidgets3.0.0/demos/selectiondialog,
+       itcl/iwidgets3.0.0/doc/canvasprintbox.n,
+       itcl/iwidgets3.0.0/doc/canvasprintdialog.n,
+       itcl/iwidgets3.0.0/doc/extfileselectionbox.n,
+       itcl/iwidgets3.0.0/doc/extfileselectiondialog.n,
+       itcl/iwidgets3.0.0/doc/fileselectionbox.n,
+       itcl/iwidgets3.0.0/doc/fileselectiondialog.n,
+       itcl/iwidgets3.0.0/doc/scopedobject.n.backup,
+       itcl/iwidgets3.0.0/doc/scrolledcanvas.n,
+       itcl/iwidgets3.0.0/doc/scrolledframe.n,
+       itcl/iwidgets3.0.0/doc/scrolledhtml.n,
+       itcl/iwidgets3.0.0/doc/scrolledlistbox.n,
+       itcl/iwidgets3.0.0/doc/scrolledtext.n,
+       itcl/iwidgets3.0.0/doc/selectionbox.n,
+       itcl/iwidgets3.0.0/doc/selectiondialog.n,
+       itcl/iwidgets3.0.0/generic/canvasprintbox.itk,
+       itcl/iwidgets3.0.0/generic/canvasprintdialog.itk,
+       itcl/iwidgets3.0.0/generic/extfileselectionbox.itk,
+       itcl/iwidgets3.0.0/generic/extfileselectiondialog.itk,
+       itcl/iwidgets3.0.0/generic/fileselectionbox.itk,
+       itcl/iwidgets3.0.0/generic/fileselectiondialog.itk,
+       itcl/iwidgets3.0.0/generic/scrolledcanvas.itk,
+       itcl/iwidgets3.0.0/generic/scrolledframe.itk,
+       itcl/iwidgets3.0.0/generic/scrolledhtml.itk,
+       itcl/iwidgets3.0.0/generic/scrolledlistbox.itk,
+       itcl/iwidgets3.0.0/generic/scrolledtext.itk,
+       itcl/iwidgets3.0.0/generic/scrolledwidget.itk,
+       itcl/iwidgets3.0.0/generic/selectionbox.itk,
+       itcl/iwidgets3.0.0/generic/selectiondialog.itk,
+       itcl/iwidgets3.0.0/tests/canvasprintbox.test,
+       itcl/iwidgets3.0.0/tests/canvasprintdialog.test,
+       itcl/iwidgets3.0.0/tests/extfileselectionbox.test,
+       itcl/iwidgets3.0.0/tests/extfileselectiondialog.test,
+       itcl/iwidgets3.0.0/tests/fileselectionbox.test,
+       itcl/iwidgets3.0.0/tests/fileselectiondialog.test,
+       itcl/iwidgets3.0.0/tests/scrolledcanvas.test,
+       itcl/iwidgets3.0.0/tests/scrolledframe.test,
+       itcl/iwidgets3.0.0/tests/scrolledhtml.test,
+       itcl/iwidgets3.0.0/tests/scrolledlistbox.test,
+       itcl/iwidgets3.0.0/tests/scrolledtext.test,
+       itcl/iwidgets3.0.0/tests/selectionbox.test,
+       itcl/iwidgets3.0.0/tests/selectiondialog.test,
+       itcl/iwidgets3.0.0/unix/iwidgets.tcl.in,
+       itcl/iwidgets3.0.0/unix/pkgIndex.tcl.in,
+       tix/docs/Release-4.1.0.html, tix/docs/Release-4.1.0.txt,
+       tix/docs/Release-4.1a2.html, tix/docs/Release-4.1a2.txt,
+       tix/docs/Release-4.1a3.html, tix/docs/Release-4.1a3.txt,
+       tix/docs/Release-4.1b1.html, tix/docs/Release-4.1b1.txt,
+       tix/docs/Release-4.1b2.html, tix/docs/Release-4.1b2.txt,
+       tix/tixConfig.sh.in, tix/unix/tk4.2/pkgIndex.tcl.in,
+       tix/unix/tk8.0/pkgIndex.tcl.in, tix/unix/tk8.0/pkgIndex.tcl.in,
+       tix/unix/tk8.1/pkgIndex.tcl.in, tix/win/tkConsole41.c,
+       tix/win/tkConsole42.c, tix/win/tkConsole80a1.c,
+       tix/win/tkConsole80b1.c, tix/win/tkConsole81.c, tk/doc/tk4.0.ps,
+       tk/mac/tkMacProjects.sit.hqx.
+
+2003-10-17  Andrew Cagney  <cagney@redhat.com>
+
+       * target.c (target_section_by_addr): New function.
+       (do_xfer_memory): Use "target_section_by_addr".
+       * target.h (target_section_by_addr): Declare.
+
+       * target.h (struct target_ops): Add "to_read_partial" and
+       "to_write_partial", delete "to_query".
+       (target_read_partial, target_write_partial): Declare.
+       (target_read, target_write): Declare.
+       (target_query): Delete macro.
+       * target.c (target_read_partial): New function.
+       (target_write_partial, target_read, target_write): New function.
+       (update_current_target): Delete inheritance of "to_query".  Add
+       comments about "to_read_partial" and "to_write_partial".
+       (debug_to_partial_read, debug_to_partial_write): New functions.
+       (debug_to_query): Delete function.
+       (setup_target_debug): Set "to_read_partial" and "to_write_partial"
+       instead of "to_query".
+       * remote.c (remote_read_partial): Replace "remote_query".
+       (init_remote_ops): Set "to_read_partial" instead of "to_query".
+       (init_remote_async_ops): Ditto.
+       * kod.c (gdb_kod_query): Make "bufsize" a LONGEST.  Use
+       "target_read_partial" instead of "target_query".
+       * avr-tdep.c (avr_io_reg_read_command): Make "bufsize" a LONGEST.
+       Use "target_read_partial" instead of "target_query".
+
+2003-10-17  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * frame.h (struct frame_id): Add new field: special_addr.
+       (frame_id_build_special): New prototype.
+       * frame.c (frame_id_build_special): New function.
+       (frame_id_build): Change to call frame_id_build_special().
+       (frame_id_eq): Change to also test special_addr field. 
+       (frame_id_inner): Update comment. 
+
 2003-10-17  Andrew Cagney  <cagney@redhat.com>
 
        * target.c (update_current_target): Perform the target cleanup.
This page took 0.033024 seconds and 4 git commands to generate.