aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2001-08-21* arm-tdep.c (convert_from_extended, convert_to_extended): DeleteAndrew Cagney1-0/+14
assembler version of function. (convert_from_extended, convert_to_extended): Rewrite. Use floatformat_to_doublest, floatformat_from_doublest, floatformat_arm_ext_big, floatformat_arm_ext_littlebyte_bigword. (arm_push_arguments): Use extract_floating and store_floating to perform floating point conversions. (SWAP_TARGET_AND_HOST): Delete macro. * arm-linux-tdep.c (arm_linux_push_arguments): Use extract_floating and store_floating to perform floating point conversions.
2001-08-21* gdbtypes.h (struct type): Clarify meaning of field ``length''.Andrew Cagney1-0/+4
2001-08-17 * varobj.c (varobj_update): Change first parameter toKeith Seitz1-0/+10
pointer to struct varobj*. This function can delete varobjs, so we need to give callers the new varobj when this happens. (value_of_root): Update "var", too, if "var_handle" changes. * varobj.h (varobj_update): Likewise.
2001-08-17 * Makefile.in (varobj_h): Define.Keith Seitz1-0/+6
(mi-cmd-var.o): Depends on varobj_h. (gdbtk-varobj.o): Change varobj.h to $(varobj_h).
2001-08-16 * configure.in (GDBTK_SRC_DIR): We must have autoconfKeith Seitz1-0/+10
give us the absolute path to the source directory. * configure: Regenerated. * Makefile.in (GDBTK_SRC_DIR): Add variable so that autoconf can substitue it in for us. (gdbtk.o): Pass in GDBTK_SRC_DIR instead of srcdir. We really do need an absolute pathname.
2001-08-15 * Makefile.in (GDBTK_VERSION): Set a version number.Keith Seitz1-0/+17
(GDBTK_LIBRARY): New variable to point to location where gdbtk will install its tcl library. Changed all refereneces to $(datadir)/insight1.0 to $(GDBTK_LIBRARY). (SUBDIR_GDBTK_ALL): Remove "all-gdbtk". No longer needed. (SUBDIR_GDBTK_CLEAN): Remove "clean-gdbtk". No longer needed. (all-gdbtk): Remove. (install-gdbtk): Remove. (gdbtk.o): Pass srcdir to file when compiling. Also from Ian Roxborough: * Makefile.in: Changed all references to the install directory "gdbtcl" to read "insight1.0".
2001-08-15 * arch-utils.c (generic_skip_trampoline_code): New function.Corinna Vinschen1-0/+9
* arch-utils.h (generic_skip_trampoline_code): Declare external. * gdbarch.c: Regeberated from gdbarch.sh. * gdbarch.h: Ditto. * gdbarch.sh (SKIP_TRAMPOLINE_CODE): Multi-arch. * infrun.c: Remove default setting of SKIP_TRAMPOLINE_CODE macro.
2001-08-152001-08-14 Daniel Jacobowitz <drow@mvista.com>H.J. Lu1-0/+10
H.J. Lu (hjl@gnu.org) * partial-stab.h: valu should be a CORE_ADDR. 2001-08-14 H.J. Lu (hjl@gnu.org) * dbxread.c (SWAP_SYMBOL): Removed. (INTERNALIZE_SYMBOL): Check sign extended vma.
2001-08-14* top.c (SIGSETJMP): Protect env argument with parentheses.Christopher Faylor1-0/+5
(SIGLONGJMP): Protect env argument with parentheses.
2001-08-12* config/mn10300/mn10300.mt (TM_FILE): Delete.Andrew Cagney1-0/+7
* configure.tgt: Add mn10300 to list of mulit-arch targets. * config/mn10300/tm-mn10300.h: Delete file. Move contents ... * mn10300-tdep.c: To here.
2001-08-12Convert some floatformat_{to,from}_double to floatformat_{to,from}_doublest.Andrew Cagney1-0/+8
2001-08-12* config/mn10300/tm-mn10300.h (PC_REGNUM, SP_REGNUM): Delete.Andrew Cagney1-0/+6
* mn10300-tdep.c (mn10300_gdbarch_init): Initialize pc_regnum and sp_regnum.
2001-08-12* doublest.c (convert_doublest_to_floatformat): RenameAndrew Cagney1-0/+14
floatformat_from_doublest. Make static. (convert_floatformat_to_doublest): Rename floatformat_to_doublest. Make static. (floatformat_to_doublest): New function. (floatformat_from_doublest): New function. (host_float_format, host_double_format, host_long_double_format): New static variables. (store_floating, extract_floating): Always use floatformat_to_doublest and floatformat_from_doublest. * doublest.h (HOST_LONG_DOUBLE_FORMAT): Delete macro.
2001-08-12* config/mn10300/tm-mn10300.h (INIT_FRAME_PC): Delete.Andrew Cagney1-0/+5
* mn10300-tdep.c (mn10300_gdbarch_init): Initialize init_frame_pc.
2001-08-11* target.h (TARGET_VIRTUAL_FRAME_POINTER): Delete, multi-arched.Andrew Cagney1-0/+21
* gdbarch.sh (TARGET_VIRTUAL_FRAME_POINTER): Add. * gdbarch.h, gdbarch.c: Regenerate. * arch-utils.h (legacy_virtual_frame_pointer): Declare. * arch-utils.c: Include "gdb_assert.h". (legacy_virtual_frame_pointer): Define. * Makefile.in (arch-utils.o): Depends on gdb_assert.h. * tracepoint.c (encode_actions): Make frame_reg an int. Make frame_offset a LONGEST. * ax-gdb.c (gen_frame_args_address): Ditto. (gen_frame_locals_address): Ditto. * mn10300-tdep.c (mn10300_gdbarch_init): Initialize virtual_frame_pointer. (mn10300_virtual_frame_pointer): Make static. Update parameter list to match function signature. * config/mn10300/tm-mn10300.h (TARGET_VIRTUAL_FRAME_POINTER): Delete.
2001-08-11 * gdb-events.sh: Add architecture_changed event.Keith Seitz1-0/+9
* gdbarch.sh: Include gdb-event.h. (gdbarch_update_p): Notify UIs when architecture changes. * gdb-events.h: Regenerated. * gdb-events.c: Regenerated. * gdbarch.c: Regenerated.
2001-08-102001-08-10 Michael Snyder <msnyder@redhat.com>Michael Snyder1-0/+7
* regcache.c (legacy_write_register_gen): Don't 'optimize out' a write_register to a pseudo-reg. Target_store_pseudo_register needs to get called, because these regs may be computed and may have side-effects.
2001-08-10 * gdb-events.sh: Deal with event notifications with noKeith Seitz1-0/+5
arguments.
2001-08-102001-08-10 Orjan Friberg <orjanf@axis.com>Orjan Friberg1-0/+4
* remote.c (read_frame): Correct off-by-one error in condition.
2001-08-082001-08-08 Don Howard <dhoward@redhat.com>Don Howard1-0/+5
* stabsread.c (read_type): Add support for const and volatile modifiers.
2001-08-03 * core-regset.c (fetch_core_registers): Remove HAVE_GREGSET_TDaniel Jacobowitz1-0/+5
and HAVE_FPREGSET_T checks. Use gdb_gregset_t and gdb_fpregset_t.
2001-08-02 * defs.h (SLASH_STRING): If not defined, setKeith Seitz1-0/+6
to "/", regardless of _WIN32, __CYGWIN__, or whatnot.
2001-08-02* cli/cli-decode.h: Include "gdb_regex.h" instead ofMark Kettenis1-0/+3
"gnu-regex.h".
2001-08-02* NEWS: Update.Mark Kettenis1-0/+4
2001-08-02 * config/i386/xm-go32.h: Include xm-i386.h.Eli Zaretskii1-0/+5
(HOST_BYTE_ORDER, HOST_LONG_DOUBLE_FORMAT): Remove definitions.
2001-08-02 The following changes avoid polluting global namespace with theEli Zaretskii1-0/+36
`enable' and `disable' identifiers, because some platforms define in their system headers symbols with global scope that go by those names. * breakpoint.h (enum enable_state): Rename from `enum enable'. Also rename all the enum members to have the "bp_" prefix. (struct breakpoint): Rename the `enable' member to `enable_state'. (enum bpdisp): Rename all members to have the "disp_" prefix. * breakpoint.c: All users of `enum enable' and `enum bpdisp' changed. (args_for_catchpoint_enable): Rename the `enable' member to `enable_p'. All users changed. * tracepoint.h (enum enable): Remove. (struct tracepoint): The member `enabled' is now `int enabled_p'. * tracepoint.c: All users of the `enabled' member changed. * printcmd.c (struct display): The `status' member is now an int. * memattr.h (struct mem_region): Rename the `status' member to `enabled_p'. (enum enable): Remove. * memattr.c: Change all users of the `status' member of struct mem_region to use `enabled_p' instead. * infcmd.c (run_stack_dummy): Use disp_del instead of del. * go32-nat.c: Remove the kludgey work-around for conflicts between <dos.h> and "breakpoint.h". * tui/tuiSourceWin.c: Use disp_del instead of del. * tui/tuiSource.c: Use disp_del instead of del. * tui/tuiDisassem.c: Use disp_del instead of del.
2001-08-02 * MAINTAINERS: Add myself to the write-after-approval list.Corinna Vinschen1-0/+6
* ser-tcp.c (tcp_open): Use `localhost' as default host if no hostname is given.
2001-08-01* doublest.h (store_floating, floatformat_to_doublest): Make INAndrew Cagney1-0/+10
paramter a const void pointer. (floatformat_from_doublest): Make IN const, Make OUT a void pointer. * doublest.c (floatformat_to_doublest): Update. (floatformat_from_doublest): Update. (extract_floating): Update.
2001-08-01* defs.h (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)Andrew Cagney1-0/+40
(HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT) (HOST_LONG_DOUBLE_FORMAT, DOUBLEST) (floatformat_to_doublest, floatformat_from_doublest) (floatformat_is_negative, floatformat_is_nan) (floatformat_mantissa, store_floating) (extract_floating): Move declaration from here. * doublest.h: To here. New file. * utils.c (get_field, floatformat_to_doublest, put_field) (ldfrexp, floatformat_from_doublest, floatformat_is_negative) (floatformat_is_nan, floatformat_mantissa) (FLOATFORMAT_CHAR_BIT): Move from here. * doublest.c: To here. New file. * findvar.c (store_floating, extract_floating): Move from here. * doublest.c: To here. * Makefile.in (SFILES): Add doublest.c. (COMMON_OBS): Add doublest.o. (doublest.o): Specify dependencies. (doublest_h): Define. * config/m88k/tm-m88k.h: Include "doublest.h". * config/i960/tm-i960.h: Ditto. * config/i386/tm-symmetry.h: Ditto. * rs6000-tdep.c, valarith.c: Ditto. * valprint.c, stabsread.c, sh-tdep.c: Ditto. * ia64-tdep.c, i387-tdep.c, i386-tdep.c: Ditto. * values.c, arm-tdep.c, arm-linux-tdep.c: Ditto. * alpha-tdep.c, ax.h, expression.h: Ditto. * sh-tdep.c, parse.c, top.c, value.h: Ditto. * Makefile.in (arm-tdep.o): Add $(doublest_h). (i386-tdep.o, i387-tdep.o, ia64-tdep.o): Ditto. (rs6000-tdep.o, stabsread.o, valarith.o): Ditto. (values.o, valprint.o, arm-linux-tdep.o): Ditto. (alpha-tdep.o, ax_h, parse.o, top.o, value_h): Ditto. (parser_defs_h): Ditto. (expression_h): Add $(doublest_h) and $(symtab_h).
2001-08-01* Makefile.in: Sort header definitions.Andrew Cagney1-0/+9
(parser_defs_h, dis_asm_h, annotate_h, gdbthread_h): Define. Replace parser-defs.h with $(parser_defs_h). Replace $(dis-asm_h) and $(dis-asm.h) with $(dis_asm_h). Replace annotate.h with $(annotate_h). Replace target.h with $(target_h). Replace gdbthread.h with $(gdb_thread_h). Replace symfile.h with $(symfile_h).
2001-08-01Fix a typo in my entry from 2001-06-13.Eli Zaretskii1-1/+1
2001-07-31* config/i386/xm-i386.h: New file.Mark Kettenis1-0/+10
* config/i386/xm-fbsd.h: Removed. * config/i386/xm-linux.h: Removed. * config/i386/fbsd.mh: Reorganize a bit. (XM_FILE): Set to xm-i386.h instead of xm-fbsd.h. * config/i386/linux.mh (XM_FILE): Set to xm-i386.h insread of xm-linux.h.
2001-07-30* dwarf2read.c (dwarf2_build_psymtabs_hard): Doc fix.Jim Blandy1-0/+4
2001-07-30 * configure.in: Only invoke AC_FUNC_SETPGRP if not cross-compiling.Daniel Jacobowitz1-0/+6
Check for SETPGRP_VOID separately if cross-compiling and ISO C headers are available.
2001-07-30* config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Redefine to callMark Kettenis1-0/+3
i386_dwarf_reg_to_regnum.
2001-07-30* i386-tdep.c (i386_register_convert_to_virtual): ReplaceMark Kettenis1-0/+7
assertion with a warning if we're asked to convert towards a non-floating-point type. Zero out the the buffer where the data is supposed to be stored in that case.
2001-07-29Unset CDPATH before doing annything else.Eli Zaretskii1-0/+2
2001-07-29 * go32-nat.c (get_cr3): Temporary disable support for page tablesEli Zaretskii1-0/+3
in UMBs, as it is incomplete.
2001-07-29 Support for stepping through longjmp in DJGPP programs:Eli Zaretskii1-0/+8
* config/i386/tm-go32.h (JB_ELEMENT_SIZE, JB_PC): New macros. (GET_LONGJMP_TARGET): Define to call get_longjmp_target. (get_longjmp_target): Add prototype.
2001-07-28Fix some PID/TPID fallout for HP/UX.Andrew Cagney1-0/+7
From 2001-07-22 Rodney Brown <rbrown64@csc.com.au>: * infttrace.c (ptrace_wait): Match external declaration, and match target_post_wait declaration.
2001-07-28(cris): Set --enable-gdb-build-warnings flag to -w.Andrew Cagney1-0/+1
2001-07-28* MAINTAINERS: Add Orjan Friberg as cris target maintainer.Andrew Cagney1-0/+4
2001-07-28From 2001-07-23 Andreas Schwab <schwab@suse.de>:Andrew Cagney1-0/+13
* config/m68k/tm-m68k.h (TARGET_LONG_DOUBLE_FORMAT): Define. (TARGET_LONG_DOUBLE_BIT): Define. (REGISTER_VIRTUAL_SIZE): Return 12 for floating point registers. (MAX_REGISTER_VIRTUAL_SIZE): Increase to 12. (REGISTER_VIRTUAL_TYPE): Return builtin_type_long_double for floating point registers. (REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL) (REGISTER_CONVERT_TO_RAW): Remove. * config/m68k/xm-linux.h (HOST_LONG_DOUBLE_FORMAT): Define.
2001-07-28Move libgdb library functions to gdb.h (new file).Andrew Cagney1-0/+13
Update everything related to this.
2001-07-28 * Makefile.in (SUBDIR_TUI_OBS): Add tui-out.o, tui-hooks.o.Stephane Carrez1-0/+8
(SUBDIR_TUI_SRCS): Add tui-out.c tui-hooks.c (SFILES): Likewise. (tui-out.o): Define dependencies. (tui-hooks.o): Likewise.
2001-07-28* MAINTAINERS: Update e-mail address of active @cygnus.comAndrew Cagney1-0/+5
maintainers to @redhat.com.
2001-07-28* README (Known bugs): Delete section.Andrew Cagney1-0/+7
(Kernel debugging): Delete section. (Languages other than C): Delete section. (Host/target specific installation notes) New section.
2001-07-28* config/i386/tm-i386.h (STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,Mark Kettenis1-0/+10
DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): New defines. (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum): New prototypes. * config/i386/tm-fbsd.h, config/i386/tm-i386gnu.h, config/i386/tm-linux.h (STAB_REG_TO_REGNUM): Redefine to call i386_dwarf_reg_to_regnum. * i386-tdep.c (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum): New functions.
2001-07-28* i386-tdep.c: Include "gdb_assert.h"Mark Kettenis1-0/+9
(i386_register_convert_to_virtual): Fix such that it can handle conversion to any floating-point type. Assert that we are dealing with a floating-point first. (i386_register_convert_to_raw): Assert that TYPE is a floating-point type with length 12.
2001-07-27Added dependency of gdb/insight on tcl and tk libraries.John R. Moore1-0/+6