X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2FChangeLog;h=8d5b70e565be95b96a8de506e5f111edb294ef59;hb=6837a0a2a98f17adfd4b3723b6130d3ae4ae258e;hp=118da3821fc5cfc30717312f21877d6951588388;hpb=513d6ebaf76b13edbf58fe3577647924cd0fcb52;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 118da3821f..8d5b70e565 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,464 @@ +2000-03-23 Michael Snyder + + * sol-thread.c (ps_pglobal_lookup): Change argument type from + paddr_t to psaddr_t. This mistake appears to date from an + erroneous man page in Solaris 2.5 -- the correct type from the + system headers has always been psaddr_t. + (ps_pdread, ps_pdwrite, ps_ptread, ps_ptwrite): ditto. + (rw_common): ditto. + +2000-03-22 Kevin Buettner + + * ia64-linux-nat.c: Fix copyright. + (fill_gregset): Minor formatting fix. + * ia64-tdep.c (template_encoding_table, fetch_instruction, + examine_prologue): Clean up some compiler warnings. + (is_float_or_hfa_type_recurse, is_float_or_hfa_type, find_func_descr, + find_global_pointer, find_extant_func_descr): New functions. + (ia64_use_struct_convention, ia64_extract_return_value, + ia64_push_arguments): Handle HFAs. + (ia64_push_arguments): Find (or build) a function descriptor + when given a function address. + (ia64_push_return_address): Moved code for finding the + global pointer into its own function, find_global_pointer (). + +2000-03-22 Elena Zannoni + + * event-loop.c (handle_file_event): Run through indent. + +2000-03-22 Elena Zannoni + + From Philippe De Muyter + + * event-loop.c (sys/types.h): File now included unconditionally. + (use_poll): New variable.. + (gdb_notifier): poll- and select-versions merged. + (add_file_handler): If HAVE_POLL, check whether poll is usable, + and reset `use_poll' if not. + (create_file_handler): Select poll- or select-version according to + `use_poll'. + (delete_file_handler, handle_file_event): Likewise. + (gdb_wait_for_event, poll_timers): Likewise. + +2000-03-22 Daniel Berlin + * command.c (apropos_cmd_helper): New function, meat of the + apropos command. + (apropos_command): New apropos command to search command + names/documentation for regular expressions. + (_initialize_command): Add the apropos command. + +2000-03-22 Peter Schauer + + * printcmd.c (print_scalar_formatted): Truncate addresses to the + size of a target pointer before passing them to print_address. + +2000-03-22 Mark Kettenis + + * config/i386/tm-i386aix.h (I386_AIX_TARGET): Remove. + * config/i386/tm-linux.h (LOW_RETURN_REGNUM, HIGH_RETURN_REGNUM): + Remove + * i386-tdep.c (LOW_RETURN_REGNUM, HIGH_RETURN_REGNUM): New defines. + (i386_extract_return_value): Rewritten. Correctly support all + floating-point types and large integer types on targets that use + the standard i386 GDB register layout and return floating-point + values in the FPU. + +Wed Mar 22 15:09:34 2000 Andrew Cagney + + * configure.in (CONFIG_INITS): Do not append remote-nrom.c + +2000-03-21 J.T. Conklin + + * i386/nbsd.mh (NATDEPFILES): Change i386b-nat.o to i386nbsd-nat.o. + * i386nbsd-nat.c: New file. + + * i386/tm-nbsd.h (NUM_REGS): Removed. + (HAVE_I387_REGS): Defined. + * i386/nm-nbsd.h (FLOAT_INFO): Removed. + + * tm-nbsd.h (IN_SOLIB_CALL_TRAMPOLINE): Define if not + SVR4_SHARED_LIBS. + +Wed Mar 22 11:18:59 2000 Andrew Cagney + + * MAINTAINERS: Add Jim Blandy to breakpoint maintainers. David + taylor is the Solaris/SPARC maintainer. Add Jonathan Larmour to + the write after approval list. + +2000-03-21 Kevin Buettner + + * symtab.h (MAX_SECTIONS, struct section_addr_info, + symbol_file_add): Move declarations from here... + * symfile.h: ...to here. + + * solib.c (symbol_add_stub): Make symbol_file_add () aware of + all section addresses, not just .text. + * symfile.h, symfile.c (free_section_addr_info, + build_section_addr_info_from_section_table): New functions. + + * symfile.h (MAX_SECTIONS): Increase value to 40. + * symfile.c (syms_from_objfile): Add bounds check prior to + accessing ``other'' array in a section_addr_info_struct. + Remove unused variable section_offsets. + (add_symbol_file_command): Remove unused variable text_addr. + +2000-03-21 Eli Zaretskii + + * breakpoint.c (bpstat_stop_status): Don't stop if a read + watchpoint appears to break, but the watched value changed. + +2000-03-21 Jim Blandy + + * gdbarch.sh: Emit a definition and declaration for gdbarch_free, + a companion to gdbarch_alloc, which allows a gdbarch init function + to free partially-built gdbarch structures. + * gdbarch.c, gdbarch.h: Regenerated. + +2000-03-20 Kevin Buettner + + * configure.host, configure.tgt (ia64-*-linux*): New entry. + + * gdbserver/low-linux.c (u_offsets, ia64_register_u_addr, + initialize_arch): Define for IA-64. + (initialize_arch): Add declaration. + +2000-03-20 Eli Zaretskii + + * breakpoint.c (insert_breakpoints, remove_breakpoint) + (bpstat_stop_status, can_use_hardware_watchpoint): Don't insert, + remove, or check status of hardware watchpoints for entire structs + and arrays unless the user explicitly asked to watch that struct + or array. + (insert_breakpoints): Try to insert watchpoints for all the values + on the value chain, even if some of them fail to insert. + + * values.c (value_primitive_field): Set the offset in struct value + we return when the field is a packed bitfield. + +2000-03-20 Michael Snyder + + * remote.c (remote_threads_extra_info): new function. + Implement the extra thread info query for "info threads". + (remote_threads_info): clean up a bit. + (use_threadinfo_query, use_threadextra_query): new variables. + Control whether GDB will use the new or old protocol for + thread info queries. + (remote_open_1): initialize new variables. + (remote_async_open_1): ditto. + (remote_cisco_open): ditto. + +2000-03-20 Kevin Buettner + + * ia64-linux-nat.c, ia64-tdep.c, config/ia64/linux.mh, + config/ia64/linux.mt, config/ia64/nm-linux.h, config/ia64/tm-ia64.h, + config/ia64/tm-linux.h, config/ia64/xm-linux.h: New files. + +2000-03-20 Kevin Buettner + + * utils.c (floatformat_from_doublest): Don't assume that a long + will be exactly 32 bits in length. Also... make sure space + that we're writing the float to is completely initialized to + zeroes, even when the number of bits in the float is not + evenly divisible by FLOATFORMAT_CHAR_BIT. + +2000-03-20 Jim Blandy + + * i386-linux-nat.c: No need to #include "frame.h" any more. + (LINUX_SIGTRAMP_INSN0, LINUX_SIGTRAMP_OFFSET0, + LINUX_SIGTRAMP_INSN1, LINUX_SIGTRAMP_OFFSET1, + LINUX_SIGTRAMP_INSN2, LINUX_SIGTRAMP_OFFSET2, linux_sigtramp_code, + LINUX_SIGTRAMP_LEN, i386_linux_sigtramp_start, + LINUX_RT_SIGTRAMP_INSN0, LINUX_RT_SIGTRAMP_OFFSET0, + LINUX_RT_SIGTRAMP_INSN1, LINUX_RT_SIGTRAMP_OFFSET1, + linux_rt_sigtramp_code, LINUX_RT_SIGTRAMP_LEN, + i386_linux_rt_sigtramp_start, i386_linux_in_sigtramp, + i386_linux_sigcontext_addr, LINUX_SIGCONTEXT_PC_OFFSET, + i386_linux_sigtramp_saved_pc, LINUX_SIGCONTEXT_SP_OFFSET, + i386_linux_sigtramp_saved_sp): Deleted. Folks rightly pointed + out that these are target-dependent, and useful in non-native + configurations. Moved to... + * i386-linux-tdep.c: ... Here, a new file. + * Makefile.in (ALLDEPFILES): Add i386-linux-tdep.c. + (i386-linux-tdep.o): New rule. + (i386-linux-nat.o): We no longer depend on frame.h. + * config/i386/linux.mt (TDEPFILES): Add i386-linux-tdep.o. + +2000-03-04 Eli Zaretskii + + * event-loop.c (top-level) [NO_FD_SET]: Deprecate this branch. + Print an error at compile time if we are to use select, but FD_SET + is not available. + (SELECT_MASK, NBBY, FD_SETSIZE, NFDBITS, MASK_SIZE): Define only + if HAVE_POLL is not defined and NO_FD_SET *is* defined. + (create_file_handler) [!HAVE_POLL]: Use FD_SET and FD_CLR. + (delete_file_handler) [!HAVE_POLL]: Use FD_CLR and FD_ISSET. + (gdb_wait_for_event) [!HAVE_POLL]: Copy fd_set sets directly + instead of using memcpy and memset. Use FD_ISSET. + + * config/i386/xm-go32.h (fd_mask): Remove typedef. + +Mon Mar 20 19:58:45 2000 Andrew Cagney + + * command.c (_initialize_command): Document requirements for ``!'' + command. + +Mon Mar 20 18:12:46 2000 Andrew Cagney + + From Fri 10 Mar 2000 Robert + : + * sh-tdep.c (sh_processor_type_table): Add entry for sh2. + +Mon Mar 20 17:33:32 2000 Andrew Cagney + + From Thu Mar 16 16:49:27 EST 2000 John David Anglin + : + * configure.in (CONFIG_INITS): Don't include hpux-thread.c. Stops + _initialize_hpux_thread being called twice. + * configure: Regenerated. + +2000-03-19 Eli Zaretskii + + * event-top.c (_initialize_event_loop): If instream is not + connected to a terminal device, turn editing off. + +2000-03-19 Eli Zaretskii + + Support for building GDB with DJGPP, and running the test suite on + it: + * config/djgpp/djconfig.sh: New file. + * config/djgpp/config.sed: New file. + * config/djgpp/README: New file. + * config/djgpp/fnchange.lst: New file. + * config/djgpp/djcheck.sh: New file. + +2000-03-19 Eli Zaretskii + + * ser-go32.c (ports): Make the initializers complete, to pacify + GCC 2.9X. + +2000-03-17 Jim Blandy + + * i386v-nat.c (i386_insert_nonaligned_watchpoint): Use a + two-dimensional array, instead of faking it with explicit index + arithmetic. + + * linux-thread.c (linuxthreads_attach, linuxthreads_detach, + linuxthreads_create_inferior): Fix typo in variable name: it's + linuxthreads_exit_status, not linux_exit_status. + + * gdb_wait.h (WSETSTOP): Pass the appropriate number of arguments + to W_STOPCODE. + + * solib.c (solib_add): Delete debugging code. + +2000-03-17 Mark Kettenis + + * gdb_wait.h: add definitions of WSETSTOP and WSETEXIT for Linux. + * linux-thread.c: Use WSETSTOP instead of W_STOPCODE. + +Fri Mar 17 11:06:59 2000 Philippe De Muyter + + * language.c (set_lang_str): Do not call `free' for a null pointer. + (set_type_str, set_range_str): Ditto. + +2000-03-16 Jim Blandy + + * i386-linux-nat.c (i386_linux_saved_pc_after_call): Lost in the + merge; reinstated. + + * solib.c (current_sos): Be more careful about freeing the new + so_list node if an error occurs. + + * i386-tdep.c (LINUX_SIGTRAMP_INSN0, LINUX_SIGTRAMP_OFFSET0, + LINUX_SIGTRAMP_INSN1, LINUX_SIGTRAMP_OFFSET1, + LINUX_SIGTRAMP_INSN2, LINUX_SIGTRAMP_OFFSET2, linux_sigtramp_code, + LINUX_SIGTRAMP_LEN, i386_linux_sigtramp_start, + LINUX_RT_SIGTRAMP_INSN0, LINUX_RT_SIGTRAMP_OFFSET0, + LINUX_RT_SIGTRAMP_INSN1, LINUX_RT_SIGTRAMP_OFFSET1, + linux_rt_sigtramp_code, LINUX_RT_SIGTRAMP_LEN, + i386_linux_rt_sigtramp_start, i386_linux_in_sigtramp, + i386_linux_sigcontext_addr, LINUX_SIGCONTEXT_PC_OFFSET, + i386_linux_sigtramp_saved_pc, LINUX_SIGCONTEXT_SP_OFFSET, + i386_linux_sigtramp_saved_sp): Deleted. These all implement + Linux-specific signal trampoline detection, and should be moved + to... + * i386-linux-nat.c: ... here. + * config/i386/tm-linux.h (I386_LINUX_SIGTRAMP): No need to define + this any more, since we're not enabling OS-specific code in a + OS-independent file. + +2000-03-16 Eli Zaretskii + + * Makefile.in (go32-nat.o): Add prerequisites. + (ALLDEPFILES): Add go32-nat.c. + +2000-03-15 Michael Snyder + + From "Peter.Schauer" + * symfile.c (reread_symbols): Clear msymbol hash table. + +2000-03-15 Jim Blandy + + Deal with the inferior unloading shared objects. + * solib.c (current_sos): New function, replacing find_solib. + (find_solib): Deleted. + (free_so): New function. + (clear_solib): Call free_so, instead of writing it out. + (solib_add): Rewritten: compare the inferior's current list of + shared objects with GDB's list, and do the required loads and + unloads. + (info_sharedlibrary_command, solib_address): Don't use find_solib + to walk the list of shared libraries: call solib_add, and then + walk the list at so_list_head normally. + * objfiles.c (free_objfile): Don't call CLEAR_SOLIB, and don't + detach the core target. These tasks are taken care of elsewhere. + * target.c (remove_target_sections): New function. + * target.h (remove_target_sections): New declaration. + + * solib.c (symbol_add_stub): Check whether we've already created + an objfile for this shared object first, before doing all that + work to compute section addresses, etc. + + * objfiles.c (unlink_objfile): Report an internal error if objfile + doesn't occur in the object_files list. + + * solib.c (special_symbol_handling): Delete argument; it's not + used. + + Changes from Peter Schauer : + + * solib.c (SOLIB_EXTRACT_ADDRESS): New macro to extract addresses + from solib structures. Use it throughout solib.c, get rid of all + CORE_ADDR casts. + (struct so_list): Change type of lmaddr to CORE_ADDR. + (first_link_map_member): Change return value type to CORE_ADDR, + update callers. + (solib_add_common_symbols): Change parameter type to CORE_ADDR, + update callers. + (open_symbol_file_object, find_solib): Change type of lm variable + to CORE_ADDR. + +2000-03-15 Eli Zaretskii + + * ser-go32.c (dos_noop, dos_raw, dos_noflush_set_tty_state) + (dos_print_tty_state, dos_info, _initialize_ser_dos): Convert + to ISO C. Use ATTRIBUTE_UNUSED to avoid compiler warnings. + (dos_info): Avoid compiler warning when printing a ptrdiff_t. + + * ser-go32.c (dos_get_tty_state): Fail if the (fake) handle was + not opened by dos_open, but let the 3 standard handles go through + unharmed. + +2000-03-14 Elena Zannoni + + * eval.c (evaluate_subexp_with_coercion): Add call to + check_typedef, to handle typedeffed vars correctly. + +Mon Mar 13 21:21:41 2000 Andrew Cagney + + * defs.h (STREQ, STRCMP, STREQN): Document that these macros are + somewhat redundant. + (QUIT): Note that this can probably be replaced by a function. + +2000-03-13 James Ingham + + Add support for a variable object that tries to evaluate itself in + the currently selected frame, rather than in a fixed frame. + + * wrapper.c,h (gdb_parse_exp_1): Added a wrapper for + gdb_parse_exp_1. + * varobj.h: Added USE_CURRENT_FRAME to varobj_type & changed def'n + of varobj_create. + * varobj.c (varobj_list): Return type indicates whether the + variable's type has changed (for current frame variables). + (varobj_update): Handle the case where the variable's type has + changed. + (delete_variable_1): Allow for deletion of variables that have not + been installed yet. + (new_root_variable): Initialize use_selected_frame variable. + (value_of_root): This is where most of the work to handle "current + frame" variables was added. Most of the complexity involves + handling the case where the type of the variable has changed. + (varobj_create): Add a "type" argument, to tell if the + variable is one of these "current frame" variables. Also protect + call to parse_exp_1 from long jumping. + +2000-03-13 Eli Zaretskii + + * go32-nat.c (struct env387): Remove declaration. + (print_387_status, i386_go32_float_info): Remove redundant + functions. + (regno_mapping, sig_map, excepn_map): Add braces around inner + initializers. + (many functions): Use ATTRIBUTE_UNUSED to shut up the compiler; + fix code which mixed signed with unsigned. + (go32_resume): Use TARGET_SIGNAL_LAST instead of -1. + (go32_wait): Initialize INT3_addr. + (go32_fetch_registers): Extend all FP registers that are shorter + than 4 bytes to 32 bits. Support 32 standard FP registers defined + on config/i386/tm-i386.h. + (store_register): Support 32 FP registers. + (go32_create_inferior): Don't crash if handed a NULL pointer + instead of exec file name. + (ignore): Remove unused function. + (go32_insert_hw_breakpoint): Remove unused variables. + (init_go32_ops): Set value of processing_gcc_compilation to 2. + +Mon Mar 13 18:54:42 2000 Andrew Cagney + + From 2000-03-10 Daniel Berlin Fix C++ + overloading, add support for seeing through references: + * valops.c (find_overload_match): Handle STABS overloading for + C++. + (find_overload_match): Look in right place for function arguments + in the debug info. + (find_overload_match): Rather than giving up when we have >1 + perfect match, just choose one, especially since the + recommendation GDB gives ("disambiguate it by specifying function + signature"), is basically impossible. + (check_field_in): STREQ->strcmp_iw + (search_struct_field): STREQ->strcmp_iw + (find_method_list): STREQ->strcmp_iw + * gdbtypes.c (rank_one_type): Add ability to see through + references. + (rank_one_type): strcmp->strcmp_iw, because the whitespace could + be different. + (rank_function): Rank function properly (was doing it wrong + before, comparing the wrong parts of the arrays) + (rank_one_type): Change #if 0 to #ifdef DEBUG_OLOAD. + * gdbtypes.h: Add REFERENCE_CONVERSION_BADNESS for "badness" + associated with converting a non-reference to a reference. + + * gdbtypes.c (rank_one_type): Add comment on how to eliminate the + #ifdef DEBUG_OLOAD. + +2000-03-11 Mark Kettenis + + * gnu-nat.c: Fix the formatting where indent misinterpreted `&' as + a binary operator. + (gnu_attach): Change error message for missing + argument to be identical to the corresponding message in + `inftarg.c'. This makes the testsuite happy. + +2000-03-11 Mark Kettenis + + * i386gnu-nat.c (gnu_store_registers): Make sure the T bit in the + %eflags isn't modified. This fixes a bug where every call to a + function in the program beyond the first call would fail. + +Fri Mar 10 11:44:55 2000 Andrew Cagney + + * MAINTAINERS: Devolve responsibility for domain maintenance. + +2000-03-06 Elena Zannoni + + * minsyms.c (prim_record_minimal_symbol_and_info): Add comment. + +2000-02-25 Scott Bambrough + + * gdb.base/long_long.exp: Correct test suite failure when printing + a long long value as a double on ARM platforms. + Thu Mar 9 14:21:07 2000 Andrew Cagney * MAINTAINERS (Core): Anthony Green is the Java - including