* acinclude.m4 (AM_ICONV): Prefer in-tree libiconv if present over
[binutils-gdb.git] / gdb / ChangeLog
index df72f17f9099b11cd85b4cb74312ab23ad384efc..8271e5a511285cdf9678db05f06c42e9f279024b 100644 (file)
@@ -1,3 +1,171 @@
+2009-05-06  Joel Brobecker   <brobecker@adacore.com>
+
+       * acinclude.m4 (AM_ICONV): Prefer in-tree libiconv if present over
+       system iconv.
+       * configure: Regenerate.
+
+2009-05-06  Joel Brobecker   <brobecker@adacore.com>
+
+       * utils.c: Add include of gdb_usleep.h.
+       (defaulted_query): Detect false EOF conditions that happen
+       on terminals opened with the O_NONBLOCK flag when there is
+       nothing to read.
+
+2009-05-06  Pedro Alves  <pedro@codesourcery.com>
+
+       * inferior.c (add_inferior): Move observer_notify_new_inferior
+       call to ...
+       (add_inferior_silent): ... here.
+
+2009-05-06  Pierre Muller  <muller.u-strasbg.fr>
+           Pedro Alves  <pedro@codesourcery.com>
+
+       * procfs.c (procfs_insert_watchpoint, procfs_remove_watchpoint)
+       (procfs_region_ok_for_hw_watchpoint, procfs_use_watchpoints): New
+       functions.
+       (procfs_stopped_by_watchpoint): Made static, ptid argument
+       removed.
+       (_initialize_procfs): Register new watchpoint related target
+       functions.
+       * config/i386/nm-i386sol2.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT)
+       (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT, STOPPED_BY_WATCHPOINT)
+       (HAVE_CONTINUABLE_WATCHPOINT): Delete.
+       (target_insert_watchpoint, target_remove_watchpoint): Delete.
+       (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
+       declarations.
+       * config/mips/nm-irix5.h (STOPPED_BY_WATCHPOINT)
+       (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
+       (target_insert_watchpoint, target_remove_watchpoint): Delete.
+       (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
+       declarations.
+       * config/sparc/nm-sol2.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
+       (HAVE_CONTINUABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT): Delete.
+       (target_insert_watchpoint, target_remove_watchpoint): Delete.
+       (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Delete
+       declarations.
+
+2009-05-06  Hui Zhu  <teawater@gmail.com>
+
+       * i386-tdep.c (i386_process_record): Change bzero to memset.
+
+2009-05-06  Hui Zhu  <teawater@gmail.com>
+
+       * NEWS: Add item for process record and replay.
+
+2009-05-05  Maxim Grigoriev  <maxim2405@gmail.com>
+
+       * xtensa-tdep.c (xtensa_frame_cache): Use pc instead of cache->pc.
+
+2009-05-05  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * inferior.h (read_pc, write_pc): Remove.
+       * regcache.c (read_pc, write_pc): Remove.
+
+       * infrun.c (displaced_step_fixup): Use regcache_read_pc instead
+       of read_pc.
+       (handle_inferior_event): Use regcache_read_pc instead of read_pc
+       when determining value of stop_pc.  Replace subsequent uses of
+       read_pc by inspecting already-retrieved stop_pc value.
+       (keep_going): Use regcache_read_pc instead of read_pc.
+
+       * breakpoint.c (watchpoint_check): Use current frame architecture
+       and PC instead of current_gdbarch and read_pc ().
+       * tracepoint.c (set_traceframe_context): Replace PC argument
+       with FRAME argument.
+       (trace_start_command, finish_tfind_command): Update calls.
+       (finish_tfind_command): Compare frame IDs to identify transitions
+       between frames.
+       (trace_find_pc_command): Use regcache_read_pc instead of read_pc.
+       * rs6000-nat.c (exec_one_dummy_insn): Pass in regcache instead
+       of gdbarch.  Use regcache_read_pc and regcache_write_pc instead
+       of read_pc and write_pc.
+       (store_register): Make regcache argument non-const.  Update call
+       to exec_one_dummy_insn.
+
+       * thread.c (switch_to_thread): Use regcache_read_pc instead of read_pc.
+       * infcmd.c (post_create_inferior): Likewise.
+       * solib-darwin.c (darwin_solib_create_inferior_hook): Likewise.
+       * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
+       * solib-sunos.c (sunos_solib_create_inferior_hook): Likewise.
+       * solib-svr4.c (enable_break, svr4_relocate_main_executable): Likewise.
+       * linux-fork.c (fork_load_infrun_state): Likewise.
+       * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Likewise.
+       * record.c (record_wait): Likewise.
+       * procfs.c (procfs_wait): Likewise.
+       * remote-mips.c (common_open, mips_wait): Likewise.
+       * remote-m32r-sdi.c (m32r_resume): Likewise.
+
+       * symfile.c (generic_load): Use regcache_write_pc instead of write_pc.
+       * monitor.c (monitor_create_inferior, monitor_load): Likewise.
+       * m32r-rom.c (m32r_load, m32r_upload_command): Likewise.
+       * remote-m32r-sdi.c (m32r_create_inferior, m32r_load): Likewise.
+       * remote-mips.c (mips_create_inferior, mips_load): Likewise.
+
+       * solib-darwin.c: Include "regcache.h".
+       * solib-pa64.c: Include "regcache.h".
+       * solib-svr4.c: Include "regcache.h.".
+
+       * symfile.c: Do not mention read_pc or write_pc in comments.
+       * dink32-rom.c: Likewise.
+       * m32r-rom.c: Likewise.
+       * mips-tdep.c: Likewise.
+
+2009-05-05  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * fork-child.c (startup_inferior): Move setting stop_pc ...
+       * infcmd.c (post_create_inferior): ... to here.
+
+2009-05-04  Michael Snyder  <msnyder@vmware.com>
+
+       * NEWS: Add item for reverse debugging commands.
+
+2009-05-04  Pedro Alves  <pedro@codesourcery.com>
+
+       * go32-nat.c (go32_stop): Delete.
+       (go32_kill_inferior): Rewrite to only call go32_mourn_inferior.
+       (go32_create_inferior): Don't call go32_stop or
+       go32_kill_inferior.
+       (go32_mourn_inferior): Inline go32_stop and go32_kill_inferior
+       here.
+       (init_go32_ops): Don't register go32_stop.
+
+2009-05-02  Eli Zaretskii  <eliz@gnu.org>
+
+       * dbxread.c (read_dbx_symtab): Avoid compiler warnings for
+       sym_name.
+
+       * infcall.c (find_function_addr): Avoid compiler warnings for
+       funaddr.
+
+2009-05-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * dictionary.c (dict_hashed_vector, dict_hashed_expandable_vector)
+       (dict_linear_vector, dict_linear_expandable_vector): Fix a comment typo.
+
+2009-05-01  Doug Evans  <dje@google.com>
+
+       * linux-thread-db.c (thread_db_pid_to_str): Delete unused assignment
+       to thread_info.
+
+2009-05-01  Eli Zaretskii  <eliz@gnu.org>
+
+       * record.c (_initialize_record): Reformat and clarify doc strings
+       for stop-at-limit and insn-number-max.
+
+       * go32-nat.c: Add comments about dirty secrets of DJGPP debugging.
+
+2009-05-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       Make specifiable the make_function_type type memory ownership.
+       * gdbtypes.c (make_function_type): New parameter `objfile', use it
+       explicitely instead of TYPE-initialized removed local variable
+       `objfile'.  Describe `objfile' it in the function comment.
+       (lookup_function_type): Update make_function_type callers.
+       * gdbtypes.h (make_function_type): Update the prototype.
+       * jv-lang.c (java_link_class_type): Update make_function_type callers.
+       * dwarf2read.c (read_subroutine_type): Likewise.
+       * stabsread.c (read_type): Likewise.
+
 2009-05-01  Eli Zaretskii  <eliz@gnu.org>
 
        * go32-nat.c (go32_pid_to_str): Call normal_pid_to_str instead of