gdb/
[binutils-gdb.git] / gdb / ChangeLog
index 5098a78743eae8b28825f534b1e0fe1fac7d8a2b..a800d84a390667bd1cb4051aaf3417dd80a01108 100644 (file)
@@ -1,3 +1,113 @@
+2010-08-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * breakpoint.c (update_watchpoint): Add source empty line.  Prefer
+       EXP_STRING_REPARSE to EXP_STRING.
+       (watch_command_1): Set also EXP_STRING_REPARSE.
+       (delete_breakpoint): Free also EXP_STRING_REPARSE.
+       * breakpoint.h (struct breakpoint): New field exp_string_reparse.
+       Update comment for exp_string.
+
+2010-08-16  Tom Tromey  <tromey@redhat.com>
+
+       * value.c (release_value): Clear 'next' pointer.
+       * breakpoint.c (watch_command_1): Add 'just_location' argument.
+       (watch_command_wrapper): Update.
+       (watch_maybe_just_location): New function.
+       (watch_command): Update.
+       (rwatch_command_wrapper): Update.
+       (rwatch_command): Update.
+       (awatch_command_wrapper): Update.
+       (awatch_command): Update.
+       (check_for_argument): New function.
+       (_initialize_breakpoint): Update help text.
+
+2010-08-14  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * arm-tdep.c (arm_push_dummy_call): Handle pointers to
+       typedef'ed function types correctly.
+
+2010-08-13  Tom Tromey  <tromey@redhat.com>
+
+       * python/python-internal.h (gdbpy_get_hook_function): Don't
+       declare.
+
+2010-08-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * cli-logging.c (logging_overwrite, logging_redirect): Make them
+       static.
+
+2010-08-13  Ken Werner  <ken.werner@de.ibm.com>
+
+       * python/python.c (gdbpy_solib_name): Remove the const qualifier of
+       the format strings to be compatible with Python 2.4.
+
+2010-08-13  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Easier and more stubborn MI memory read commands.
+
+       * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes
+       and data-write-memory-bytes.
+       * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes)
+       (mi_cmd_data_write_memory_bytes): New.
+       * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read.
+       (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes):
+       New.
+       (mi_cmd_list_features): Add "data-read-memory-bytes" feature.
+       * target.c (target_read_until_error): Remove.
+       (read_whatever_is_readable, free_memory_read_result_vector)
+       (read_memory_robust): New.
+       * target.h (target_read_until_error): Remove.
+       (struct memory_read_result, free_memory_read_result_vector)
+       (read_memory_robust): New.
+
+2010-08-13  Hui Zhu  <teawater@gmail.com>
+
+       * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup.
+       (read_comp_unit): Initialize back_to.
+
+2010-08-12  Daniel Jacobowitz  <dan@codesourcery.com>
+           Pedro Alves  <pedro@codesourcery.com>
+
+       * dwarf2read.c: Include "c-lang.h" and "valprint.h".
+       (struct dwarf2_per_objfile) <reading_partial_symbols>: New field.
+       (struct partial_die_info) <has_template_arguments>: New field.
+       <num_attrs>: Change type to unsigned char.
+       <building_fullname>: New field.
+       (dwarf2_build_psymtabs_hard): Set reading_partial_symbols.  Only
+       allocate a CU if we don't have one already.  Add a cleanup for the
+       CU.
+       (partial_die_full_name): Handle template arguments not in
+       DW_AT_name.
+       (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols.
+       (load_full_comp_unit): Only allocate a CU if we don't have one
+       already.
+       (do_ui_file_peek_last): New.
+       (dwarf2_compute_name): Handle template parameters not in
+       DW_AT_name.
+       (read_comp_unit): Read and free abbrevs if not read yet.
+       (load_partial_dies): Handle template arguments not in DW_AT_name.
+       (find_partial_die): If we have a CU, but no a partial dies yet,
+       also read in the CU.
+       (dwarf2_const_value_attr): New, abstracted out from
+       dwarf2_const_value.
+       (dwarf2_const_value, dwarf2_const_value_data): Adjust to use
+       dwarf2_const_value_attr.
+       (determine_prefix): Detect and break loops created by RCVT's debug
+       info.
+       (maybe_queue_comp_unit): Bail out early if reading partial
+       symbols.
+       (follow_die_offset): Load full CU if we have no dies.
+       * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public.
+       * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare.
+
+2010-08-11  Tom Tromey  <tromey@redhat.com>
+            Phil Muldoon  <pmuldoon@redhat.com>
+
+       * python/python.c (gdbpy_run_events): New function.
+       (gdbpy_post_event): Likewise.
+       (gdbpy_initialize_events): Likewise.
+       (_initialize_python): Call gdbpy_initialize_events.
+
 2010-08-11  Ken Werner  <ken.werner@de.ibm.com>
 
        * gdb/valarith.c (vector_binop): New function.